From c8542f70bbab0f311bdac901d09df64685a411f2 Mon Sep 17 00:00:00 2001 From: LucasLvy Date: Mon, 1 Jul 2024 11:12:29 +0200 Subject: [PATCH 1/3] feat(grammar): add associated_impl --- grammar.js | 605 +- src/grammar.json | 33 + src/node-types.json | 30 + src/parser.c | 60014 +++++++++++++++++++++--------------------- 4 files changed, 30540 insertions(+), 30142 deletions(-) diff --git a/grammar.js b/grammar.js index 25f6eb7..906a2b1 100644 --- a/grammar.js +++ b/grammar.js @@ -14,14 +14,66 @@ const PREC = { or: 2, assign: 0, }; -const TOKEN_TREE_NON_SPECIAL_PUNCTUATION = ['+', '-', '*', '/', '%', '^', '!', '~', '&', '|', '&&', '||', '<<', '>>', '+=', '-=', '*=', '/=', '%=', '^=', '&=', '|=', '=', '==', '!=', '>', '<', '>=', '<=', '@', '..', '_', '.', ',', ';', ':', '::', '->', '=>', '#', '?', +const TOKEN_TREE_NON_SPECIAL_PUNCTUATION = [ + "+", + "-", + "*", + "/", + "%", + "^", + "!", + "~", + "&", + "|", + "&&", + "||", + "<<", + ">>", + "+=", + "-=", + "*=", + "/=", + "%=", + "^=", + "&=", + "|=", + "=", + "==", + "!=", + ">", + "<", + ">=", + "<=", + "@", + "..", + "_", + ".", + ",", + ";", + ":", + "::", + "->", + "=>", + "#", + "?", ]; -const integerTypes = ['u8', 'i8', 'u16', 'i16', 'u32', 'i32', 'u64', 'i64', 'u128', 'i128', 'usize', +const integerTypes = [ + "u8", + "i8", + "u16", + "i16", + "u32", + "i32", + "u64", + "i64", + "u128", + "i128", + "usize", ]; -const primitiveTypes = integerTypes.concat(['bool', 'ByteArray', 'felt252']); +const primitiveTypes = integerTypes.concat(["bool", "ByteArray", "felt252"]); module.exports = grammar({ - name: 'cairo', + name: "cairo", extras: ($) => [/\s/, $.line_comment], conflicts: ($) => [ @@ -72,6 +124,7 @@ module.exports = grammar({ $.let_declaration, $.use_declaration, $.associated_type, + $.associated_impl, ), // Declaration section @@ -82,19 +135,19 @@ module.exports = grammar({ // fn b(b: bool) -> bool; // } // The declaration list would be `{ type B; fn a(a: u32) -> u32; fn b(b: bool) -> bool; }`, - declaration_list: ($) => seq('{', repeat($._declaration_statement), '}'), + declaration_list: ($) => seq("{", repeat($._declaration_statement), "}"), // `impl Foo of FooTrait<...> { } // `impl Bar of BarTrait;` impl_item: ($) => seq( optional($.visibility_modifier), - 'impl', + "impl", $.identifier, - field('type_parameters', optional($.type_parameters)), - 'of', + field("type_parameters", optional($.type_parameters)), + "of", $._type, - choice(field('body', $.declaration_list), ';'), + choice(field("body", $.declaration_list), ";"), ), // trait A { @@ -105,60 +158,67 @@ module.exports = grammar({ trait_item: ($) => seq( optional($.visibility_modifier), - 'trait', - field('name', $._type_identifier), - field('type_parameters', optional($.type_parameters)), - choice(field('body', $.declaration_list), ';'), + "trait", + field("name", $._type_identifier), + field("type_parameters", optional($.type_parameters)), + choice(field("body", $.declaration_list), ";"), ), + // trait A { // type B; // } associated_type: ($) => seq( - 'type', - field('name', $._type_identifier), - field('type_parameters', optional($.type_parameters)), - ';', + "type", + field("name", $._type_identifier), + field("type_parameters", optional($.type_parameters)), + ";", ), + // trait A { + // impl B: A; + // } + associated_impl: ($) => + seq("impl", field("name", $.identifier), ":", $._type, ";"), + // const FOO: felt252 = 1; const_item: ($) => seq( optional($.visibility_modifier), - 'const', - field('name', $.identifier), - ':', - field('type', $._type), - optional(seq('=', field('value', $.expression))), - ';', + "const", + field("name", $.identifier), + ":", + field("type", $._type), + optional(seq("=", field("value", $.expression))), + ";", ), // array![] macro_invocation: ($) => seq( field( - 'macro', + "macro", choice($.scoped_identifier, $.identifier, $._reserved_identifier), ), - '!', + "!", alias($.delim_token_tree, $.token_tree), ), - empty_statement: (_) => ';', + empty_statement: (_) => ";", // #[derive(Debug)] - attribute_item: ($) => seq('#', '[', $.attribute, ']'), + attribute_item: ($) => seq("#", "[", $.attribute, "]"), // #![deny(missing_docs)] - inner_attribute_item: ($) => seq('#', '!', '[', $.attribute, ']'), + inner_attribute_item: ($) => seq("#", "!", "[", $.attribute, "]"), // for example in #[derive(Debug)], the attribute would be `derive(Debug)` attribute: ($) => seq( $._path, optional( choice( - seq('=', field('value', $.expression)), - field('arguments', alias($.delim_token_tree, $.token_tree)), + seq("=", field("value", $.expression)), + field("arguments", alias($.delim_token_tree, $.token_tree)), ), ), ), @@ -167,63 +227,63 @@ module.exports = grammar({ mod_item: ($) => seq( optional($.visibility_modifier), - 'mod', - field('name', $.identifier), - choice(';', field('body', $.declaration_list)), + "mod", + field("name", $.identifier), + choice(";", field("body", $.declaration_list)), ), // struct Foo { bar: u32 } struct_item: ($) => seq( optional($.visibility_modifier), - 'struct', - field('name', $._type_identifier), - field('type_parameters', optional($.type_parameters)), - choice(seq(field('body', $.field_declaration_list)), ';'), + "struct", + field("name", $._type_identifier), + field("type_parameters", optional($.type_parameters)), + choice(seq(field("body", $.field_declaration_list)), ";"), ), // enum Direction { Left, Right: u32 }; enum_item: ($) => seq( optional($.visibility_modifier), - 'enum', - field('name', $._type_identifier), - field('type_parameters', optional($.type_parameters)), - field('body', $.enum_variant_list), + "enum", + field("name", $._type_identifier), + field("type_parameters", optional($.type_parameters)), + field("body", $.enum_variant_list), ), // for example in enum Direction { Left, Right: u32 } it would be `{ Left, Right: u32 }` enum_variant_list: ($) => seq( - '{', - sepBy(',', seq(repeat($.attribute_item), $.enum_variant)), - optional(','), - '}', + "{", + sepBy(",", seq(repeat($.attribute_item), $.enum_variant)), + optional(","), + "}", ), // for example in enum Direction { Left, Right: u32 } it would be `Left` and `Right: u32` enum_variant: ($) => choice( - seq(optional($.visibility_modifier), field('variant', $.identifier)), - field('variant', $.field_declaration), + seq(optional($.visibility_modifier), field("variant", $.identifier)), + field("variant", $.field_declaration), ), // struct and enum helper // for example in struct Foo { bar: u32 } it would be `{ bar: u32 }` field_declaration_list: ($) => seq( - '{', - sepBy(',', seq(repeat($.attribute_item), $.field_declaration)), - optional(','), - '}', + "{", + sepBy(",", seq(repeat($.attribute_item), $.field_declaration)), + optional(","), + "}", ), // struct and enum helper // for example in struct Foo { bar: u32 } it would be bar: u32 field_declaration: ($) => seq( optional($.visibility_modifier), - field('name', $._field_identifier), - ':', - field('type', $._type), + field("name", $._field_identifier), + ":", + field("type", $._type), ), // impl HashBool, +Drop> = into_felt252_based::HashImpl; @@ -233,12 +293,12 @@ module.exports = grammar({ $.extern_type, seq( optional($.visibility_modifier), - choice('type', 'impl'), - field('name', $._type_identifier), - field('type_parameters', optional($.type_parameters)), - '=', - choice(field('type', $._type)), - ';', + choice("type", "impl"), + field("name", $._type_identifier), + field("type_parameters", optional($.type_parameters)), + "=", + choice(field("type", $._type)), + ";", ), ), @@ -247,42 +307,42 @@ module.exports = grammar({ seq( optional($.visibility_modifier), $.extern, - 'type', - field('name', $._type_identifier), - field('type_parameters', optional($.type_parameters)), - ';', + "type", + field("name", $._type_identifier), + field("type_parameters", optional($.type_parameters)), + ";", ), // pub extern fn hades_permutation( // s0: felt252, s1: felt252, s2: felt252 // ) -> (felt252, felt252, felt252) implicits(Poseidon) nopanic; external_function_item: ($) => - seq(optional($.visibility_modifier), $.extern, $.function, ';'), + seq(optional($.visibility_modifier), $.extern, $.function, ";"), // fn default() -> HashState { // PoseidonTrait::new() // } function_item: ($) => - seq(optional($.visibility_modifier), $.function, field('body', $.block)), + seq(optional($.visibility_modifier), $.function, field("body", $.block)), // For example here in: // trait A { // fn a(a: u32) -> u32; // } it would be `fn a(a: u32) -> u32;` function_signature_item: ($) => - seq(optional($.visibility_modifier), $.function, ';'), + seq(optional($.visibility_modifier), $.function, ";"), // Helper for function definition function: ($) => seq( - 'fn', - field('name', $.identifier), - field('type_parameters', optional($.type_parameters)), - field('parameters', $.parameters), - optional(seq('->', field('return_type', $._type))), + "fn", + field("name", $.identifier), + field("type_parameters", optional($.type_parameters)), + field("parameters", $.parameters), + optional(seq("->", field("return_type", $._type))), field( - 'implicit_arguments', - optional(seq('implicits', sepBy(',', $._type))), + "implicit_arguments", + optional(seq("implicits", sepBy(",", $._type))), ), optional($.nopanic), ), @@ -290,21 +350,21 @@ module.exports = grammar({ // let a = 1; let_declaration: ($) => seq( - 'let', + "let", optional($.mutable_specifier), - field('pattern', $._pattern), - optional(seq(':', field('type', $._type))), - optional(seq('=', field('value', $.expression))), - ';', + field("pattern", $._pattern), + optional(seq(":", field("type", $._type))), + optional(seq("=", field("value", $.expression))), + ";", ), // pub use abc::def; use_declaration: ($) => seq( optional($.visibility_modifier), - 'use', - field('argument', $._use_clause), - ';', + "use", + field("argument", $._use_clause), + ";", ), // helper for use declaration @@ -319,38 +379,38 @@ module.exports = grammar({ // The following will consider the base example: use abc::def::{a as a, b, c::*}; // abc::def::{a as a, b, c::*} scoped_use_list: ($) => - seq(field('path', optional($._path)), '::', field('list', $.use_list)), + seq(field("path", optional($._path)), "::", field("list", $.use_list)), // {a as a, b, c::*} use_list: ($) => - seq('{', sepBy(',', choice($._use_clause)), optional(','), '}'), + seq("{", sepBy(",", choice($._use_clause)), optional(","), "}"), // a as a use_as_clause: ($) => - seq(field('path', $._path), 'as', field('alias', $.identifier)), + seq(field("path", $._path), "as", field("alias", $.identifier)), // c::* - use_wildcard: ($) => seq(optional(seq($._path, '::')), '*'), + use_wildcard: ($) => seq(optional(seq($._path, "::")), "*"), // for example in fn a(x: u32, y: u32) {} it would be (x: u32, y: u32) parameters: ($) => seq( - '(', + "(", sepBy( - ',', - seq(optional($.attribute_item), choice($.parameter, '_', $._type)), + ",", + seq(optional($.attribute_item), choice($.parameter, "_", $._type)), ), - optional(','), - ')', + optional(","), + ")", ), // x: u32 parameter: ($) => seq( optional(choice($.ref_specifier, $.mutable_specifier)), - field('pattern', $._pattern), - ':', - field('type', $._type), + field("pattern", $._pattern), + ":", + field("type", $._type), ), // Types section @@ -383,9 +443,9 @@ module.exports = grammar({ prec( 1, seq( - '<', + "<", sepBy1( - ',', + ",", seq( repeat($.attribute_item), choice( @@ -398,25 +458,25 @@ module.exports = grammar({ ), ), ), - optional(','), - '>', + optional(","), + ">", ), ), // for example in pub extern fn const_as_box() -> Box nopanic; // it would be `const SEGMENT_ID: felt252` const_parameter: ($) => - seq('const', field('name', $.identifier), ':', field('type', $._type)), + seq("const", field("name", $.identifier), ":", field("type", $._type)), // for example in impl ArraySerde, impl TDrop: Drop> of Serde> {} it would be // `+Serde` and `impl TDrop: Drop` constrained_type_parameter: ($) => choice( seq( - field('left', seq('impl', $._type_identifier, ':')), - field('bound', $._type), + field("left", seq("impl", $._type_identifier, ":")), + field("bound", $._type), ), seq( - choice('+', '-'), + choice("+", "-"), choice( $.generic_type, $._type_identifier, @@ -430,7 +490,7 @@ module.exports = grammar({ 1, seq( field( - 'type', + "type", choice( $._type_identifier, $._reserved_identifier, @@ -438,7 +498,7 @@ module.exports = grammar({ ), ), // "::", - field('type_arguments', $.type_arguments), + field("type_arguments", $.type_arguments), ), ), @@ -446,31 +506,31 @@ module.exports = grammar({ generic_type_with_turbofish: ($) => seq( field( - 'type', + "type", choice( $._type_identifier, $._reserved_identifier, $.scoped_identifier, ), ), - '::', - field('type_arguments', $.type_arguments), + "::", + field("type_arguments", $.type_arguments), ), // for example in let a: [u8; 32]; it would be `[u8; 32]` array_type: ($) => seq( - '[', - field('element', $._type), - optional(seq(';', field('length', $.expression))), - ']', + "[", + field("element", $._type), + optional(seq(";", field("length", $.expression))), + "]", ), // Helper delim_token_tree: ($) => choice( - seq('(', repeat($._delim_tokens), ')'), - seq('[', repeat($._delim_tokens), ']'), - seq('{', repeat($._delim_tokens), '}'), + seq("(", repeat($._delim_tokens), ")"), + seq("[", repeat($._delim_tokens), "]"), + seq("{", repeat($._delim_tokens), "}"), ), // Helper _delim_tokens: ($) => @@ -486,28 +546,28 @@ module.exports = grammar({ $.super, alias(choice(...primitiveTypes), $.primitive_type), prec.right(repeat1(choice(...TOKEN_TREE_NON_SPECIAL_PUNCTUATION))), - 'break', - 'const', - 'continue', - 'default', - 'enum', - 'fn', - 'if', - 'impl', - 'extern', - 'nopanic', - 'let', - 'loop', - 'match', - 'mod', - 'pub', - 'return', - 'static', - 'struct', - 'trait', - 'type', - 'use', - 'while', + "break", + "const", + "continue", + "default", + "enum", + "fn", + "if", + "impl", + "extern", + "nopanic", + "let", + "loop", + "match", + "mod", + "pub", + "return", + "static", + "struct", + "trait", + "type", + "use", + "while", ), // Section - Patterns @@ -525,33 +585,33 @@ module.exports = grammar({ $.slice_pattern, $.macro_invocation, $.tuple_enum_pattern, - '_', + "_", ), // for example in let (a, b) = c; it would be `(a, b)` - tuple_pattern: ($) => seq('(', sepBy(',', $._pattern), optional(','), ')'), + tuple_pattern: ($) => seq("(", sepBy(",", $._pattern), optional(","), ")"), // for example in let [a, b] = c; it would be `[a, b]` - slice_pattern: ($) => seq('[', sepBy(',', $._pattern), optional(','), ']'), + slice_pattern: ($) => seq("[", sepBy(",", $._pattern), optional(","), "]"), // for example in let Foo {a, b} = c; it would be `Foo {a, b}` struct_pattern: ($) => seq( - field('type', choice($._type_identifier, $.scoped_type_identifier)), - '{', - sepBy(',', $.field_pattern), - optional(','), - '}', + field("type", choice($._type_identifier, $.scoped_type_identifier)), + "{", + sepBy(",", $.field_pattern), + optional(","), + "}", ), // for example in let Foo { a: bar, b: baz } = c; it would be `a: bar` and `b: baz` field_pattern: ($) => seq( optional($.mutable_specifier), choice( - field('name', alias($.identifier, $.shorthand_field_identifier)), + field("name", alias($.identifier, $.shorthand_field_identifier)), seq( - field('name', $._field_identifier), - ':', - field('pattern', $._pattern), + field("name", $._field_identifier), + ":", + field("pattern", $._pattern), ), ), ), @@ -559,10 +619,17 @@ module.exports = grammar({ // for example in let a = Foo { a: 1, b: 2}; it would be `{ a: 1, b: 2}` field_initializer_list: ($) => seq( - '{', - sepBy(',', choice($.shorthand_field_initializer, $.field_initializer, $.base_field_initializer)), - optional(','), - '}', + "{", + sepBy( + ",", + choice( + $.shorthand_field_initializer, + $.field_initializer, + $.base_field_initializer, + ), + ), + optional(","), + "}", ), // for example in let a = Foo { a: 1, b}; it would be `b` shorthand_field_initializer: ($) => @@ -572,12 +639,12 @@ module.exports = grammar({ field_initializer: ($) => seq( repeat($.attribute_item), - field('field', choice($._field_identifier, $.numeric_literal)), - ':', - field('value', $.expression), + field("field", choice($._field_identifier, $.numeric_literal)), + ":", + field("value", $.expression), ), - base_field_initializer: ($) => seq('..', $.expression), + base_field_initializer: ($) => seq("..", $.expression), // for example in let mut a; it would be `mut a` mut_pattern: ($) => prec(-1, seq($.mutable_specifier, $._pattern)), @@ -590,7 +657,7 @@ module.exports = grammar({ or_pattern: ($) => prec.left( -2, - choice(seq($._pattern, '|', $._pattern), seq('|', $._pattern)), + choice(seq($._pattern, "|", $._pattern), seq("|", $._pattern)), ), // Section - Literals @@ -614,14 +681,18 @@ module.exports = grammar({ ), // for example in let a = -1; it would be `-1` - negative_literal: ($) => seq('-', $.numeric_literal), + negative_literal: ($) => seq("-", $.numeric_literal), // for example in let a = 1_u32; it would be `1_u32` numeric_literal: (_) => token( seq( choice(/[0-9_]+/, /0x[0-9a-fA-F_]+/, /0b[01_]+/, /0o[0-7_]+/), - optional(token.immediate(seq('_', choice(...integerTypes, 'u256', 'felt252')))), + optional( + token.immediate( + seq("_", choice(...integerTypes, "u256", "felt252")), + ), + ), ), ), @@ -631,17 +702,17 @@ module.exports = grammar({ // allows every ascii char except `"` unless it's escaped (accept escape sequences also). Max length is 31 shortstring_literal: ($) => - token(seq('\'', /(([^'\\]|\\.){0,31})/, '\'', optional('_felt252'))), + token(seq("'", /(([^'\\]|\\.){0,31})/, "'", optional("_felt252"))), - boolean_literal: (_) => choice('true', 'false'), + boolean_literal: (_) => choice("true", "false"), // Should match any token other than a delimiter. - _non_delim_token: ($) => choice($._non_special_token, '$'), + _non_delim_token: ($) => choice($._non_special_token, "$"), // for example in let a = a::b; it would be `a::b` scoped_identifier: ($) => seq( field( - 'path', + "path", optional( choice( $._path, @@ -649,8 +720,8 @@ module.exports = grammar({ ), ), ), - '::', - field('name', choice($.identifier, $.super)), + "::", + field("name", choice($.identifier, $.super)), ), // Makes this type of expression work // core::pedersen::HashState { state }.update_with(value).state @@ -659,7 +730,7 @@ module.exports = grammar({ -2, seq( field( - 'path', + "path", optional( choice( $._path, @@ -667,15 +738,15 @@ module.exports = grammar({ ), ), ), - '::', - field('name', $._type_identifier), + "::", + field("name", $._type_identifier), ), ), // for example in struct A {a: A::b} it would be `A::b` scoped_type_identifier: ($) => seq( field( - 'path', + "path", optional( choice( $._path, @@ -684,28 +755,28 @@ module.exports = grammar({ ), ), ), - '::', - field('name', $._type_identifier), + "::", + field("name", $._type_identifier), ), // for example in struct A {a: (u32, u32)} it would be `(u32, u32)` - tuple_type: ($) => seq('(', sepBy1(',', $._type), optional(','), ')'), + tuple_type: ($) => seq("(", sepBy1(",", $._type), optional(","), ")"), // for example in struct A {a: ()} it would be `()` - unit_type: (_) => seq('(', ')'), + unit_type: (_) => seq("(", ")"), // for example in struct A {a: B} it would be `` type_arguments: ($) => seq( - token(prec(1, '<')), - sepBy1(',', seq(choice($._type, $._literal, $.block))), - optional(','), - '>', + token(prec(1, "<")), + sepBy1(",", seq(choice($._type, $._literal, $.block))), + optional(","), + ">", ), // Helper expression_statement: ($) => - choice(seq($.expression, ';'), prec(1, $._expression_ending_with_block)), + choice(seq($.expression, ";"), prec(1, $._expression_ending_with_block)), expression: ($) => choice( @@ -741,34 +812,34 @@ module.exports = grammar({ 1, seq( field( - 'function', + "function", choice($.identifier, $.scoped_identifier, $.field_expression), ), - '::', - field('type_arguments', $.type_arguments), + "::", + field("type_arguments", $.type_arguments), ), ), // (1, 2) tuple_expression: ($) => seq( - '(', + "(", repeat($.attribute_item), - seq($.expression, ','), - repeat(seq($.expression, ',')), + seq($.expression, ","), + repeat(seq($.expression, ",")), optional($.expression), - ')', + ")", ), // return () return_expression: ($) => - choice(prec.left(seq('return', $.expression)), prec(-1, 'return')), + choice(prec.left(seq("return", $.expression)), prec(-1, "return")), // A {a, b} struct_expression: ($) => seq( field( - 'name', + "name", choice( $._type_identifier, alias( @@ -778,54 +849,54 @@ module.exports = grammar({ $.generic_type_with_turbofish, ), ), - field('body', $.field_initializer_list), + field("body", $.field_initializer_list), ), // a = b assignment_expression: ($) => prec.left( PREC.assign, - seq(field('left', $.expression), '=', field('right', $.expression)), + seq(field("left", $.expression), "=", field("right", $.expression)), ), // break true - break_expression: ($) => prec.left(seq('break', optional($.expression))), + break_expression: ($) => prec.left(seq("break", optional($.expression))), // continue - continue_expression: ($) => prec.left(seq('continue')), + continue_expression: ($) => prec.left(seq("continue")), // a[i] index_expression: ($) => - prec(PREC.call, seq($.expression, '[', $.expression, ']')), + prec(PREC.call, seq($.expression, "[", $.expression, "]")), // [1, 2, 3] array_expression: ($) => seq( - '[', + "[", repeat($.attribute_item), choice( - seq($.expression, ';', field('length', $.expression)), + seq($.expression, ";", field("length", $.expression)), seq( - sepBy(',', seq(repeat($.attribute_item), $.expression)), - optional(','), + sepBy(",", seq(repeat($.attribute_item), $.expression)), + optional(","), ), ), - ']', + "]", ), // (a()) - parenthesized_expression: ($) => seq('(', $.expression, ')'), + parenthesized_expression: ($) => seq("(", $.expression, ")"), // () - unit_expression: (_) => seq('(', ')'), + unit_expression: (_) => seq("(", ")"), // a += 1 compound_assignment_expr: ($) => prec.left( PREC.assign, seq( - field('left', $.expression), - field('operator', choice('+=', '-=', '*=', '/=', '%=')), - field('right', $.expression), + field("left", $.expression), + field("operator", choice("+=", "-=", "*=", "/=", "%=")), + field("right", $.expression), ), ), @@ -841,33 +912,33 @@ module.exports = grammar({ // @1 unary_expression: ($) => - prec(PREC.unary, seq(choice('-', '*', '!', '~', '@'), $.expression)), + prec(PREC.unary, seq(choice("-", "*", "!", "~", "@"), $.expression)), // for example in let a = try_smth?; it would be `try_smth?` - try_expression: ($) => prec(PREC.try, seq($.expression, '?')), + try_expression: ($) => prec(PREC.try, seq($.expression, "?")), // foo.bar field_expression: ($) => prec( PREC.field, seq( - field('value', $.expression), - '.', - field('field', choice($._field_identifier, $.numeric_literal)), + field("value", $.expression), + ".", + field("field", choice($._field_identifier, $.numeric_literal)), ), ), // section delimited by `{` and `{` - block: ($) => seq('{', repeat($._statement), optional($.expression), '}'), + block: ($) => seq("{", repeat($._statement), optional($.expression), "}"), // if true { () } else { () } if_expression: ($) => prec.right( seq( - 'if', - field('condition', $._condition), - field('consequence', $.block), - optional(field('alternative', $.else_clause)), + "if", + field("condition", $._condition), + field("consequence", $.block), + optional(field("alternative", $.else_clause)), ), ), @@ -876,21 +947,21 @@ module.exports = grammar({ // for example in if let Option::Some(a)= b { () } else { () } it would be `let Option::Some(a)= b` let_condition: ($) => seq( - 'let', - field('pattern', $._pattern), - '=', - field('value', prec.left(PREC.and, $.expression)), + "let", + field("pattern", $._pattern), + "=", + field("value", prec.left(PREC.and, $.expression)), ), // for example in if a == b { () } else { () } it would be `else { () }` - else_clause: ($) => seq('else', choice($.block, $.if_expression)), + else_clause: ($) => seq("else", choice($.block, $.if_expression)), // match opt { // Option::Some(a) => a, // Option::None => 0, // } match_expression: ($) => - seq('match', field('value', $.expression), field('body', $.match_block)), + seq("match", field("value", $.expression), field("body", $.match_block)), // { // Option::Some(a) => a, @@ -898,11 +969,11 @@ module.exports = grammar({ // } match_block: ($) => seq( - '{', + "{", optional( seq(repeat($.match_arm), alias($.last_match_arm, $.match_arm)), ), - '}', + "}", ), // Option::Some(a) => a, // and @@ -911,11 +982,11 @@ module.exports = grammar({ prec.right( seq( repeat(choice($.attribute_item, $.inner_attribute_item)), - field('pattern', $.match_pattern), - '=>', + field("pattern", $.match_pattern), + "=>", choice( - seq(field('value', $.expression), ','), - field('value', prec(1, $._expression_ending_with_block)), + seq(field("value", $.expression), ","), + field("value", prec(1, $._expression_ending_with_block)), ), ), ), @@ -928,27 +999,27 @@ module.exports = grammar({ last_match_arm: ($) => seq( repeat(choice($.attribute_item, $.inner_attribute_item)), - field('pattern', $.match_pattern), - '=>', - field('value', $.expression), - optional(','), + field("pattern", $.match_pattern), + "=>", + field("value", $.expression), + optional(","), ), // Option::Some(1) tuple_enum_pattern: ($) => seq( field( - 'type', + "type", choice( $.identifier, $.scoped_identifier, alias($.generic_type_with_turbofish, $.generic_type), ), ), - '(', - sepBy(',', $._pattern), - optional(','), - ')', + "(", + sepBy(",", $._pattern), + optional(","), + ")", ), // for example in match opt { // Option::Some(a) => a, @@ -956,27 +1027,27 @@ module.exports = grammar({ // } // it would be `Option::Some(a)` and `Option::None` match_pattern: ($) => - seq($._pattern, optional(seq('if', field('condition', $._condition)))), + seq($._pattern, optional(seq("if", field("condition", $._condition)))), // while a != b {} while_expression: ($) => - seq('while', field('condition', $._condition), field('body', $.block)), + seq("while", field("condition", $._condition), field("body", $.block)), // loop {} - loop_expression: ($) => seq('loop', field('body', $.block)), + loop_expression: ($) => seq("loop", field("body", $.block)), // a == b binary_expression: ($) => { const table = [ - [PREC.and, '&&'], - [PREC.or, '||'], - [PREC.bitand, '&'], - [PREC.bitor, '|'], - [PREC.bitxor, '^'], - [PREC.comparative, choice('==', '!=', '<', '<=', '>', '>=')], - [PREC.shift, choice('<<', '>>')], - [PREC.additive, choice('+', '-')], - [PREC.multiplicative, choice('*', '/', '%')], + [PREC.and, "&&"], + [PREC.or, "||"], + [PREC.bitand, "&"], + [PREC.bitor, "|"], + [PREC.bitxor, "^"], + [PREC.comparative, choice("==", "!=", "<", "<=", ">", ">=")], + [PREC.shift, choice("<<", ">>")], + [PREC.additive, choice("+", "-")], + [PREC.multiplicative, choice("*", "/", "%")], ]; // @ts-ignore @@ -985,10 +1056,10 @@ module.exports = grammar({ prec.left( precedence, seq( - field('left', $.expression), + field("left", $.expression), // @ts-ignore - field('operator', operator), - field('right', $.expression), + field("operator", operator), + field("right", $.expression), ), ), ), @@ -996,32 +1067,32 @@ module.exports = grammar({ }, // @Array - snapshot_type: ($) => seq('@', field('type', $._type)), + snapshot_type: ($) => seq("@", field("type", $._type)), // foo() call_expression: ($) => prec( PREC.call, - seq(field('function', $.expression), field('arguments', $.arguments)), + seq(field("function", $.expression), field("arguments", $.arguments)), ), // for example in foo(a, b, c) it would be `(a, b, c)` arguments: ($) => seq( - '(', + "(", sepBy( - ',', + ",", seq(repeat($.attribute_item), choice($.expression, $.named_argument)), ), - optional(','), - ')', + optional(","), + ")", ), // for example in foo(bar: a, :b, :c) it would be `bar: a` and `:b` and `c` - named_argument: ($) => seq(optional($.identifier), ':', $.expression), + named_argument: ($) => seq(optional($.identifier), ":", $.expression), // for example in foo(ref b) it would be `ref b` reference_expression: ($) => prec( PREC.unary, - seq('ref', optional($.mutable_specifier), field('value', $.expression)), + seq("ref", optional($.mutable_specifier), field("value", $.expression)), ), // Helper alias @@ -1034,21 +1105,21 @@ module.exports = grammar({ prec( 20, seq( - 'pub', - optional(seq('(', choice($.super, $.crate, seq('in', $._path)), ')')), + "pub", + optional(seq("(", choice($.super, $.crate, seq("in", $._path)), ")")), ), ), - extern: (_) => 'extern', - nopanic: (_) => 'nopanic', - mutable_specifier: (_) => 'mut', - ref_specifier: (_) => 'ref', - super: (_) => 'super', - crate: (_) => 'crate', - _reserved_identifier: ($) => alias('default', $.identifier), + extern: (_) => "extern", + nopanic: (_) => "nopanic", + mutable_specifier: (_) => "mut", + ref_specifier: (_) => "ref", + super: (_) => "super", + crate: (_) => "crate", + _reserved_identifier: ($) => alias("default", $.identifier), // comments - line_comment: ($) => token(seq('//', /.*/)), - doc_comment: ($) => token(seq('///', /.*/)), + line_comment: ($) => token(seq("//", /.*/)), + doc_comment: ($) => token(seq("///", /.*/)), _field_identifier: ($) => alias($.identifier, $.field_identifier), }, diff --git a/src/grammar.json b/src/grammar.json index 16fbb79..d4bdaa7 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -91,6 +91,10 @@ { "type": "SYMBOL", "name": "associated_type" + }, + { + "type": "SYMBOL", + "name": "associated_impl" } ] }, @@ -279,6 +283,35 @@ } ] }, + "associated_impl": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "impl" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, "const_item": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index ee785d3..a851314 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3,6 +3,10 @@ "type": "_declaration_statement", "named": true, "subtypes": [ + { + "type": "associated_impl", + "named": true + }, { "type": "associated_type", "named": true @@ -440,6 +444,32 @@ } } }, + { + "type": "associated_impl", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type", + "named": true + } + ] + } + }, { "type": "associated_type", "named": true, diff --git a/src/parser.c b/src/parser.c index ce3d3ae..5a3dc5f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1633 +#define STATE_COUNT 1639 #define LARGE_STATE_COUNT 221 -#define SYMBOL_COUNT 231 +#define SYMBOL_COUNT 232 #define ALIAS_COUNT 4 #define TOKEN_COUNT 104 #define EXTERNAL_TOKEN_COUNT 0 @@ -31,8 +31,8 @@ enum ts_symbol_identifiers { anon_sym_SEMI = 5, anon_sym_trait = 6, anon_sym_type = 7, - anon_sym_const = 8, - anon_sym_COLON = 9, + anon_sym_COLON = 8, + anon_sym_const = 9, anon_sym_EQ = 10, anon_sym_BANG = 11, anon_sym_POUND = 12, @@ -133,131 +133,132 @@ enum ts_symbol_identifiers { sym_impl_item = 107, sym_trait_item = 108, sym_associated_type = 109, - sym_const_item = 110, - sym_macro_invocation = 111, - sym_empty_statement = 112, - sym_attribute_item = 113, - sym_inner_attribute_item = 114, - sym_attribute = 115, - sym_mod_item = 116, - sym_struct_item = 117, - sym_enum_item = 118, - sym_enum_variant_list = 119, - sym_enum_variant = 120, - sym_field_declaration_list = 121, - sym_field_declaration = 122, - sym_type_item = 123, - sym_extern_type = 124, - sym_external_function_item = 125, - sym_function_item = 126, - sym_function_signature_item = 127, - sym_function = 128, - sym_let_declaration = 129, - sym_use_declaration = 130, - sym__use_clause = 131, - sym_scoped_use_list = 132, - sym_use_list = 133, - sym_use_as_clause = 134, - sym_use_wildcard = 135, - sym_parameters = 136, - sym_parameter = 137, - sym__type = 138, - sym_type_parameters = 139, - sym_const_parameter = 140, - sym_constrained_type_parameter = 141, - sym_generic_type = 142, - sym_generic_type_with_turbofish = 143, - sym_array_type = 144, - sym_delim_token_tree = 145, - sym__delim_tokens = 146, - sym__pattern = 147, - sym_tuple_pattern = 148, - sym_slice_pattern = 149, - sym_struct_pattern = 150, - sym_field_pattern = 151, - sym_field_initializer_list = 152, - sym_shorthand_field_initializer = 153, - sym_field_initializer = 154, - sym_base_field_initializer = 155, - sym_mut_pattern = 156, - sym_or_pattern = 157, - sym__literal = 158, - sym__literal_pattern = 159, - sym_negative_literal = 160, - sym_string_literal = 161, - sym_boolean_literal = 162, - sym__non_delim_token = 163, - sym_scoped_identifier = 164, - sym_scoped_type_identifier_in_expression_position = 165, - sym_scoped_type_identifier = 166, - sym_tuple_type = 167, - sym_unit_type = 168, - sym_type_arguments = 169, - sym_expression_statement = 170, - sym_expression = 171, - sym_generic_function = 172, - sym_tuple_expression = 173, - sym_return_expression = 174, - sym_struct_expression = 175, - sym_assignment_expression = 176, - sym_break_expression = 177, - sym_continue_expression = 178, - sym_index_expression = 179, - sym_array_expression = 180, - sym_parenthesized_expression = 181, - sym_unit_expression = 182, - sym_compound_assignment_expr = 183, - sym__expression_ending_with_block = 184, - sym_unary_expression = 185, - sym_try_expression = 186, - sym_field_expression = 187, - sym_block = 188, - sym_if_expression = 189, - sym__condition = 190, - sym_let_condition = 191, - sym_else_clause = 192, - sym_match_expression = 193, - sym_match_block = 194, - sym_match_arm = 195, - sym_last_match_arm = 196, - sym_tuple_enum_pattern = 197, - sym_match_pattern = 198, - sym_while_expression = 199, - sym_loop_expression = 200, - sym_binary_expression = 201, - sym_snapshot_type = 202, - sym_call_expression = 203, - sym_arguments = 204, - sym_named_argument = 205, - sym_reference_expression = 206, - sym_visibility_modifier = 207, - sym_extern = 208, - sym_nopanic = 209, - sym_ref_specifier = 210, - aux_sym_source_file_repeat1 = 211, - aux_sym_declaration_list_repeat1 = 212, - aux_sym_enum_variant_list_repeat1 = 213, - aux_sym_enum_variant_list_repeat2 = 214, - aux_sym_field_declaration_list_repeat1 = 215, - aux_sym_function_repeat1 = 216, - aux_sym_use_list_repeat1 = 217, - aux_sym_parameters_repeat1 = 218, - aux_sym_type_parameters_repeat1 = 219, - aux_sym_delim_token_tree_repeat1 = 220, - aux_sym__non_special_token_repeat1 = 221, - aux_sym_tuple_pattern_repeat1 = 222, - aux_sym_struct_pattern_repeat1 = 223, - aux_sym_field_initializer_list_repeat1 = 224, - aux_sym_type_arguments_repeat1 = 225, - aux_sym_tuple_expression_repeat1 = 226, - aux_sym_array_expression_repeat1 = 227, - aux_sym_match_block_repeat1 = 228, - aux_sym_match_arm_repeat1 = 229, - aux_sym_arguments_repeat1 = 230, - alias_sym_field_identifier = 231, - alias_sym_primitive_type = 232, - alias_sym_shorthand_field_identifier = 233, - alias_sym_type_identifier = 234, + sym_associated_impl = 110, + sym_const_item = 111, + sym_macro_invocation = 112, + sym_empty_statement = 113, + sym_attribute_item = 114, + sym_inner_attribute_item = 115, + sym_attribute = 116, + sym_mod_item = 117, + sym_struct_item = 118, + sym_enum_item = 119, + sym_enum_variant_list = 120, + sym_enum_variant = 121, + sym_field_declaration_list = 122, + sym_field_declaration = 123, + sym_type_item = 124, + sym_extern_type = 125, + sym_external_function_item = 126, + sym_function_item = 127, + sym_function_signature_item = 128, + sym_function = 129, + sym_let_declaration = 130, + sym_use_declaration = 131, + sym__use_clause = 132, + sym_scoped_use_list = 133, + sym_use_list = 134, + sym_use_as_clause = 135, + sym_use_wildcard = 136, + sym_parameters = 137, + sym_parameter = 138, + sym__type = 139, + sym_type_parameters = 140, + sym_const_parameter = 141, + sym_constrained_type_parameter = 142, + sym_generic_type = 143, + sym_generic_type_with_turbofish = 144, + sym_array_type = 145, + sym_delim_token_tree = 146, + sym__delim_tokens = 147, + sym__pattern = 148, + sym_tuple_pattern = 149, + sym_slice_pattern = 150, + sym_struct_pattern = 151, + sym_field_pattern = 152, + sym_field_initializer_list = 153, + sym_shorthand_field_initializer = 154, + sym_field_initializer = 155, + sym_base_field_initializer = 156, + sym_mut_pattern = 157, + sym_or_pattern = 158, + sym__literal = 159, + sym__literal_pattern = 160, + sym_negative_literal = 161, + sym_string_literal = 162, + sym_boolean_literal = 163, + sym__non_delim_token = 164, + sym_scoped_identifier = 165, + sym_scoped_type_identifier_in_expression_position = 166, + sym_scoped_type_identifier = 167, + sym_tuple_type = 168, + sym_unit_type = 169, + sym_type_arguments = 170, + sym_expression_statement = 171, + sym_expression = 172, + sym_generic_function = 173, + sym_tuple_expression = 174, + sym_return_expression = 175, + sym_struct_expression = 176, + sym_assignment_expression = 177, + sym_break_expression = 178, + sym_continue_expression = 179, + sym_index_expression = 180, + sym_array_expression = 181, + sym_parenthesized_expression = 182, + sym_unit_expression = 183, + sym_compound_assignment_expr = 184, + sym__expression_ending_with_block = 185, + sym_unary_expression = 186, + sym_try_expression = 187, + sym_field_expression = 188, + sym_block = 189, + sym_if_expression = 190, + sym__condition = 191, + sym_let_condition = 192, + sym_else_clause = 193, + sym_match_expression = 194, + sym_match_block = 195, + sym_match_arm = 196, + sym_last_match_arm = 197, + sym_tuple_enum_pattern = 198, + sym_match_pattern = 199, + sym_while_expression = 200, + sym_loop_expression = 201, + sym_binary_expression = 202, + sym_snapshot_type = 203, + sym_call_expression = 204, + sym_arguments = 205, + sym_named_argument = 206, + sym_reference_expression = 207, + sym_visibility_modifier = 208, + sym_extern = 209, + sym_nopanic = 210, + sym_ref_specifier = 211, + aux_sym_source_file_repeat1 = 212, + aux_sym_declaration_list_repeat1 = 213, + aux_sym_enum_variant_list_repeat1 = 214, + aux_sym_enum_variant_list_repeat2 = 215, + aux_sym_field_declaration_list_repeat1 = 216, + aux_sym_function_repeat1 = 217, + aux_sym_use_list_repeat1 = 218, + aux_sym_parameters_repeat1 = 219, + aux_sym_type_parameters_repeat1 = 220, + aux_sym_delim_token_tree_repeat1 = 221, + aux_sym__non_special_token_repeat1 = 222, + aux_sym_tuple_pattern_repeat1 = 223, + aux_sym_struct_pattern_repeat1 = 224, + aux_sym_field_initializer_list_repeat1 = 225, + aux_sym_type_arguments_repeat1 = 226, + aux_sym_tuple_expression_repeat1 = 227, + aux_sym_array_expression_repeat1 = 228, + aux_sym_match_block_repeat1 = 229, + aux_sym_match_arm_repeat1 = 230, + aux_sym_arguments_repeat1 = 231, + alias_sym_field_identifier = 232, + alias_sym_primitive_type = 233, + alias_sym_shorthand_field_identifier = 234, + alias_sym_type_identifier = 235, }; static const char * const ts_symbol_names[] = { @@ -269,8 +270,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_SEMI] = ";", [anon_sym_trait] = "trait", [anon_sym_type] = "type", - [anon_sym_const] = "const", [anon_sym_COLON] = ":", + [anon_sym_const] = "const", [anon_sym_EQ] = "=", [anon_sym_BANG] = "!", [anon_sym_POUND] = "#", @@ -371,6 +372,7 @@ static const char * const ts_symbol_names[] = { [sym_impl_item] = "impl_item", [sym_trait_item] = "trait_item", [sym_associated_type] = "associated_type", + [sym_associated_impl] = "associated_impl", [sym_const_item] = "const_item", [sym_macro_invocation] = "macro_invocation", [sym_empty_statement] = "empty_statement", @@ -507,8 +509,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_trait] = anon_sym_trait, [anon_sym_type] = anon_sym_type, - [anon_sym_const] = anon_sym_const, [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_const] = anon_sym_const, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_BANG] = anon_sym_BANG, [anon_sym_POUND] = anon_sym_POUND, @@ -609,6 +611,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_impl_item] = sym_impl_item, [sym_trait_item] = sym_trait_item, [sym_associated_type] = sym_associated_type, + [sym_associated_impl] = sym_associated_impl, [sym_const_item] = sym_const_item, [sym_macro_invocation] = sym_macro_invocation, [sym_empty_statement] = sym_empty_statement, @@ -769,11 +772,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_const] = { + [anon_sym_COLON] = { .visible = true, .named = false, }, - [anon_sym_COLON] = { + [anon_sym_const] = { .visible = true, .named = false, }, @@ -1177,6 +1180,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_associated_impl] = { + .visible = true, + .named = true, + }, [sym_const_item] = { .visible = true, .named = true, @@ -2316,61 +2323,61 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, + [3] = 2, [4] = 4, - [5] = 4, - [6] = 4, - [7] = 3, - [8] = 3, - [9] = 3, - [10] = 3, - [11] = 3, + [5] = 5, + [6] = 2, + [7] = 5, + [8] = 5, + [9] = 5, + [10] = 2, + [11] = 5, [12] = 4, - [13] = 13, - [14] = 4, - [15] = 3, - [16] = 3, - [17] = 4, - [18] = 4, - [19] = 4, - [20] = 13, + [13] = 2, + [14] = 2, + [15] = 5, + [16] = 16, + [17] = 2, + [18] = 2, + [19] = 5, + [20] = 5, [21] = 21, [22] = 22, [23] = 23, [24] = 24, [25] = 24, [26] = 26, - [27] = 27, + [27] = 26, [28] = 28, [29] = 29, - [30] = 27, - [31] = 28, - [32] = 27, - [33] = 29, + [30] = 24, + [31] = 24, + [32] = 29, + [33] = 33, [34] = 34, - [35] = 24, - [36] = 26, + [35] = 29, + [36] = 33, [37] = 28, - [38] = 27, - [39] = 29, - [40] = 27, - [41] = 26, - [42] = 26, - [43] = 34, - [44] = 34, - [45] = 26, - [46] = 34, - [47] = 34, - [48] = 24, - [49] = 29, - [50] = 28, + [38] = 26, + [39] = 34, + [40] = 29, + [41] = 34, + [42] = 28, + [43] = 33, + [44] = 33, + [45] = 28, + [46] = 26, + [47] = 24, + [48] = 26, + [49] = 28, + [50] = 33, [51] = 29, - [52] = 24, - [53] = 28, - [54] = 21, - [55] = 23, + [52] = 34, + [53] = 34, + [54] = 22, + [55] = 21, [56] = 21, - [57] = 23, + [57] = 22, [58] = 58, [59] = 59, [60] = 60, @@ -2385,73 +2392,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [69] = 69, [70] = 70, [71] = 71, - [72] = 64, - [73] = 73, + [72] = 72, + [73] = 67, [74] = 74, - [75] = 62, + [75] = 75, [76] = 76, [77] = 77, [78] = 78, [79] = 79, [80] = 80, [81] = 81, - [82] = 82, + [82] = 66, [83] = 83, - [84] = 74, - [85] = 79, - [86] = 81, + [84] = 76, + [85] = 68, + [86] = 74, [87] = 87, [88] = 88, - [89] = 89, - [90] = 87, - [91] = 91, - [92] = 91, + [89] = 87, + [90] = 90, + [91] = 90, + [92] = 92, [93] = 93, - [94] = 88, + [94] = 93, [95] = 95, - [96] = 95, - [97] = 93, + [96] = 92, + [97] = 95, [98] = 98, [99] = 99, [100] = 100, - [101] = 99, + [101] = 101, [102] = 102, - [103] = 103, - [104] = 98, - [105] = 102, - [106] = 103, - [107] = 107, + [103] = 98, + [104] = 102, + [105] = 105, + [106] = 99, + [107] = 105, [108] = 108, - [109] = 108, + [109] = 109, [110] = 110, [111] = 111, [112] = 112, - [113] = 113, - [114] = 110, - [115] = 113, - [116] = 112, - [117] = 111, + [113] = 110, + [114] = 111, + [115] = 109, + [116] = 108, + [117] = 112, [118] = 118, - [119] = 118, + [119] = 119, [120] = 120, - [121] = 121, - [122] = 118, - [123] = 123, + [121] = 119, + [122] = 122, + [123] = 119, [124] = 124, - [125] = 118, - [126] = 126, + [125] = 120, + [126] = 124, [127] = 124, - [128] = 121, - [129] = 121, + [128] = 119, + [129] = 129, [130] = 130, [131] = 131, - [132] = 132, - [133] = 131, - [134] = 132, + [132] = 130, + [133] = 133, + [134] = 134, [135] = 135, - [136] = 130, - [137] = 135, - [138] = 138, + [136] = 133, + [137] = 134, + [138] = 131, [139] = 139, [140] = 139, [141] = 139, @@ -2460,117 +2467,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [144] = 144, [145] = 145, [146] = 146, - [147] = 143, + [147] = 147, [148] = 148, [149] = 149, - [150] = 142, - [151] = 145, + [150] = 150, + [151] = 151, [152] = 152, - [153] = 152, + [153] = 153, [154] = 154, - [155] = 154, + [155] = 155, [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 149, + [160] = 153, [161] = 161, - [162] = 161, + [162] = 143, [163] = 163, [164] = 164, - [165] = 148, - [166] = 143, - [167] = 146, - [168] = 168, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 164, [169] = 169, - [170] = 157, - [171] = 171, - [172] = 159, - [173] = 142, - [174] = 174, - [175] = 168, - [176] = 176, + [170] = 170, + [171] = 163, + [172] = 149, + [173] = 151, + [174] = 147, + [175] = 143, + [176] = 154, [177] = 177, - [178] = 144, + [178] = 156, [179] = 179, - [180] = 180, - [181] = 156, - [182] = 149, - [183] = 183, + [180] = 145, + [181] = 181, + [182] = 165, + [183] = 157, [184] = 184, - [185] = 148, - [186] = 186, - [187] = 168, + [185] = 159, + [186] = 155, + [187] = 187, [188] = 188, - [189] = 189, - [190] = 171, - [191] = 186, - [192] = 183, - [193] = 193, - [194] = 159, - [195] = 171, + [189] = 158, + [190] = 152, + [191] = 181, + [192] = 158, + [193] = 159, + [194] = 179, + [195] = 165, [196] = 196, - [197] = 197, - [198] = 184, - [199] = 146, - [200] = 200, - [201] = 157, - [202] = 202, - [203] = 177, - [204] = 204, + [197] = 145, + [198] = 163, + [199] = 199, + [200] = 157, + [201] = 187, + [202] = 149, + [203] = 156, + [204] = 161, [205] = 205, - [206] = 156, - [207] = 184, - [208] = 180, - [209] = 179, - [210] = 197, - [211] = 211, - [212] = 183, - [213] = 213, - [214] = 158, - [215] = 154, - [216] = 152, - [217] = 145, - [218] = 218, - [219] = 164, - [220] = 196, - [221] = 62, - [222] = 82, - [223] = 76, - [224] = 74, - [225] = 81, - [226] = 79, - [227] = 64, + [206] = 206, + [207] = 153, + [208] = 161, + [209] = 154, + [210] = 210, + [211] = 146, + [212] = 212, + [213] = 212, + [214] = 164, + [215] = 142, + [216] = 151, + [217] = 152, + [218] = 166, + [219] = 144, + [220] = 220, + [221] = 74, + [222] = 77, + [223] = 80, + [224] = 67, + [225] = 68, + [226] = 76, + [227] = 66, [228] = 228, - [229] = 83, - [230] = 230, + [229] = 228, + [230] = 83, [231] = 231, [232] = 232, - [233] = 74, - [234] = 234, - [235] = 79, - [236] = 236, - [237] = 79, - [238] = 81, + [233] = 233, + [234] = 233, + [235] = 68, + [236] = 76, + [237] = 237, + [238] = 238, [239] = 74, - [240] = 234, - [241] = 241, - [242] = 81, - [243] = 232, - [244] = 73, - [245] = 245, - [246] = 74, - [247] = 81, - [248] = 79, - [249] = 70, - [250] = 77, - [251] = 251, - [252] = 71, - [253] = 68, - [254] = 69, + [240] = 68, + [241] = 74, + [242] = 76, + [243] = 243, + [244] = 81, + [245] = 72, + [246] = 70, + [247] = 76, + [248] = 75, + [249] = 69, + [250] = 79, + [251] = 78, + [252] = 252, + [253] = 71, + [254] = 68, [255] = 255, - [256] = 80, - [257] = 78, + [256] = 256, + [257] = 74, [258] = 258, [259] = 259, [260] = 260, @@ -2652,73 +2659,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [336] = 336, [337] = 337, [338] = 338, - [339] = 337, - [340] = 340, - [341] = 337, - [342] = 342, + [339] = 339, + [340] = 338, + [341] = 341, + [342] = 338, [343] = 343, - [344] = 342, - [345] = 343, - [346] = 346, - [347] = 342, - [348] = 343, - [349] = 349, + [344] = 343, + [345] = 345, + [346] = 343, + [347] = 347, + [348] = 345, + [349] = 345, [350] = 350, [351] = 351, [352] = 352, [353] = 353, [354] = 354, - [355] = 352, + [355] = 355, [356] = 356, - [357] = 354, - [358] = 353, + [357] = 353, + [358] = 354, [359] = 356, - [360] = 360, + [360] = 355, [361] = 361, [362] = 362, [363] = 363, - [364] = 362, + [364] = 364, [365] = 365, [366] = 366, [367] = 367, - [368] = 366, - [369] = 369, - [370] = 360, + [368] = 364, + [369] = 366, + [370] = 365, [371] = 361, - [372] = 363, - [373] = 365, - [374] = 369, + [372] = 372, + [373] = 363, + [374] = 372, [375] = 367, - [376] = 376, + [376] = 362, [377] = 377, [378] = 378, - [379] = 378, + [379] = 379, [380] = 380, [381] = 381, [382] = 382, [383] = 377, - [384] = 384, + [384] = 382, [385] = 385, [386] = 386, - [387] = 387, - [388] = 376, + [387] = 381, + [388] = 378, [389] = 389, - [390] = 386, - [391] = 384, - [392] = 389, + [390] = 389, + [391] = 391, + [392] = 392, [393] = 393, - [394] = 394, + [394] = 392, [395] = 395, - [396] = 395, + [396] = 396, [397] = 395, - [398] = 394, - [399] = 394, - [400] = 320, + [398] = 396, + [399] = 395, + [400] = 396, [401] = 401, [402] = 402, [403] = 401, - [404] = 401, - [405] = 405, + [404] = 329, + [405] = 401, [406] = 406, [407] = 407, [408] = 408, @@ -2728,34 +2735,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [412] = 412, [413] = 413, [414] = 414, - [415] = 83, + [415] = 415, [416] = 416, - [417] = 417, + [417] = 83, [418] = 418, [419] = 419, [420] = 420, - [421] = 79, + [421] = 421, [422] = 422, [423] = 423, - [424] = 81, + [424] = 424, [425] = 425, [426] = 426, [427] = 427, [428] = 428, [429] = 429, - [430] = 74, + [430] = 430, [431] = 431, [432] = 432, - [433] = 433, + [433] = 68, [434] = 434, - [435] = 435, - [436] = 436, + [435] = 76, + [436] = 74, [437] = 437, [438] = 438, [439] = 439, [440] = 440, - [441] = 441, - [442] = 442, + [441] = 62, + [442] = 65, [443] = 443, [444] = 444, [445] = 445, @@ -2772,12 +2779,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [456] = 456, [457] = 457, [458] = 458, - [459] = 66, + [459] = 459, [460] = 460, [461] = 461, [462] = 462, [463] = 463, - [464] = 464, + [464] = 64, [465] = 465, [466] = 466, [467] = 467, @@ -2786,12 +2793,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [470] = 470, [471] = 471, [472] = 472, - [473] = 60, + [473] = 473, [474] = 474, [475] = 475, [476] = 476, [477] = 477, - [478] = 63, + [478] = 478, [479] = 479, [480] = 480, [481] = 481, @@ -2800,870 +2807,870 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [484] = 484, [485] = 485, [486] = 486, - [487] = 314, - [488] = 264, - [489] = 304, - [490] = 270, - [491] = 301, - [492] = 408, - [493] = 493, - [494] = 320, - [495] = 263, - [496] = 272, - [497] = 306, - [498] = 334, - [499] = 303, - [500] = 283, - [501] = 330, - [502] = 312, - [503] = 315, - [504] = 276, - [505] = 299, - [506] = 295, - [507] = 311, - [508] = 285, - [509] = 307, - [510] = 284, - [511] = 325, - [512] = 278, - [513] = 329, - [514] = 261, - [515] = 313, - [516] = 516, - [517] = 287, - [518] = 281, - [519] = 333, - [520] = 328, - [521] = 288, - [522] = 318, - [523] = 316, - [524] = 286, - [525] = 297, - [526] = 259, - [527] = 260, - [528] = 528, - [529] = 298, - [530] = 331, - [531] = 290, - [532] = 305, - [533] = 321, - [534] = 528, - [535] = 332, - [536] = 296, - [537] = 317, - [538] = 302, - [539] = 294, - [540] = 268, - [541] = 309, + [487] = 487, + [488] = 332, + [489] = 288, + [490] = 330, + [491] = 335, + [492] = 334, + [493] = 337, + [494] = 494, + [495] = 326, + [496] = 324, + [497] = 286, + [498] = 279, + [499] = 499, + [500] = 309, + [501] = 278, + [502] = 502, + [503] = 267, + [504] = 305, + [505] = 274, + [506] = 331, + [507] = 322, + [508] = 320, + [509] = 318, + [510] = 307, + [511] = 298, + [512] = 302, + [513] = 299, + [514] = 297, + [515] = 273, + [516] = 304, + [517] = 272, + [518] = 499, + [519] = 258, + [520] = 294, + [521] = 263, + [522] = 271, + [523] = 283, + [524] = 270, + [525] = 289, + [526] = 303, + [527] = 296, + [528] = 280, + [529] = 269, + [530] = 268, + [531] = 281, + [532] = 329, + [533] = 277, + [534] = 287, + [535] = 285, + [536] = 293, + [537] = 310, + [538] = 311, + [539] = 323, + [540] = 327, + [541] = 284, [542] = 336, - [543] = 310, - [544] = 493, - [545] = 280, - [546] = 322, - [547] = 319, - [548] = 308, - [549] = 300, - [550] = 323, - [551] = 293, - [552] = 258, - [553] = 289, - [554] = 279, - [555] = 277, - [556] = 275, - [557] = 326, - [558] = 274, - [559] = 273, - [560] = 271, - [561] = 269, - [562] = 327, - [563] = 282, - [564] = 335, - [565] = 262, - [566] = 291, - [567] = 265, - [568] = 292, - [569] = 266, - [570] = 267, - [571] = 408, - [572] = 572, - [573] = 418, + [543] = 260, + [544] = 328, + [545] = 276, + [546] = 275, + [547] = 266, + [548] = 321, + [549] = 502, + [550] = 317, + [551] = 282, + [552] = 261, + [553] = 262, + [554] = 264, + [555] = 290, + [556] = 411, + [557] = 292, + [558] = 312, + [559] = 300, + [560] = 325, + [561] = 313, + [562] = 259, + [563] = 308, + [564] = 319, + [565] = 301, + [566] = 333, + [567] = 291, + [568] = 316, + [569] = 315, + [570] = 295, + [571] = 314, + [572] = 306, + [573] = 419, [574] = 574, - [575] = 575, - [576] = 417, + [575] = 411, + [576] = 576, [577] = 577, - [578] = 416, - [579] = 579, + [578] = 578, + [579] = 416, [580] = 580, - [581] = 577, + [581] = 581, [582] = 582, [583] = 583, - [584] = 584, - [585] = 585, - [586] = 586, - [587] = 587, - [588] = 575, - [589] = 574, - [590] = 414, + [584] = 576, + [585] = 415, + [586] = 583, + [587] = 418, + [588] = 577, + [589] = 589, + [590] = 590, [591] = 591, [592] = 592, [593] = 593, [594] = 594, [595] = 595, - [596] = 422, - [597] = 597, + [596] = 83, + [597] = 415, [598] = 598, [599] = 599, - [600] = 600, - [601] = 601, + [600] = 424, + [601] = 420, [602] = 602, [603] = 603, - [604] = 604, + [604] = 598, [605] = 605, [606] = 606, - [607] = 607, - [608] = 608, + [607] = 598, + [608] = 605, [609] = 609, [610] = 610, - [611] = 593, + [611] = 605, [612] = 612, - [613] = 595, - [614] = 432, + [613] = 598, + [614] = 614, [615] = 615, - [616] = 414, - [617] = 617, - [618] = 407, + [616] = 616, + [617] = 410, + [618] = 616, [619] = 619, [620] = 620, [621] = 621, [622] = 622, - [623] = 432, - [624] = 422, + [623] = 623, + [624] = 624, [625] = 625, [626] = 626, - [627] = 627, - [628] = 601, - [629] = 602, - [630] = 603, - [631] = 631, - [632] = 600, - [633] = 633, + [627] = 625, + [628] = 628, + [629] = 629, + [630] = 599, + [631] = 598, + [632] = 605, + [633] = 615, [634] = 634, - [635] = 635, + [635] = 429, [636] = 636, - [637] = 626, - [638] = 600, - [639] = 598, - [640] = 597, - [641] = 626, - [642] = 83, - [643] = 626, - [644] = 600, - [645] = 436, - [646] = 419, - [647] = 626, - [648] = 620, - [649] = 619, - [650] = 607, - [651] = 651, - [652] = 617, - [653] = 626, - [654] = 600, + [637] = 598, + [638] = 638, + [639] = 605, + [640] = 640, + [641] = 641, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 648, + [649] = 409, + [650] = 647, + [651] = 605, + [652] = 646, + [653] = 416, + [654] = 654, [655] = 655, - [656] = 656, - [657] = 626, - [658] = 627, - [659] = 600, + [656] = 619, + [657] = 623, + [658] = 430, + [659] = 430, [660] = 660, [661] = 661, [662] = 662, - [663] = 663, - [664] = 411, - [665] = 409, - [666] = 666, - [667] = 412, + [663] = 643, + [664] = 624, + [665] = 665, + [666] = 412, + [667] = 429, [668] = 668, - [669] = 669, + [669] = 414, [670] = 413, - [671] = 671, - [672] = 406, - [673] = 410, - [674] = 615, - [675] = 604, + [671] = 665, + [672] = 407, + [673] = 408, + [674] = 614, + [675] = 598, [676] = 676, - [677] = 660, - [678] = 600, - [679] = 679, + [677] = 598, + [678] = 594, + [679] = 641, [680] = 680, - [681] = 595, - [682] = 626, - [683] = 627, - [684] = 684, - [685] = 625, - [686] = 320, - [687] = 635, - [688] = 688, - [689] = 417, - [690] = 600, - [691] = 416, - [692] = 608, - [693] = 671, - [694] = 418, - [695] = 476, - [696] = 466, - [697] = 447, - [698] = 454, - [699] = 464, - [700] = 466, - [701] = 483, - [702] = 486, - [703] = 440, - [704] = 74, - [705] = 441, - [706] = 706, - [707] = 428, - [708] = 451, - [709] = 320, - [710] = 419, - [711] = 436, - [712] = 712, - [713] = 434, - [714] = 714, + [681] = 641, + [682] = 682, + [683] = 419, + [684] = 643, + [685] = 605, + [686] = 645, + [687] = 687, + [688] = 682, + [689] = 689, + [690] = 605, + [691] = 660, + [692] = 689, + [693] = 693, + [694] = 612, + [695] = 329, + [696] = 418, + [697] = 697, + [698] = 654, + [699] = 699, + [700] = 476, + [701] = 701, + [702] = 68, + [703] = 74, + [704] = 424, + [705] = 705, + [706] = 701, + [707] = 421, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 447, + [713] = 713, + [714] = 446, [715] = 715, - [716] = 716, - [717] = 429, + [716] = 439, + [717] = 717, [718] = 718, - [719] = 477, - [720] = 446, - [721] = 461, - [722] = 476, - [723] = 427, - [724] = 431, - [725] = 425, - [726] = 726, - [727] = 727, - [728] = 726, - [729] = 729, - [730] = 730, - [731] = 727, + [719] = 420, + [720] = 329, + [721] = 721, + [722] = 434, + [723] = 708, + [724] = 469, + [725] = 705, + [726] = 427, + [727] = 486, + [728] = 474, + [729] = 440, + [730] = 478, + [731] = 731, [732] = 732, - [733] = 81, - [734] = 732, - [735] = 735, - [736] = 79, - [737] = 712, - [738] = 477, - [739] = 739, - [740] = 740, - [741] = 741, - [742] = 742, - [743] = 741, - [744] = 729, - [745] = 461, - [746] = 423, - [747] = 739, - [748] = 290, - [749] = 446, - [750] = 716, - [751] = 751, - [752] = 447, - [753] = 753, - [754] = 454, - [755] = 464, - [756] = 751, - [757] = 757, - [758] = 483, - [759] = 486, - [760] = 440, + [733] = 477, + [734] = 717, + [735] = 76, + [736] = 732, + [737] = 737, + [738] = 738, + [739] = 437, + [740] = 472, + [741] = 291, + [742] = 447, + [743] = 721, + [744] = 487, + [745] = 745, + [746] = 446, + [747] = 426, + [748] = 439, + [749] = 749, + [750] = 484, + [751] = 487, + [752] = 484, + [753] = 718, + [754] = 710, + [755] = 432, + [756] = 472, + [757] = 737, + [758] = 476, + [759] = 438, + [760] = 477, [761] = 761, - [762] = 441, - [763] = 740, + [762] = 478, + [763] = 745, [764] = 764, - [765] = 706, - [766] = 451, - [767] = 730, - [768] = 439, - [769] = 482, - [770] = 448, - [771] = 71, - [772] = 463, - [773] = 73, - [774] = 462, - [775] = 69, - [776] = 453, - [777] = 456, - [778] = 60, - [779] = 63, - [780] = 68, - [781] = 472, - [782] = 479, - [783] = 450, - [784] = 784, - [785] = 442, - [786] = 786, - [787] = 455, - [788] = 452, - [789] = 70, - [790] = 485, - [791] = 481, - [792] = 469, - [793] = 66, - [794] = 471, - [795] = 438, - [796] = 474, - [797] = 460, - [798] = 77, - [799] = 457, - [800] = 445, - [801] = 467, - [802] = 484, - [803] = 468, - [804] = 470, - [805] = 80, - [806] = 465, - [807] = 78, - [808] = 458, - [809] = 449, - [810] = 443, - [811] = 444, - [812] = 480, - [813] = 475, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 817, + [765] = 440, + [766] = 474, + [767] = 486, + [768] = 469, + [769] = 731, + [770] = 770, + [771] = 770, + [772] = 78, + [773] = 460, + [774] = 463, + [775] = 455, + [776] = 473, + [777] = 79, + [778] = 72, + [779] = 64, + [780] = 465, + [781] = 69, + [782] = 456, + [783] = 783, + [784] = 443, + [785] = 462, + [786] = 482, + [787] = 467, + [788] = 481, + [789] = 459, + [790] = 480, + [791] = 461, + [792] = 479, + [793] = 452, + [794] = 71, + [795] = 444, + [796] = 485, + [797] = 65, + [798] = 445, + [799] = 451, + [800] = 454, + [801] = 62, + [802] = 75, + [803] = 70, + [804] = 475, + [805] = 805, + [806] = 471, + [807] = 81, + [808] = 468, + [809] = 470, + [810] = 450, + [811] = 458, + [812] = 448, + [813] = 483, + [814] = 453, + [815] = 466, + [816] = 457, + [817] = 449, [818] = 818, - [819] = 818, - [820] = 817, - [821] = 385, - [822] = 320, + [819] = 819, + [820] = 820, + [821] = 820, + [822] = 822, [823] = 823, - [824] = 824, - [825] = 824, - [826] = 826, - [827] = 826, - [828] = 824, - [829] = 824, - [830] = 824, - [831] = 824, - [832] = 826, - [833] = 824, - [834] = 824, - [835] = 835, - [836] = 835, - [837] = 837, - [838] = 838, + [824] = 823, + [825] = 380, + [826] = 329, + [827] = 827, + [828] = 828, + [829] = 828, + [830] = 830, + [831] = 830, + [832] = 830, + [833] = 828, + [834] = 828, + [835] = 828, + [836] = 828, + [837] = 828, + [838] = 828, [839] = 839, - [840] = 840, + [840] = 839, [841] = 841, - [842] = 839, - [843] = 413, - [844] = 838, - [845] = 837, - [846] = 407, - [847] = 840, - [848] = 410, - [849] = 406, - [850] = 850, - [851] = 62, - [852] = 852, - [853] = 64, - [854] = 76, - [855] = 855, - [856] = 856, - [857] = 82, - [858] = 855, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 844, + [847] = 413, + [848] = 841, + [849] = 414, + [850] = 407, + [851] = 408, + [852] = 842, + [853] = 843, + [854] = 854, + [855] = 67, + [856] = 77, + [857] = 857, + [858] = 66, [859] = 859, - [860] = 837, - [861] = 861, + [860] = 860, + [861] = 859, [862] = 862, - [863] = 863, + [863] = 80, [864] = 864, - [865] = 865, + [865] = 843, [866] = 866, - [867] = 838, + [867] = 842, [868] = 868, [869] = 869, - [870] = 864, + [870] = 870, [871] = 871, - [872] = 839, - [873] = 840, - [874] = 874, - [875] = 875, - [876] = 876, + [872] = 872, + [873] = 873, + [874] = 870, + [875] = 844, + [876] = 841, [877] = 877, [878] = 878, [879] = 879, [880] = 880, [881] = 881, [882] = 882, - [883] = 883, + [883] = 879, [884] = 884, - [885] = 880, + [885] = 885, [886] = 886, - [887] = 878, + [887] = 887, [888] = 888, - [889] = 889, - [890] = 890, + [889] = 888, + [890] = 886, [891] = 891, - [892] = 891, - [893] = 889, + [892] = 892, + [893] = 893, [894] = 894, [895] = 895, - [896] = 841, - [897] = 889, - [898] = 66, + [896] = 896, + [897] = 894, + [898] = 898, [899] = 899, - [900] = 60, - [901] = 882, - [902] = 902, - [903] = 903, - [904] = 903, - [905] = 899, + [900] = 900, + [901] = 64, + [902] = 880, + [903] = 879, + [904] = 904, + [905] = 65, [906] = 906, - [907] = 906, - [908] = 61, - [909] = 909, - [910] = 910, - [911] = 902, + [907] = 904, + [908] = 908, + [909] = 906, + [910] = 900, + [911] = 845, [912] = 912, [913] = 913, - [914] = 914, - [915] = 915, + [914] = 908, + [915] = 63, [916] = 916, [917] = 917, [918] = 918, [919] = 919, - [920] = 913, - [921] = 839, + [920] = 880, + [921] = 921, [922] = 922, [923] = 923, - [924] = 838, + [924] = 924, [925] = 925, - [926] = 840, + [926] = 926, [927] = 927, [928] = 928, [929] = 929, - [930] = 837, + [930] = 919, [931] = 931, [932] = 932, [933] = 933, - [934] = 934, + [934] = 922, [935] = 935, [936] = 936, [937] = 937, - [938] = 919, + [938] = 938, [939] = 939, [940] = 940, [941] = 941, [942] = 942, - [943] = 936, + [943] = 943, [944] = 944, [945] = 945, [946] = 946, - [947] = 947, - [948] = 928, - [949] = 882, + [947] = 842, + [948] = 948, + [949] = 940, [950] = 950, [951] = 951, [952] = 952, - [953] = 953, - [954] = 954, + [953] = 952, + [954] = 843, [955] = 955, [956] = 956, - [957] = 957, + [957] = 841, [958] = 958, - [959] = 852, - [960] = 852, + [959] = 844, + [960] = 960, [961] = 961, - [962] = 852, + [962] = 962, [963] = 963, [964] = 964, - [965] = 965, + [965] = 961, [966] = 966, [967] = 967, [968] = 968, [969] = 969, [970] = 970, - [971] = 961, - [972] = 413, - [973] = 973, - [974] = 866, + [971] = 857, + [972] = 857, + [973] = 857, + [974] = 974, [975] = 975, [976] = 976, - [977] = 866, + [977] = 977, [978] = 978, - [979] = 979, + [979] = 857, [980] = 980, - [981] = 981, - [982] = 407, - [983] = 406, - [984] = 894, - [985] = 985, - [986] = 986, - [987] = 410, - [988] = 866, + [981] = 864, + [982] = 982, + [983] = 414, + [984] = 864, + [985] = 413, + [986] = 407, + [987] = 987, + [988] = 408, [989] = 989, - [990] = 852, + [990] = 990, [991] = 991, [992] = 992, [993] = 993, - [994] = 994, - [995] = 385, + [994] = 864, + [995] = 892, [996] = 996, [997] = 997, [998] = 998, - [999] = 999, + [999] = 380, [1000] = 1000, - [1001] = 996, + [1001] = 998, [1002] = 1002, [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, - [1007] = 999, + [1007] = 1007, [1008] = 1008, [1009] = 1009, [1010] = 1010, [1011] = 1011, [1012] = 1012, - [1013] = 866, + [1013] = 1013, [1014] = 1014, - [1015] = 385, - [1016] = 994, + [1015] = 1015, + [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 1009, - [1022] = 411, - [1023] = 1023, + [1021] = 1021, + [1022] = 1009, + [1023] = 1012, [1024] = 1024, [1025] = 1025, - [1026] = 1026, + [1026] = 409, [1027] = 1027, - [1028] = 1027, + [1028] = 1014, [1029] = 1029, [1030] = 1030, - [1031] = 1019, + [1031] = 1031, [1032] = 1032, - [1033] = 1033, + [1033] = 380, [1034] = 1034, - [1035] = 1018, + [1035] = 1000, [1036] = 1036, - [1037] = 1037, - [1038] = 1038, + [1037] = 1036, + [1038] = 1005, [1039] = 1039, [1040] = 1040, - [1041] = 409, - [1042] = 412, + [1041] = 412, + [1042] = 1040, [1043] = 1043, - [1044] = 1044, + [1044] = 410, [1045] = 1045, [1046] = 1046, - [1047] = 1047, + [1047] = 864, [1048] = 1048, [1049] = 1049, [1050] = 1050, - [1051] = 1044, + [1051] = 1051, [1052] = 1052, - [1053] = 1049, + [1053] = 1053, [1054] = 1054, [1055] = 1055, [1056] = 1056, - [1057] = 1054, + [1057] = 1057, [1058] = 1058, - [1059] = 1058, - [1060] = 1060, + [1059] = 1059, + [1060] = 1055, [1061] = 1061, - [1062] = 1054, - [1063] = 1061, - [1064] = 1064, + [1062] = 912, + [1063] = 1063, + [1064] = 1058, [1065] = 1065, [1066] = 1066, [1067] = 1067, [1068] = 1068, - [1069] = 1061, - [1070] = 1067, + [1069] = 1069, + [1070] = 1070, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1074, - [1075] = 1043, - [1076] = 1065, + [1074] = 1049, + [1075] = 1075, + [1076] = 1063, [1077] = 1077, [1078] = 1078, - [1079] = 1068, - [1080] = 1067, - [1081] = 1074, - [1082] = 1082, + [1079] = 1055, + [1080] = 1068, + [1081] = 1072, + [1082] = 1049, [1083] = 1083, - [1084] = 1068, + [1084] = 1054, [1085] = 1085, - [1086] = 1078, - [1087] = 1087, - [1088] = 1050, - [1089] = 1089, - [1090] = 1090, - [1091] = 1071, - [1092] = 1046, - [1093] = 1093, - [1094] = 1044, + [1086] = 1086, + [1087] = 1067, + [1088] = 1085, + [1089] = 1059, + [1090] = 1073, + [1091] = 1061, + [1092] = 1073, + [1093] = 1085, + [1094] = 1094, [1095] = 1095, - [1096] = 1089, - [1097] = 1095, - [1098] = 1093, - [1099] = 1087, - [1100] = 1085, - [1101] = 1101, + [1096] = 1086, + [1097] = 1067, + [1098] = 1086, + [1099] = 1054, + [1100] = 1100, + [1101] = 1072, [1102] = 1068, [1103] = 1103, - [1104] = 910, - [1105] = 1067, - [1106] = 1106, - [1107] = 1046, - [1108] = 1103, - [1109] = 1109, - [1110] = 1061, - [1111] = 1090, - [1112] = 1046, - [1113] = 1093, - [1114] = 1089, - [1115] = 1068, - [1116] = 1067, - [1117] = 1061, - [1118] = 1064, - [1119] = 1068, - [1120] = 1066, + [1104] = 1068, + [1105] = 1072, + [1106] = 1068, + [1107] = 1107, + [1108] = 1070, + [1109] = 1051, + [1110] = 1110, + [1111] = 1049, + [1112] = 1066, + [1113] = 1069, + [1114] = 1072, + [1115] = 1100, + [1116] = 1071, + [1117] = 1117, + [1118] = 1065, + [1119] = 1049, + [1120] = 1051, [1121] = 1121, - [1122] = 1077, - [1123] = 1056, - [1124] = 1067, - [1125] = 1061, - [1126] = 1048, - [1127] = 1068, - [1128] = 1055, - [1129] = 1067, - [1130] = 1061, - [1131] = 1085, + [1122] = 1122, + [1123] = 1107, + [1124] = 1110, + [1125] = 1125, + [1126] = 1065, + [1127] = 1117, + [1128] = 1050, + [1129] = 1075, + [1130] = 1053, + [1131] = 1054, [1132] = 1052, - [1133] = 1101, - [1134] = 1087, - [1135] = 1089, + [1133] = 1133, + [1134] = 1073, + [1135] = 1049, [1136] = 1136, - [1137] = 1093, - [1138] = 1083, - [1139] = 1139, - [1140] = 1095, - [1141] = 1018, - [1142] = 1060, - [1143] = 954, - [1144] = 1144, - [1145] = 1145, - [1146] = 1146, - [1147] = 320, - [1148] = 1083, + [1137] = 1051, + [1138] = 1068, + [1139] = 1072, + [1140] = 1072, + [1141] = 1068, + [1142] = 1049, + [1143] = 1078, + [1144] = 1077, + [1145] = 1012, + [1146] = 1103, + [1147] = 1147, + [1148] = 1148, [1149] = 1149, [1150] = 1150, - [1151] = 1151, + [1151] = 329, [1152] = 1152, [1153] = 1153, [1154] = 1154, - [1155] = 1155, - [1156] = 1056, - [1157] = 1145, + [1155] = 1107, + [1156] = 1156, + [1157] = 1157, [1158] = 1158, [1159] = 1159, [1160] = 1160, [1161] = 1161, [1162] = 1162, - [1163] = 60, - [1164] = 1164, + [1163] = 1163, + [1164] = 65, [1165] = 1165, [1166] = 1166, - [1167] = 82, - [1168] = 1151, + [1167] = 1167, + [1168] = 1168, [1169] = 1169, - [1170] = 66, - [1171] = 76, - [1172] = 956, - [1173] = 952, - [1174] = 1174, - [1175] = 951, + [1170] = 1170, + [1171] = 80, + [1172] = 1172, + [1173] = 1173, + [1174] = 64, + [1175] = 77, [1176] = 1176, - [1177] = 942, - [1178] = 937, - [1179] = 1179, - [1180] = 1180, + [1177] = 1177, + [1178] = 958, + [1179] = 941, + [1180] = 939, [1181] = 1181, - [1182] = 1182, + [1182] = 937, [1183] = 1183, - [1184] = 945, - [1185] = 1185, - [1186] = 62, - [1187] = 64, - [1188] = 1188, + [1184] = 1184, + [1185] = 933, + [1186] = 1186, + [1187] = 1187, + [1188] = 916, [1189] = 1189, - [1190] = 946, - [1191] = 320, + [1190] = 67, + [1191] = 66, [1192] = 1192, - [1193] = 1193, - [1194] = 941, - [1195] = 939, + [1193] = 945, + [1194] = 1194, + [1195] = 329, [1196] = 1196, - [1197] = 934, - [1198] = 1179, + [1197] = 925, + [1198] = 1198, [1199] = 1199, - [1200] = 997, + [1200] = 1200, [1201] = 1201, [1202] = 1202, [1203] = 1203, [1204] = 1204, - [1205] = 1205, + [1205] = 929, [1206] = 1206, [1207] = 1207, - [1208] = 1161, + [1208] = 1208, [1209] = 1209, - [1210] = 1174, + [1210] = 1210, [1211] = 1211, - [1212] = 61, - [1213] = 950, - [1214] = 1153, - [1215] = 1215, + [1212] = 1212, + [1213] = 1198, + [1214] = 1214, + [1215] = 63, [1216] = 1216, - [1217] = 1217, - [1218] = 933, - [1219] = 1219, + [1217] = 927, + [1218] = 1218, + [1219] = 1147, [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 929, - [1224] = 953, - [1225] = 1217, + [1223] = 1223, + [1224] = 1224, + [1225] = 924, [1226] = 1226, - [1227] = 1227, + [1227] = 923, [1228] = 1228, - [1229] = 1229, - [1230] = 1230, + [1229] = 921, + [1230] = 1221, [1231] = 1231, [1232] = 1232, [1233] = 1233, - [1234] = 1234, - [1235] = 1235, - [1236] = 927, + [1234] = 955, + [1235] = 918, + [1236] = 1236, [1237] = 1237, - [1238] = 1238, - [1239] = 1160, + [1238] = 1204, + [1239] = 1239, [1240] = 1240, - [1241] = 925, - [1242] = 1161, - [1243] = 922, - [1244] = 1185, - [1245] = 935, - [1246] = 914, + [1241] = 1241, + [1242] = 1242, + [1243] = 948, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, [1247] = 1247, - [1248] = 1207, - [1249] = 1199, - [1250] = 915, - [1251] = 1209, - [1252] = 917, - [1253] = 1206, - [1254] = 955, - [1255] = 1255, - [1256] = 1256, - [1257] = 1211, - [1258] = 1258, - [1259] = 1259, + [1248] = 1248, + [1249] = 944, + [1250] = 1250, + [1251] = 1251, + [1252] = 1252, + [1253] = 1209, + [1254] = 917, + [1255] = 946, + [1256] = 1181, + [1257] = 1153, + [1258] = 1117, + [1259] = 1183, [1260] = 1260, - [1261] = 1261, + [1261] = 1154, [1262] = 1262, [1263] = 1263, - [1264] = 1264, - [1265] = 912, - [1266] = 1266, - [1267] = 916, - [1268] = 1268, - [1269] = 918, + [1264] = 1003, + [1265] = 1265, + [1266] = 1248, + [1267] = 1267, + [1268] = 1232, + [1269] = 1269, [1270] = 1270, - [1271] = 923, - [1272] = 931, - [1273] = 1273, + [1271] = 1271, + [1272] = 1212, + [1273] = 1245, [1274] = 1274, - [1275] = 932, + [1275] = 1250, [1276] = 1276, - [1277] = 1277, - [1278] = 1169, - [1279] = 1166, + [1277] = 1212, + [1278] = 1236, + [1279] = 1211, [1280] = 1280, [1281] = 1281, - [1282] = 1149, + [1282] = 1282, [1283] = 1283, - [1284] = 1284, - [1285] = 1176, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1180, - [1294] = 1277, + [1284] = 1282, + [1285] = 1285, + [1286] = 950, + [1287] = 1281, + [1288] = 951, + [1289] = 1265, + [1290] = 943, + [1291] = 1285, + [1292] = 1283, + [1293] = 1293, + [1294] = 956, [1295] = 1295, - [1296] = 1183, - [1297] = 1255, - [1298] = 1298, - [1299] = 1174, - [1300] = 1300, - [1301] = 1298, - [1302] = 1291, - [1303] = 1289, - [1304] = 1192, - [1305] = 1305, - [1306] = 1188, - [1307] = 1181, - [1308] = 1308, - [1309] = 1309, - [1310] = 1158, - [1311] = 1287, - [1312] = 1155, - [1313] = 1153, - [1314] = 1238, - [1315] = 1315, - [1316] = 1316, - [1317] = 1196, - [1318] = 1274, - [1319] = 1283, - [1320] = 1320, - [1321] = 1305, - [1322] = 944, - [1323] = 1323, - [1324] = 1229, - [1325] = 1233, - [1326] = 1270, - [1327] = 1234, - [1328] = 1235, - [1329] = 1237, - [1330] = 1144, - [1331] = 1264, - [1332] = 1268, - [1333] = 1284, - [1334] = 1286, - [1335] = 1335, - [1336] = 1336, - [1337] = 1337, + [1296] = 1251, + [1297] = 1206, + [1298] = 1231, + [1299] = 942, + [1300] = 928, + [1301] = 1301, + [1302] = 1148, + [1303] = 1293, + [1304] = 1244, + [1305] = 938, + [1306] = 1306, + [1307] = 1216, + [1308] = 936, + [1309] = 1218, + [1310] = 1260, + [1311] = 1222, + [1312] = 1152, + [1313] = 1252, + [1314] = 1301, + [1315] = 1237, + [1316] = 1149, + [1317] = 932, + [1318] = 1200, + [1319] = 931, + [1320] = 1199, + [1321] = 1198, + [1322] = 1322, + [1323] = 1192, + [1324] = 1242, + [1325] = 1325, + [1326] = 1157, + [1327] = 1327, + [1328] = 1158, + [1329] = 1329, + [1330] = 1204, + [1331] = 1176, + [1332] = 935, + [1333] = 1333, + [1334] = 1159, + [1335] = 1322, + [1336] = 1208, + [1337] = 1224, [1338] = 1338, [1339] = 1339, [1340] = 1340, [1341] = 1341, [1342] = 1342, [1343] = 1343, - [1344] = 1337, - [1345] = 1337, - [1346] = 1346, + [1344] = 1344, + [1345] = 1340, + [1346] = 873, [1347] = 1347, [1348] = 1348, - [1349] = 1349, - [1350] = 1350, + [1349] = 1341, + [1350] = 1341, [1351] = 1351, [1352] = 1352, [1353] = 1353, @@ -3678,34 +3685,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1362] = 1362, [1363] = 1363, [1364] = 1364, - [1365] = 863, - [1366] = 1364, + [1365] = 1365, + [1366] = 1362, [1367] = 1367, [1368] = 1368, [1369] = 1369, - [1370] = 1370, + [1370] = 1362, [1371] = 1371, - [1372] = 63, - [1373] = 1347, - [1374] = 1340, - [1375] = 1338, - [1376] = 1335, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1376, [1377] = 1377, [1378] = 1378, - [1379] = 1358, - [1380] = 1339, - [1381] = 1341, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, [1382] = 1382, [1383] = 1383, - [1384] = 1369, + [1384] = 1384, [1385] = 1385, [1386] = 1386, [1387] = 1387, - [1388] = 1388, - [1389] = 1353, - [1390] = 1336, - [1391] = 1391, - [1392] = 1391, + [1388] = 1386, + [1389] = 1389, + [1390] = 1390, + [1391] = 1382, + [1392] = 1392, [1393] = 1393, [1394] = 1394, [1395] = 1395, @@ -3713,119 +3720,119 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1397] = 1397, [1398] = 1398, [1399] = 1399, - [1400] = 1400, + [1400] = 1390, [1401] = 1401, [1402] = 1402, - [1403] = 1403, - [1404] = 1364, + [1403] = 1394, + [1404] = 1404, [1405] = 1405, - [1406] = 1361, + [1406] = 1406, [1407] = 1407, - [1408] = 1395, - [1409] = 1351, - [1410] = 1356, - [1411] = 1393, - [1412] = 1412, - [1413] = 1382, - [1414] = 1414, - [1415] = 1415, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 62, + [1412] = 1393, + [1413] = 1413, + [1414] = 1355, + [1415] = 1357, [1416] = 1416, [1417] = 1417, - [1418] = 1418, - [1419] = 1416, + [1418] = 1389, + [1419] = 1409, [1420] = 1420, [1421] = 1421, - [1422] = 1417, - [1423] = 1412, - [1424] = 1414, + [1422] = 1421, + [1423] = 1423, + [1424] = 1424, [1425] = 1425, - [1426] = 1426, - [1427] = 1393, - [1428] = 1428, - [1429] = 1414, - [1430] = 1391, - [1431] = 1382, - [1432] = 1432, + [1426] = 1424, + [1427] = 1424, + [1428] = 1423, + [1429] = 1429, + [1430] = 1421, + [1431] = 1374, + [1432] = 1397, [1433] = 1433, - [1434] = 1417, - [1435] = 1416, - [1436] = 1436, + [1434] = 1409, + [1435] = 1395, + [1436] = 1423, [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1397, - [1441] = 1441, - [1442] = 1412, + [1438] = 1395, + [1439] = 1416, + [1440] = 1440, + [1441] = 1395, + [1442] = 1389, [1443] = 1443, - [1444] = 1383, - [1445] = 1445, - [1446] = 1391, - [1447] = 1393, - [1448] = 1382, - [1449] = 1371, - [1450] = 1407, - [1451] = 1382, - [1452] = 1356, - [1453] = 1417, - [1454] = 1377, - [1455] = 1455, - [1456] = 1391, - [1457] = 1393, - [1458] = 1393, + [1444] = 1375, + [1445] = 1357, + [1446] = 1446, + [1447] = 1355, + [1448] = 1397, + [1449] = 1397, + [1450] = 1450, + [1451] = 1420, + [1452] = 1452, + [1453] = 1389, + [1454] = 1347, + [1455] = 1410, + [1456] = 1389, + [1457] = 1381, + [1458] = 1421, [1459] = 1459, - [1460] = 1351, - [1461] = 1391, - [1462] = 1462, - [1463] = 1363, - [1464] = 1464, - [1465] = 1465, - [1466] = 1441, - [1467] = 1403, - [1468] = 1343, - [1469] = 1382, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 1473, + [1460] = 1363, + [1461] = 1395, + [1462] = 1343, + [1463] = 1397, + [1464] = 1351, + [1465] = 1397, + [1466] = 1395, + [1467] = 1389, + [1468] = 1361, + [1469] = 1469, + [1470] = 1358, + [1471] = 1402, + [1472] = 1359, + [1473] = 1360, [1474] = 1474, [1475] = 1475, [1476] = 1476, [1477] = 1477, [1478] = 1478, - [1479] = 1475, - [1480] = 1480, + [1479] = 1479, + [1480] = 1476, [1481] = 1481, - [1482] = 1482, + [1482] = 1476, [1483] = 1483, - [1484] = 1475, + [1484] = 1484, [1485] = 1485, [1486] = 1486, - [1487] = 1487, + [1487] = 1478, [1488] = 1488, - [1489] = 1473, + [1489] = 1489, [1490] = 1490, [1491] = 1491, - [1492] = 1475, + [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, - [1496] = 1480, - [1497] = 1497, - [1498] = 1498, + [1496] = 1496, + [1497] = 1476, + [1498] = 1477, [1499] = 1499, [1500] = 1500, [1501] = 1501, - [1502] = 1475, + [1502] = 1502, [1503] = 1503, - [1504] = 1473, - [1505] = 1472, + [1504] = 1504, + [1505] = 1505, [1506] = 1506, - [1507] = 1475, + [1507] = 1476, [1508] = 1508, [1509] = 1509, [1510] = 1510, [1511] = 1511, - [1512] = 1512, + [1512] = 1476, [1513] = 1513, [1514] = 1514, [1515] = 1515, @@ -3835,117 +3842,123 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1519] = 1519, [1520] = 1520, [1521] = 1521, - [1522] = 1519, - [1523] = 1475, - [1524] = 1524, + [1522] = 1476, + [1523] = 1478, + [1524] = 1478, [1525] = 1525, - [1526] = 1473, - [1527] = 879, - [1528] = 1528, + [1526] = 1526, + [1527] = 1478, + [1528] = 1496, [1529] = 1529, - [1530] = 1473, + [1530] = 1530, [1531] = 1531, - [1532] = 1474, - [1533] = 1518, + [1532] = 1492, + [1533] = 1533, [1534] = 1534, - [1535] = 1498, - [1536] = 1475, - [1537] = 1487, - [1538] = 1470, - [1539] = 1483, - [1540] = 1482, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 1538, + [1539] = 1539, + [1540] = 1476, [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1490, - [1545] = 1493, - [1546] = 1546, - [1547] = 1515, - [1548] = 1548, - [1549] = 1529, - [1550] = 1524, - [1551] = 1543, - [1552] = 1517, + [1542] = 1509, + [1543] = 1505, + [1544] = 1504, + [1545] = 1503, + [1546] = 1538, + [1547] = 898, + [1548] = 1493, + [1549] = 1520, + [1550] = 899, + [1551] = 1551, + [1552] = 1474, [1553] = 1553, - [1554] = 1554, - [1555] = 1495, - [1556] = 1556, - [1557] = 1494, + [1554] = 1484, + [1555] = 1555, + [1556] = 1491, + [1557] = 1557, [1558] = 1558, [1559] = 1559, - [1560] = 1556, + [1560] = 1534, [1561] = 1561, - [1562] = 1498, - [1563] = 1563, - [1564] = 1564, - [1565] = 1501, - [1566] = 1566, - [1567] = 1528, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, + [1562] = 1562, + [1563] = 1519, + [1564] = 885, + [1565] = 1565, + [1566] = 1536, + [1567] = 1567, + [1568] = 1533, + [1569] = 1551, + [1570] = 1501, + [1571] = 1555, [1572] = 1572, [1573] = 1573, - [1574] = 1574, - [1575] = 1572, - [1576] = 1553, + [1574] = 1496, + [1575] = 1499, + [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1499, + [1579] = 1572, [1580] = 1580, [1581] = 1581, [1582] = 1582, - [1583] = 1531, + [1583] = 1583, [1584] = 1584, - [1585] = 1521, - [1586] = 1520, - [1587] = 1520, - [1588] = 1521, - [1589] = 1589, + [1585] = 1585, + [1586] = 1573, + [1587] = 1580, + [1588] = 1562, + [1589] = 1581, [1590] = 1590, - [1591] = 1529, - [1592] = 1472, - [1593] = 1499, - [1594] = 1554, - [1595] = 1561, - [1596] = 1580, - [1597] = 1597, - [1598] = 1512, - [1599] = 1520, - [1600] = 1511, - [1601] = 1573, - [1602] = 1529, + [1591] = 1591, + [1592] = 1526, + [1593] = 1525, + [1594] = 1526, + [1595] = 1525, + [1596] = 1494, + [1597] = 1534, + [1598] = 1486, + [1599] = 1477, + [1600] = 1584, + [1601] = 1585, + [1602] = 1602, [1603] = 1603, - [1604] = 1520, - [1605] = 1510, - [1606] = 1529, - [1607] = 1497, - [1608] = 1529, - [1609] = 1609, - [1610] = 1509, - [1611] = 1546, - [1612] = 875, - [1613] = 1569, - [1614] = 1568, - [1615] = 1566, - [1616] = 1508, - [1617] = 1617, - [1618] = 876, - [1619] = 1541, - [1620] = 1617, - [1621] = 1558, - [1622] = 1570, - [1623] = 1574, - [1624] = 1568, - [1625] = 1566, - [1626] = 1566, - [1627] = 1566, - [1628] = 1491, - [1629] = 1609, - [1630] = 1488, - [1631] = 1486, - [1632] = 1485, + [1604] = 1517, + [1605] = 1525, + [1606] = 1516, + [1607] = 1607, + [1608] = 1534, + [1609] = 1582, + [1610] = 1525, + [1611] = 1515, + [1612] = 1534, + [1613] = 1485, + [1614] = 1534, + [1615] = 1615, + [1616] = 1514, + [1617] = 1488, + [1618] = 1495, + [1619] = 1578, + [1620] = 1577, + [1621] = 1576, + [1622] = 1513, + [1623] = 1623, + [1624] = 1529, + [1625] = 1553, + [1626] = 1583, + [1627] = 1627, + [1628] = 1483, + [1629] = 1501, + [1630] = 1577, + [1631] = 1576, + [1632] = 1576, + [1633] = 1576, + [1634] = 1518, + [1635] = 1615, + [1636] = 1510, + [1637] = 1508, + [1638] = 1506, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3971,7 +3984,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 360, '/', 331, '0', 388, - ':', 262, + ':', 260, ';', 254, '<', 415, '=', 265, @@ -4027,7 +4040,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 360, '/', 331, '0', 388, - ':', 262, + ':', 260, ';', 254, '<', 323, '=', 265, @@ -4081,7 +4094,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 359, '/', 331, '0', 388, - ':', 262, + ':', 260, ';', 254, '<', 323, '=', 264, @@ -4211,7 +4224,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 328, '/', 62, '0', 388, - ':', 262, + ':', 260, ';', 254, '<', 322, '=', 263, @@ -4321,7 +4334,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ',', 277, '-', 91, '/', 62, - ':', 262, + ':', 260, ';', 254, '<', 415, '=', 263, @@ -4539,7 +4552,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 329, '.', 359, '/', 331, - ':', 261, + ':', 259, '<', 323, '=', 265, '>', 325, @@ -4933,7 +4946,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ')', 293, ',', 277, '/', 62, - ':', 261, + ':', 259, ';', 254, '<', 322, '=', 263, @@ -5386,7 +5399,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(581); END_STATE(); case 187: - if (lookahead == 't') ADVANCE(259); + if (lookahead == 't') ADVANCE(261); END_STATE(); case 188: if (lookahead == 't') ADVANCE(255); @@ -5613,7 +5626,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 360, '/', 331, '0', 388, - ':', 262, + ':', 260, ';', 254, '<', 415, '=', 265, @@ -5772,7 +5785,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 328, '/', 62, '0', 388, - ':', 262, + ':', 260, ';', 254, '<', 415, '=', 263, @@ -5853,22 +5866,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); case 259: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 260: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(286); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 262: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 262: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(286); - END_STATE(); case 263: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); @@ -7722,7 +7735,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(260); + if (lookahead == 't') ADVANCE(262); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -8000,8 +8013,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [19] = {.lex_state = 247}, [20] = {.lex_state = 247}, [21] = {.lex_state = 2}, - [22] = {.lex_state = 1}, - [23] = {.lex_state = 2}, + [22] = {.lex_state = 2}, + [23] = {.lex_state = 1}, [24] = {.lex_state = 1}, [25] = {.lex_state = 1}, [26] = {.lex_state = 1}, @@ -8067,12 +8080,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [86] = {.lex_state = 246}, [87] = {.lex_state = 5}, [88] = {.lex_state = 245}, - [89] = {.lex_state = 245}, - [90] = {.lex_state = 5}, - [91] = {.lex_state = 5}, + [89] = {.lex_state = 5}, + [90] = {.lex_state = 245}, + [91] = {.lex_state = 245}, [92] = {.lex_state = 5}, [93] = {.lex_state = 5}, - [94] = {.lex_state = 245}, + [94] = {.lex_state = 5}, [95] = {.lex_state = 5}, [96] = {.lex_state = 5}, [97] = {.lex_state = 5}, @@ -8096,16 +8109,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [115] = {.lex_state = 5}, [116] = {.lex_state = 5}, [117] = {.lex_state = 5}, - [118] = {.lex_state = 6}, + [118] = {.lex_state = 5}, [119] = {.lex_state = 6}, [120] = {.lex_state = 5}, [121] = {.lex_state = 6}, - [122] = {.lex_state = 6}, - [123] = {.lex_state = 5}, - [124] = {.lex_state = 5}, - [125] = {.lex_state = 6}, + [122] = {.lex_state = 5}, + [123] = {.lex_state = 6}, + [124] = {.lex_state = 6}, + [125] = {.lex_state = 5}, [126] = {.lex_state = 6}, - [127] = {.lex_state = 5}, + [127] = {.lex_state = 6}, [128] = {.lex_state = 6}, [129] = {.lex_state = 6}, [130] = {.lex_state = 5}, @@ -8206,24 +8219,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 10}, [226] = {.lex_state = 10}, [227] = {.lex_state = 10}, - [228] = {.lex_state = 16}, - [229] = {.lex_state = 11}, - [230] = {.lex_state = 10}, - [231] = {.lex_state = 16}, - [232] = {.lex_state = 10}, - [233] = {.lex_state = 247}, + [228] = {.lex_state = 10}, + [229] = {.lex_state = 10}, + [230] = {.lex_state = 11}, + [231] = {.lex_state = 10}, + [232] = {.lex_state = 16}, + [233] = {.lex_state = 10}, [234] = {.lex_state = 10}, [235] = {.lex_state = 247}, - [236] = {.lex_state = 16}, - [237] = {.lex_state = 11}, - [238] = {.lex_state = 11}, + [236] = {.lex_state = 247}, + [237] = {.lex_state = 16}, + [238] = {.lex_state = 16}, [239] = {.lex_state = 11}, - [240] = {.lex_state = 10}, - [241] = {.lex_state = 16}, - [242] = {.lex_state = 247}, - [243] = {.lex_state = 10}, + [240] = {.lex_state = 11}, + [241] = {.lex_state = 247}, + [242] = {.lex_state = 11}, + [243] = {.lex_state = 16}, [244] = {.lex_state = 12}, - [245] = {.lex_state = 16}, + [245] = {.lex_state = 12}, [246] = {.lex_state = 12}, [247] = {.lex_state = 12}, [248] = {.lex_state = 12}, @@ -8234,7 +8247,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [253] = {.lex_state = 12}, [254] = {.lex_state = 12}, [255] = {.lex_state = 12}, - [256] = {.lex_state = 12}, + [256] = {.lex_state = 16}, [257] = {.lex_state = 12}, [258] = {.lex_state = 247}, [259] = {.lex_state = 247}, @@ -8315,11 +8328,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [334] = {.lex_state = 247}, [335] = {.lex_state = 247}, [336] = {.lex_state = 247}, - [337] = {.lex_state = 15}, - [338] = {.lex_state = 16}, - [339] = {.lex_state = 15}, - [340] = {.lex_state = 16}, - [341] = {.lex_state = 15}, + [337] = {.lex_state = 247}, + [338] = {.lex_state = 15}, + [339] = {.lex_state = 16}, + [340] = {.lex_state = 15}, + [341] = {.lex_state = 16}, [342] = {.lex_state = 15}, [343] = {.lex_state = 15}, [344] = {.lex_state = 15}, @@ -8358,12 +8371,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [377] = {.lex_state = 15}, [378] = {.lex_state = 15}, [379] = {.lex_state = 15}, - [380] = {.lex_state = 15}, + [380] = {.lex_state = 5}, [381] = {.lex_state = 15}, [382] = {.lex_state = 15}, [383] = {.lex_state = 15}, [384] = {.lex_state = 15}, - [385] = {.lex_state = 5}, + [385] = {.lex_state = 15}, [386] = {.lex_state = 15}, [387] = {.lex_state = 15}, [388] = {.lex_state = 15}, @@ -8372,50 +8385,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [391] = {.lex_state = 15}, [392] = {.lex_state = 15}, [393] = {.lex_state = 15}, - [394] = {.lex_state = 17}, + [394] = {.lex_state = 15}, [395] = {.lex_state = 17}, [396] = {.lex_state = 17}, [397] = {.lex_state = 17}, [398] = {.lex_state = 17}, [399] = {.lex_state = 17}, - [400] = {.lex_state = 5}, + [400] = {.lex_state = 17}, [401] = {.lex_state = 17}, [402] = {.lex_state = 17}, [403] = {.lex_state = 17}, - [404] = {.lex_state = 17}, - [405] = {.lex_state = 5}, - [406] = {.lex_state = 4}, + [404] = {.lex_state = 5}, + [405] = {.lex_state = 17}, + [406] = {.lex_state = 5}, [407] = {.lex_state = 4}, - [408] = {.lex_state = 2}, + [408] = {.lex_state = 4}, [409] = {.lex_state = 4}, [410] = {.lex_state = 4}, - [411] = {.lex_state = 4}, + [411] = {.lex_state = 2}, [412] = {.lex_state = 4}, [413] = {.lex_state = 4}, - [414] = {.lex_state = 2}, - [415] = {.lex_state = 4}, + [414] = {.lex_state = 4}, + [415] = {.lex_state = 2}, [416] = {.lex_state = 2}, - [417] = {.lex_state = 2}, + [417] = {.lex_state = 4}, [418] = {.lex_state = 2}, [419] = {.lex_state = 2}, - [420] = {.lex_state = 56}, - [421] = {.lex_state = 4}, - [422] = {.lex_state = 2}, - [423] = {.lex_state = 2}, - [424] = {.lex_state = 4}, - [425] = {.lex_state = 2}, + [420] = {.lex_state = 2}, + [421] = {.lex_state = 2}, + [422] = {.lex_state = 56}, + [423] = {.lex_state = 56}, + [424] = {.lex_state = 2}, + [425] = {.lex_state = 56}, [426] = {.lex_state = 2}, [427] = {.lex_state = 2}, [428] = {.lex_state = 2}, [429] = {.lex_state = 2}, - [430] = {.lex_state = 4}, - [431] = {.lex_state = 2}, + [430] = {.lex_state = 2}, + [431] = {.lex_state = 56}, [432] = {.lex_state = 2}, - [433] = {.lex_state = 56}, + [433] = {.lex_state = 4}, [434] = {.lex_state = 2}, - [435] = {.lex_state = 56}, - [436] = {.lex_state = 2}, - [437] = {.lex_state = 56}, + [435] = {.lex_state = 4}, + [436] = {.lex_state = 4}, + [437] = {.lex_state = 2}, [438] = {.lex_state = 2}, [439] = {.lex_state = 2}, [440] = {.lex_state = 2}, @@ -8465,22 +8478,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [484] = {.lex_state = 2}, [485] = {.lex_state = 2}, [486] = {.lex_state = 2}, - [487] = {.lex_state = 10}, + [487] = {.lex_state = 2}, [488] = {.lex_state = 10}, [489] = {.lex_state = 10}, [490] = {.lex_state = 10}, [491] = {.lex_state = 10}, - [492] = {.lex_state = 3}, - [493] = {.lex_state = 2}, - [494] = {.lex_state = 10}, + [492] = {.lex_state = 10}, + [493] = {.lex_state = 10}, + [494] = {.lex_state = 15}, [495] = {.lex_state = 10}, [496] = {.lex_state = 10}, [497] = {.lex_state = 10}, [498] = {.lex_state = 10}, - [499] = {.lex_state = 10}, + [499] = {.lex_state = 2}, [500] = {.lex_state = 10}, [501] = {.lex_state = 10}, - [502] = {.lex_state = 10}, + [502] = {.lex_state = 2}, [503] = {.lex_state = 10}, [504] = {.lex_state = 10}, [505] = {.lex_state = 10}, @@ -8494,9 +8507,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [513] = {.lex_state = 10}, [514] = {.lex_state = 10}, [515] = {.lex_state = 10}, - [516] = {.lex_state = 15}, + [516] = {.lex_state = 10}, [517] = {.lex_state = 10}, - [518] = {.lex_state = 10}, + [518] = {.lex_state = 2}, [519] = {.lex_state = 10}, [520] = {.lex_state = 10}, [521] = {.lex_state = 10}, @@ -8506,13 +8519,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [525] = {.lex_state = 10}, [526] = {.lex_state = 10}, [527] = {.lex_state = 10}, - [528] = {.lex_state = 2}, + [528] = {.lex_state = 10}, [529] = {.lex_state = 10}, [530] = {.lex_state = 10}, [531] = {.lex_state = 10}, [532] = {.lex_state = 10}, [533] = {.lex_state = 10}, - [534] = {.lex_state = 2}, + [534] = {.lex_state = 10}, [535] = {.lex_state = 10}, [536] = {.lex_state = 10}, [537] = {.lex_state = 10}, @@ -8522,19 +8535,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [541] = {.lex_state = 10}, [542] = {.lex_state = 10}, [543] = {.lex_state = 10}, - [544] = {.lex_state = 2}, + [544] = {.lex_state = 10}, [545] = {.lex_state = 10}, [546] = {.lex_state = 10}, [547] = {.lex_state = 10}, [548] = {.lex_state = 10}, - [549] = {.lex_state = 10}, + [549] = {.lex_state = 2}, [550] = {.lex_state = 10}, [551] = {.lex_state = 10}, [552] = {.lex_state = 10}, [553] = {.lex_state = 10}, [554] = {.lex_state = 10}, [555] = {.lex_state = 10}, - [556] = {.lex_state = 10}, + [556] = {.lex_state = 3}, [557] = {.lex_state = 10}, [558] = {.lex_state = 10}, [559] = {.lex_state = 10}, @@ -8549,192 +8562,192 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [568] = {.lex_state = 10}, [569] = {.lex_state = 10}, [570] = {.lex_state = 10}, - [571] = {.lex_state = 2}, - [572] = {.lex_state = 55}, + [571] = {.lex_state = 10}, + [572] = {.lex_state = 10}, [573] = {.lex_state = 3}, - [574] = {.lex_state = 2}, + [574] = {.lex_state = 20}, [575] = {.lex_state = 2}, - [576] = {.lex_state = 3}, + [576] = {.lex_state = 2}, [577] = {.lex_state = 2}, - [578] = {.lex_state = 3}, - [579] = {.lex_state = 20}, + [578] = {.lex_state = 20}, + [579] = {.lex_state = 3}, [580] = {.lex_state = 20}, - [581] = {.lex_state = 2}, - [582] = {.lex_state = 20}, - [583] = {.lex_state = 20}, - [584] = {.lex_state = 20}, - [585] = {.lex_state = 55}, - [586] = {.lex_state = 20}, - [587] = {.lex_state = 20}, + [581] = {.lex_state = 55}, + [582] = {.lex_state = 55}, + [583] = {.lex_state = 2}, + [584] = {.lex_state = 2}, + [585] = {.lex_state = 3}, + [586] = {.lex_state = 2}, + [587] = {.lex_state = 3}, [588] = {.lex_state = 2}, - [589] = {.lex_state = 2}, - [590] = {.lex_state = 3}, - [591] = {.lex_state = 55}, - [592] = {.lex_state = 2}, - [593] = {.lex_state = 55}, - [594] = {.lex_state = 15}, - [595] = {.lex_state = 55}, - [596] = {.lex_state = 3}, - [597] = {.lex_state = 55}, - [598] = {.lex_state = 55}, + [589] = {.lex_state = 20}, + [590] = {.lex_state = 55}, + [591] = {.lex_state = 20}, + [592] = {.lex_state = 20}, + [593] = {.lex_state = 20}, + [594] = {.lex_state = 55}, + [595] = {.lex_state = 15}, + [596] = {.lex_state = 14}, + [597] = {.lex_state = 2}, + [598] = {.lex_state = 2}, [599] = {.lex_state = 55}, - [600] = {.lex_state = 2}, - [601] = {.lex_state = 55}, + [600] = {.lex_state = 3}, + [601] = {.lex_state = 3}, [602] = {.lex_state = 55}, [603] = {.lex_state = 55}, [604] = {.lex_state = 2}, [605] = {.lex_state = 2}, - [606] = {.lex_state = 55}, - [607] = {.lex_state = 55}, - [608] = {.lex_state = 55}, + [606] = {.lex_state = 20}, + [607] = {.lex_state = 2}, + [608] = {.lex_state = 2}, [609] = {.lex_state = 55}, - [610] = {.lex_state = 15}, - [611] = {.lex_state = 55}, + [610] = {.lex_state = 55}, + [611] = {.lex_state = 2}, [612] = {.lex_state = 2}, - [613] = {.lex_state = 55}, - [614] = {.lex_state = 3}, + [613] = {.lex_state = 2}, + [614] = {.lex_state = 55}, [615] = {.lex_state = 55}, - [616] = {.lex_state = 2}, - [617] = {.lex_state = 55}, - [618] = {.lex_state = 3}, + [616] = {.lex_state = 55}, + [617] = {.lex_state = 3}, + [618] = {.lex_state = 55}, [619] = {.lex_state = 55}, - [620] = {.lex_state = 55}, + [620] = {.lex_state = 2}, [621] = {.lex_state = 2}, [622] = {.lex_state = 2}, - [623] = {.lex_state = 2}, - [624] = {.lex_state = 2}, - [625] = {.lex_state = 2}, - [626] = {.lex_state = 2}, - [627] = {.lex_state = 2}, - [628] = {.lex_state = 55}, - [629] = {.lex_state = 55}, + [623] = {.lex_state = 55}, + [624] = {.lex_state = 55}, + [625] = {.lex_state = 55}, + [626] = {.lex_state = 20}, + [627] = {.lex_state = 55}, + [628] = {.lex_state = 2}, + [629] = {.lex_state = 2}, [630] = {.lex_state = 55}, [631] = {.lex_state = 2}, [632] = {.lex_state = 2}, - [633] = {.lex_state = 2}, + [633] = {.lex_state = 55}, [634] = {.lex_state = 2}, [635] = {.lex_state = 2}, - [636] = {.lex_state = 20}, + [636] = {.lex_state = 2}, [637] = {.lex_state = 2}, [638] = {.lex_state = 2}, - [639] = {.lex_state = 55}, - [640] = {.lex_state = 55}, + [639] = {.lex_state = 2}, + [640] = {.lex_state = 2}, [641] = {.lex_state = 2}, - [642] = {.lex_state = 14}, - [643] = {.lex_state = 2}, + [642] = {.lex_state = 20}, + [643] = {.lex_state = 55}, [644] = {.lex_state = 2}, - [645] = {.lex_state = 3}, - [646] = {.lex_state = 3}, - [647] = {.lex_state = 2}, - [648] = {.lex_state = 55}, - [649] = {.lex_state = 55}, + [645] = {.lex_state = 55}, + [646] = {.lex_state = 55}, + [647] = {.lex_state = 55}, + [648] = {.lex_state = 2}, + [649] = {.lex_state = 3}, [650] = {.lex_state = 55}, - [651] = {.lex_state = 20}, + [651] = {.lex_state = 2}, [652] = {.lex_state = 55}, [653] = {.lex_state = 2}, [654] = {.lex_state = 2}, - [655] = {.lex_state = 55}, + [655] = {.lex_state = 2}, [656] = {.lex_state = 55}, - [657] = {.lex_state = 2}, - [658] = {.lex_state = 2}, + [657] = {.lex_state = 55}, + [658] = {.lex_state = 3}, [659] = {.lex_state = 2}, - [660] = {.lex_state = 2}, - [661] = {.lex_state = 2}, - [662] = {.lex_state = 20}, - [663] = {.lex_state = 2}, - [664] = {.lex_state = 3}, - [665] = {.lex_state = 3}, - [666] = {.lex_state = 55}, + [660] = {.lex_state = 55}, + [661] = {.lex_state = 55}, + [662] = {.lex_state = 55}, + [663] = {.lex_state = 55}, + [664] = {.lex_state = 55}, + [665] = {.lex_state = 2}, + [666] = {.lex_state = 3}, [667] = {.lex_state = 3}, - [668] = {.lex_state = 2}, - [669] = {.lex_state = 20}, + [668] = {.lex_state = 20}, + [669] = {.lex_state = 3}, [670] = {.lex_state = 3}, - [671] = {.lex_state = 55}, + [671] = {.lex_state = 2}, [672] = {.lex_state = 3}, [673] = {.lex_state = 3}, [674] = {.lex_state = 55}, [675] = {.lex_state = 2}, - [676] = {.lex_state = 2}, + [676] = {.lex_state = 15}, [677] = {.lex_state = 2}, - [678] = {.lex_state = 2}, + [678] = {.lex_state = 55}, [679] = {.lex_state = 2}, - [680] = {.lex_state = 55}, - [681] = {.lex_state = 55}, + [680] = {.lex_state = 2}, + [681] = {.lex_state = 2}, [682] = {.lex_state = 2}, [683] = {.lex_state = 2}, [684] = {.lex_state = 55}, [685] = {.lex_state = 2}, - [686] = {.lex_state = 16}, - [687] = {.lex_state = 2}, - [688] = {.lex_state = 55}, - [689] = {.lex_state = 2}, + [686] = {.lex_state = 55}, + [687] = {.lex_state = 55}, + [688] = {.lex_state = 2}, + [689] = {.lex_state = 55}, [690] = {.lex_state = 2}, - [691] = {.lex_state = 2}, + [691] = {.lex_state = 55}, [692] = {.lex_state = 55}, [693] = {.lex_state = 55}, [694] = {.lex_state = 2}, - [695] = {.lex_state = 2}, - [696] = {.lex_state = 3}, - [697] = {.lex_state = 2}, + [695] = {.lex_state = 16}, + [696] = {.lex_state = 2}, + [697] = {.lex_state = 55}, [698] = {.lex_state = 2}, [699] = {.lex_state = 2}, [700] = {.lex_state = 2}, [701] = {.lex_state = 2}, - [702] = {.lex_state = 2}, - [703] = {.lex_state = 2}, - [704] = {.lex_state = 14}, + [702] = {.lex_state = 14}, + [703] = {.lex_state = 14}, + [704] = {.lex_state = 2}, [705] = {.lex_state = 2}, [706] = {.lex_state = 2}, [707] = {.lex_state = 3}, [708] = {.lex_state = 2}, - [709] = {.lex_state = 15}, - [710] = {.lex_state = 2}, - [711] = {.lex_state = 2}, + [709] = {.lex_state = 2}, + [710] = {.lex_state = 3}, + [711] = {.lex_state = 15}, [712] = {.lex_state = 2}, - [713] = {.lex_state = 3}, + [713] = {.lex_state = 2}, [714] = {.lex_state = 2}, - [715] = {.lex_state = 2}, - [716] = {.lex_state = 2}, - [717] = {.lex_state = 3}, - [718] = {.lex_state = 15}, + [715] = {.lex_state = 15}, + [716] = {.lex_state = 3}, + [717] = {.lex_state = 2}, + [718] = {.lex_state = 2}, [719] = {.lex_state = 2}, - [720] = {.lex_state = 2}, + [720] = {.lex_state = 15}, [721] = {.lex_state = 2}, [722] = {.lex_state = 3}, - [723] = {.lex_state = 3}, - [724] = {.lex_state = 3}, - [725] = {.lex_state = 3}, - [726] = {.lex_state = 2}, + [723] = {.lex_state = 2}, + [724] = {.lex_state = 2}, + [725] = {.lex_state = 2}, + [726] = {.lex_state = 3}, [727] = {.lex_state = 2}, [728] = {.lex_state = 2}, [729] = {.lex_state = 2}, [730] = {.lex_state = 2}, [731] = {.lex_state = 2}, [732] = {.lex_state = 2}, - [733] = {.lex_state = 14}, + [733] = {.lex_state = 2}, [734] = {.lex_state = 2}, - [735] = {.lex_state = 2}, - [736] = {.lex_state = 14}, + [735] = {.lex_state = 14}, + [736] = {.lex_state = 2}, [737] = {.lex_state = 2}, - [738] = {.lex_state = 3}, - [739] = {.lex_state = 2}, - [740] = {.lex_state = 3}, - [741] = {.lex_state = 2}, - [742] = {.lex_state = 2}, - [743] = {.lex_state = 2}, + [738] = {.lex_state = 2}, + [739] = {.lex_state = 3}, + [740] = {.lex_state = 2}, + [741] = {.lex_state = 15}, + [742] = {.lex_state = 3}, + [743] = {.lex_state = 3}, [744] = {.lex_state = 2}, - [745] = {.lex_state = 3}, + [745] = {.lex_state = 2}, [746] = {.lex_state = 3}, - [747] = {.lex_state = 2}, - [748] = {.lex_state = 15}, - [749] = {.lex_state = 3}, - [750] = {.lex_state = 2}, - [751] = {.lex_state = 2}, - [752] = {.lex_state = 3}, + [747] = {.lex_state = 3}, + [748] = {.lex_state = 2}, + [749] = {.lex_state = 2}, + [750] = {.lex_state = 3}, + [751] = {.lex_state = 3}, + [752] = {.lex_state = 2}, [753] = {.lex_state = 2}, - [754] = {.lex_state = 3}, + [754] = {.lex_state = 2}, [755] = {.lex_state = 3}, - [756] = {.lex_state = 2}, + [756] = {.lex_state = 3}, [757] = {.lex_state = 2}, [758] = {.lex_state = 3}, [759] = {.lex_state = 3}, @@ -8742,14 +8755,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [761] = {.lex_state = 2}, [762] = {.lex_state = 3}, [763] = {.lex_state = 2}, - [764] = {.lex_state = 15}, + [764] = {.lex_state = 2}, [765] = {.lex_state = 3}, [766] = {.lex_state = 3}, - [767] = {.lex_state = 2}, + [767] = {.lex_state = 3}, [768] = {.lex_state = 3}, - [769] = {.lex_state = 3}, - [770] = {.lex_state = 3}, - [771] = {.lex_state = 3}, + [769] = {.lex_state = 2}, + [770] = {.lex_state = 2}, + [771] = {.lex_state = 2}, [772] = {.lex_state = 3}, [773] = {.lex_state = 3}, [774] = {.lex_state = 3}, @@ -8761,10 +8774,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [780] = {.lex_state = 3}, [781] = {.lex_state = 3}, [782] = {.lex_state = 3}, - [783] = {.lex_state = 3}, - [784] = {.lex_state = 55}, + [783] = {.lex_state = 55}, + [784] = {.lex_state = 3}, [785] = {.lex_state = 3}, - [786] = {.lex_state = 15}, + [786] = {.lex_state = 3}, [787] = {.lex_state = 3}, [788] = {.lex_state = 3}, [789] = {.lex_state = 3}, @@ -8783,7 +8796,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [802] = {.lex_state = 3}, [803] = {.lex_state = 3}, [804] = {.lex_state = 3}, - [805] = {.lex_state = 3}, + [805] = {.lex_state = 15}, [806] = {.lex_state = 3}, [807] = {.lex_state = 3}, [808] = {.lex_state = 3}, @@ -8792,19 +8805,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [811] = {.lex_state = 3}, [812] = {.lex_state = 3}, [813] = {.lex_state = 3}, - [814] = {.lex_state = 55}, - [815] = {.lex_state = 55}, - [816] = {.lex_state = 55}, - [817] = {.lex_state = 55}, + [814] = {.lex_state = 3}, + [815] = {.lex_state = 3}, + [816] = {.lex_state = 3}, + [817] = {.lex_state = 3}, [818] = {.lex_state = 55}, [819] = {.lex_state = 55}, [820] = {.lex_state = 55}, - [821] = {.lex_state = 20}, - [822] = {.lex_state = 20}, + [821] = {.lex_state = 55}, + [822] = {.lex_state = 55}, [823] = {.lex_state = 55}, [824] = {.lex_state = 55}, - [825] = {.lex_state = 55}, - [826] = {.lex_state = 55}, + [825] = {.lex_state = 20}, + [826] = {.lex_state = 20}, [827] = {.lex_state = 55}, [828] = {.lex_state = 55}, [829] = {.lex_state = 55}, @@ -8815,447 +8828,447 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [834] = {.lex_state = 55}, [835] = {.lex_state = 55}, [836] = {.lex_state = 55}, - [837] = {.lex_state = 8}, - [838] = {.lex_state = 8}, - [839] = {.lex_state = 8}, - [840] = {.lex_state = 8}, - [841] = {.lex_state = 247}, - [842] = {.lex_state = 247}, - [843] = {.lex_state = 247}, - [844] = {.lex_state = 247}, + [837] = {.lex_state = 55}, + [838] = {.lex_state = 55}, + [839] = {.lex_state = 55}, + [840] = {.lex_state = 55}, + [841] = {.lex_state = 8}, + [842] = {.lex_state = 8}, + [843] = {.lex_state = 8}, + [844] = {.lex_state = 8}, [845] = {.lex_state = 247}, [846] = {.lex_state = 247}, [847] = {.lex_state = 247}, [848] = {.lex_state = 247}, [849] = {.lex_state = 247}, - [850] = {.lex_state = 8}, - [851] = {.lex_state = 58}, + [850] = {.lex_state = 247}, + [851] = {.lex_state = 247}, [852] = {.lex_state = 247}, - [853] = {.lex_state = 58}, - [854] = {.lex_state = 58}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 8}, - [857] = {.lex_state = 58}, - [858] = {.lex_state = 0}, - [859] = {.lex_state = 8}, - [860] = {.lex_state = 9}, - [861] = {.lex_state = 8}, + [853] = {.lex_state = 247}, + [854] = {.lex_state = 8}, + [855] = {.lex_state = 58}, + [856] = {.lex_state = 58}, + [857] = {.lex_state = 247}, + [858] = {.lex_state = 58}, + [859] = {.lex_state = 0}, + [860] = {.lex_state = 8}, + [861] = {.lex_state = 0}, [862] = {.lex_state = 8}, - [863] = {.lex_state = 0}, - [864] = {.lex_state = 21}, - [865] = {.lex_state = 8}, - [866] = {.lex_state = 247}, + [863] = {.lex_state = 58}, + [864] = {.lex_state = 247}, + [865] = {.lex_state = 9}, + [866] = {.lex_state = 8}, [867] = {.lex_state = 9}, [868] = {.lex_state = 8}, [869] = {.lex_state = 8}, [870] = {.lex_state = 21}, [871] = {.lex_state = 8}, - [872] = {.lex_state = 9}, - [873] = {.lex_state = 9}, - [874] = {.lex_state = 8}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 0}, + [872] = {.lex_state = 8}, + [873] = {.lex_state = 0}, + [874] = {.lex_state = 21}, + [875] = {.lex_state = 9}, + [876] = {.lex_state = 9}, [877] = {.lex_state = 8}, - [878] = {.lex_state = 21}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 22}, + [878] = {.lex_state = 8}, + [879] = {.lex_state = 247}, + [880] = {.lex_state = 247}, [881] = {.lex_state = 8}, - [882] = {.lex_state = 247}, - [883] = {.lex_state = 8}, + [882] = {.lex_state = 8}, + [883] = {.lex_state = 247}, [884] = {.lex_state = 8}, - [885] = {.lex_state = 22}, - [886] = {.lex_state = 8}, - [887] = {.lex_state = 21}, - [888] = {.lex_state = 8}, - [889] = {.lex_state = 247}, - [890] = {.lex_state = 8}, - [891] = {.lex_state = 21}, - [892] = {.lex_state = 21}, - [893] = {.lex_state = 247}, - [894] = {.lex_state = 8}, + [885] = {.lex_state = 0}, + [886] = {.lex_state = 22}, + [887] = {.lex_state = 8}, + [888] = {.lex_state = 21}, + [889] = {.lex_state = 21}, + [890] = {.lex_state = 22}, + [891] = {.lex_state = 8}, + [892] = {.lex_state = 8}, + [893] = {.lex_state = 8}, + [894] = {.lex_state = 21}, [895] = {.lex_state = 8}, - [896] = {.lex_state = 9}, - [897] = {.lex_state = 247}, - [898] = {.lex_state = 58}, - [899] = {.lex_state = 22}, - [900] = {.lex_state = 58}, - [901] = {.lex_state = 8}, - [902] = {.lex_state = 22}, - [903] = {.lex_state = 22}, + [896] = {.lex_state = 8}, + [897] = {.lex_state = 21}, + [898] = {.lex_state = 0}, + [899] = {.lex_state = 0}, + [900] = {.lex_state = 22}, + [901] = {.lex_state = 58}, + [902] = {.lex_state = 8}, + [903] = {.lex_state = 247}, [904] = {.lex_state = 22}, - [905] = {.lex_state = 22}, + [905] = {.lex_state = 58}, [906] = {.lex_state = 22}, [907] = {.lex_state = 22}, - [908] = {.lex_state = 58}, - [909] = {.lex_state = 21}, - [910] = {.lex_state = 247}, - [911] = {.lex_state = 22}, - [912] = {.lex_state = 58}, - [913] = {.lex_state = 22}, - [914] = {.lex_state = 58}, + [908] = {.lex_state = 22}, + [909] = {.lex_state = 22}, + [910] = {.lex_state = 22}, + [911] = {.lex_state = 9}, + [912] = {.lex_state = 247}, + [913] = {.lex_state = 21}, + [914] = {.lex_state = 22}, [915] = {.lex_state = 58}, [916] = {.lex_state = 58}, [917] = {.lex_state = 58}, [918] = {.lex_state = 58}, [919] = {.lex_state = 22}, - [920] = {.lex_state = 22}, - [921] = {.lex_state = 247}, - [922] = {.lex_state = 58}, + [920] = {.lex_state = 247}, + [921] = {.lex_state = 58}, + [922] = {.lex_state = 22}, [923] = {.lex_state = 58}, - [924] = {.lex_state = 247}, + [924] = {.lex_state = 58}, [925] = {.lex_state = 58}, - [926] = {.lex_state = 247}, + [926] = {.lex_state = 22}, [927] = {.lex_state = 58}, - [928] = {.lex_state = 22}, + [928] = {.lex_state = 58}, [929] = {.lex_state = 58}, - [930] = {.lex_state = 247}, + [930] = {.lex_state = 22}, [931] = {.lex_state = 58}, [932] = {.lex_state = 58}, [933] = {.lex_state = 58}, - [934] = {.lex_state = 58}, + [934] = {.lex_state = 22}, [935] = {.lex_state = 58}, - [936] = {.lex_state = 22}, + [936] = {.lex_state = 58}, [937] = {.lex_state = 58}, - [938] = {.lex_state = 22}, + [938] = {.lex_state = 58}, [939] = {.lex_state = 58}, [940] = {.lex_state = 22}, [941] = {.lex_state = 58}, [942] = {.lex_state = 58}, - [943] = {.lex_state = 22}, + [943] = {.lex_state = 58}, [944] = {.lex_state = 58}, [945] = {.lex_state = 58}, [946] = {.lex_state = 58}, - [947] = {.lex_state = 22}, - [948] = {.lex_state = 22}, - [949] = {.lex_state = 247}, + [947] = {.lex_state = 247}, + [948] = {.lex_state = 58}, + [949] = {.lex_state = 22}, [950] = {.lex_state = 58}, [951] = {.lex_state = 58}, - [952] = {.lex_state = 58}, - [953] = {.lex_state = 58}, - [954] = {.lex_state = 58}, + [952] = {.lex_state = 22}, + [953] = {.lex_state = 22}, + [954] = {.lex_state = 247}, [955] = {.lex_state = 58}, [956] = {.lex_state = 58}, [957] = {.lex_state = 247}, - [958] = {.lex_state = 247}, + [958] = {.lex_state = 58}, [959] = {.lex_state = 247}, - [960] = {.lex_state = 247}, + [960] = {.lex_state = 22}, [961] = {.lex_state = 22}, - [962] = {.lex_state = 9}, - [963] = {.lex_state = 22}, - [964] = {.lex_state = 59}, - [965] = {.lex_state = 247}, - [966] = {.lex_state = 247}, - [967] = {.lex_state = 59}, + [962] = {.lex_state = 59}, + [963] = {.lex_state = 59}, + [964] = {.lex_state = 22}, + [965] = {.lex_state = 22}, + [966] = {.lex_state = 59}, + [967] = {.lex_state = 247}, [968] = {.lex_state = 247}, - [969] = {.lex_state = 59}, - [970] = {.lex_state = 22}, - [971] = {.lex_state = 22}, - [972] = {.lex_state = 9}, - [973] = {.lex_state = 8}, + [969] = {.lex_state = 247}, + [970] = {.lex_state = 247}, + [971] = {.lex_state = 247}, + [972] = {.lex_state = 247}, + [973] = {.lex_state = 9}, [974] = {.lex_state = 247}, - [975] = {.lex_state = 0}, + [975] = {.lex_state = 22}, [976] = {.lex_state = 0}, - [977] = {.lex_state = 247}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 247}, - [982] = {.lex_state = 9}, + [977] = {.lex_state = 8}, + [978] = {.lex_state = 8}, + [979] = {.lex_state = 247}, + [980] = {.lex_state = 247}, + [981] = {.lex_state = 9}, + [982] = {.lex_state = 0}, [983] = {.lex_state = 9}, [984] = {.lex_state = 247}, - [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 9}, + [985] = {.lex_state = 9}, + [986] = {.lex_state = 9}, + [987] = {.lex_state = 247}, [988] = {.lex_state = 9}, [989] = {.lex_state = 0}, - [990] = {.lex_state = 247}, - [991] = {.lex_state = 8}, - [992] = {.lex_state = 247}, + [990] = {.lex_state = 0}, + [991] = {.lex_state = 0}, + [992] = {.lex_state = 0}, [993] = {.lex_state = 0}, - [994] = {.lex_state = 60}, - [995] = {.lex_state = 22}, - [996] = {.lex_state = 60}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 5}, - [1000] = {.lex_state = 247}, - [1001] = {.lex_state = 60}, - [1002] = {.lex_state = 8}, - [1003] = {.lex_state = 8}, + [994] = {.lex_state = 247}, + [995] = {.lex_state = 247}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 8}, + [998] = {.lex_state = 5}, + [999] = {.lex_state = 22}, + [1000] = {.lex_state = 58}, + [1001] = {.lex_state = 5}, + [1002] = {.lex_state = 59}, + [1003] = {.lex_state = 0}, [1004] = {.lex_state = 8}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 21}, - [1007] = {.lex_state = 5}, - [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 5}, + [1005] = {.lex_state = 60}, + [1006] = {.lex_state = 8}, + [1007] = {.lex_state = 8}, + [1008] = {.lex_state = 8}, + [1009] = {.lex_state = 60}, [1010] = {.lex_state = 8}, - [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 8}, - [1013] = {.lex_state = 247}, - [1014] = {.lex_state = 58}, - [1015] = {.lex_state = 21}, - [1016] = {.lex_state = 60}, - [1017] = {.lex_state = 247}, - [1018] = {.lex_state = 247}, - [1019] = {.lex_state = 5}, - [1020] = {.lex_state = 4}, - [1021] = {.lex_state = 5}, - [1022] = {.lex_state = 247}, - [1023] = {.lex_state = 8}, - [1024] = {.lex_state = 8}, + [1011] = {.lex_state = 247}, + [1012] = {.lex_state = 247}, + [1013] = {.lex_state = 4}, + [1014] = {.lex_state = 5}, + [1015] = {.lex_state = 58}, + [1016] = {.lex_state = 8}, + [1017] = {.lex_state = 0}, + [1018] = {.lex_state = 8}, + [1019] = {.lex_state = 8}, + [1020] = {.lex_state = 0}, + [1021] = {.lex_state = 8}, + [1022] = {.lex_state = 60}, + [1023] = {.lex_state = 247}, + [1024] = {.lex_state = 0}, [1025] = {.lex_state = 8}, - [1026] = {.lex_state = 8}, - [1027] = {.lex_state = 5}, + [1026] = {.lex_state = 247}, + [1027] = {.lex_state = 58}, [1028] = {.lex_state = 5}, - [1029] = {.lex_state = 8}, + [1029] = {.lex_state = 4}, [1030] = {.lex_state = 8}, - [1031] = {.lex_state = 5}, - [1032] = {.lex_state = 59}, - [1033] = {.lex_state = 8}, - [1034] = {.lex_state = 8}, - [1035] = {.lex_state = 247}, - [1036] = {.lex_state = 8}, - [1037] = {.lex_state = 4}, - [1038] = {.lex_state = 247}, - [1039] = {.lex_state = 8}, - [1040] = {.lex_state = 58}, + [1031] = {.lex_state = 247}, + [1032] = {.lex_state = 21}, + [1033] = {.lex_state = 21}, + [1034] = {.lex_state = 0}, + [1035] = {.lex_state = 58}, + [1036] = {.lex_state = 5}, + [1037] = {.lex_state = 5}, + [1038] = {.lex_state = 60}, + [1039] = {.lex_state = 0}, + [1040] = {.lex_state = 5}, [1041] = {.lex_state = 247}, - [1042] = {.lex_state = 247}, - [1043] = {.lex_state = 247}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, + [1042] = {.lex_state = 5}, + [1043] = {.lex_state = 8}, + [1044] = {.lex_state = 247}, + [1045] = {.lex_state = 8}, + [1046] = {.lex_state = 8}, [1047] = {.lex_state = 247}, [1048] = {.lex_state = 247}, - [1049] = {.lex_state = 58}, - [1050] = {.lex_state = 58}, + [1049] = {.lex_state = 59}, + [1050] = {.lex_state = 247}, [1051] = {.lex_state = 0}, [1052] = {.lex_state = 247}, - [1053] = {.lex_state = 58}, - [1054] = {.lex_state = 247}, - [1055] = {.lex_state = 60}, - [1056] = {.lex_state = 58}, + [1053] = {.lex_state = 247}, + [1054] = {.lex_state = 0}, + [1055] = {.lex_state = 247}, + [1056] = {.lex_state = 247}, [1057] = {.lex_state = 247}, - [1058] = {.lex_state = 5}, - [1059] = {.lex_state = 5}, - [1060] = {.lex_state = 60}, - [1061] = {.lex_state = 59}, - [1062] = {.lex_state = 247}, - [1063] = {.lex_state = 59}, - [1064] = {.lex_state = 59}, - [1065] = {.lex_state = 58}, + [1058] = {.lex_state = 58}, + [1059] = {.lex_state = 60}, + [1060] = {.lex_state = 247}, + [1061] = {.lex_state = 5}, + [1062] = {.lex_state = 9}, + [1063] = {.lex_state = 60}, + [1064] = {.lex_state = 58}, + [1065] = {.lex_state = 0}, [1066] = {.lex_state = 59}, [1067] = {.lex_state = 59}, [1068] = {.lex_state = 59}, [1069] = {.lex_state = 59}, - [1070] = {.lex_state = 59}, - [1071] = {.lex_state = 247}, - [1072] = {.lex_state = 247}, - [1073] = {.lex_state = 247}, - [1074] = {.lex_state = 60}, + [1070] = {.lex_state = 58}, + [1071] = {.lex_state = 59}, + [1072] = {.lex_state = 59}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 59}, [1075] = {.lex_state = 247}, - [1076] = {.lex_state = 58}, - [1077] = {.lex_state = 59}, + [1076] = {.lex_state = 60}, + [1077] = {.lex_state = 60}, [1078] = {.lex_state = 60}, - [1079] = {.lex_state = 59}, + [1079] = {.lex_state = 247}, [1080] = {.lex_state = 59}, - [1081] = {.lex_state = 60}, - [1082] = {.lex_state = 58}, - [1083] = {.lex_state = 247}, - [1084] = {.lex_state = 59}, + [1081] = {.lex_state = 59}, + [1082] = {.lex_state = 59}, + [1083] = {.lex_state = 58}, + [1084] = {.lex_state = 0}, [1085] = {.lex_state = 59}, - [1086] = {.lex_state = 60}, + [1086] = {.lex_state = 59}, [1087] = {.lex_state = 59}, - [1088] = {.lex_state = 58}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 5}, - [1091] = {.lex_state = 247}, + [1088] = {.lex_state = 59}, + [1089] = {.lex_state = 60}, + [1090] = {.lex_state = 0}, + [1091] = {.lex_state = 5}, [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 0}, + [1093] = {.lex_state = 59}, [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 59}, - [1096] = {.lex_state = 0}, + [1095] = {.lex_state = 247}, + [1096] = {.lex_state = 59}, [1097] = {.lex_state = 59}, - [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 59}, - [1100] = {.lex_state = 59}, - [1101] = {.lex_state = 58}, + [1098] = {.lex_state = 59}, + [1099] = {.lex_state = 0}, + [1100] = {.lex_state = 5}, + [1101] = {.lex_state = 59}, [1102] = {.lex_state = 59}, - [1103] = {.lex_state = 5}, - [1104] = {.lex_state = 9}, + [1103] = {.lex_state = 58}, + [1104] = {.lex_state = 59}, [1105] = {.lex_state = 59}, - [1106] = {.lex_state = 247}, - [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 5}, - [1109] = {.lex_state = 247}, - [1110] = {.lex_state = 59}, - [1111] = {.lex_state = 5}, - [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 59}, + [1106] = {.lex_state = 59}, + [1107] = {.lex_state = 58}, + [1108] = {.lex_state = 58}, + [1109] = {.lex_state = 0}, + [1110] = {.lex_state = 5}, + [1111] = {.lex_state = 59}, + [1112] = {.lex_state = 59}, + [1113] = {.lex_state = 59}, + [1114] = {.lex_state = 59}, + [1115] = {.lex_state = 5}, [1116] = {.lex_state = 59}, - [1117] = {.lex_state = 59}, - [1118] = {.lex_state = 59}, + [1117] = {.lex_state = 58}, + [1118] = {.lex_state = 0}, [1119] = {.lex_state = 59}, - [1120] = {.lex_state = 59}, - [1121] = {.lex_state = 5}, - [1122] = {.lex_state = 59}, + [1120] = {.lex_state = 0}, + [1121] = {.lex_state = 247}, + [1122] = {.lex_state = 247}, [1123] = {.lex_state = 247}, - [1124] = {.lex_state = 59}, - [1125] = {.lex_state = 59}, - [1126] = {.lex_state = 247}, - [1127] = {.lex_state = 59}, - [1128] = {.lex_state = 60}, - [1129] = {.lex_state = 59}, - [1130] = {.lex_state = 59}, - [1131] = {.lex_state = 59}, + [1124] = {.lex_state = 5}, + [1125] = {.lex_state = 58}, + [1126] = {.lex_state = 0}, + [1127] = {.lex_state = 247}, + [1128] = {.lex_state = 247}, + [1129] = {.lex_state = 247}, + [1130] = {.lex_state = 247}, + [1131] = {.lex_state = 0}, [1132] = {.lex_state = 247}, - [1133] = {.lex_state = 58}, - [1134] = {.lex_state = 59}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 58}, + [1133] = {.lex_state = 59}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 59}, + [1136] = {.lex_state = 5}, [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 58}, + [1138] = {.lex_state = 59}, [1139] = {.lex_state = 59}, [1140] = {.lex_state = 59}, - [1141] = {.lex_state = 247}, - [1142] = {.lex_state = 60}, - [1143] = {.lex_state = 9}, - [1144] = {.lex_state = 5}, + [1141] = {.lex_state = 59}, + [1142] = {.lex_state = 59}, + [1143] = {.lex_state = 60}, + [1144] = {.lex_state = 60}, [1145] = {.lex_state = 247}, - [1146] = {.lex_state = 14}, - [1147] = {.lex_state = 21}, - [1148] = {.lex_state = 247}, + [1146] = {.lex_state = 58}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, + [1150] = {.lex_state = 14}, + [1151] = {.lex_state = 21}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 247}, + [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 247}, - [1157] = {.lex_state = 247}, + [1155] = {.lex_state = 247}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 247}, - [1163] = {.lex_state = 9}, - [1164] = {.lex_state = 0}, + [1159] = {.lex_state = 5}, + [1160] = {.lex_state = 9}, + [1161] = {.lex_state = 247}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 9}, [1165] = {.lex_state = 0}, [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 9}, + [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 9}, + [1170] = {.lex_state = 0}, [1171] = {.lex_state = 9}, - [1172] = {.lex_state = 9}, - [1173] = {.lex_state = 9}, - [1174] = {.lex_state = 247}, + [1172] = {.lex_state = 0}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 9}, [1175] = {.lex_state = 9}, [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 9}, + [1177] = {.lex_state = 247}, [1178] = {.lex_state = 9}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 0}, + [1179] = {.lex_state = 9}, + [1180] = {.lex_state = 9}, [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 14}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 9}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 9}, - [1187] = {.lex_state = 9}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 14}, + [1182] = {.lex_state = 9}, + [1183] = {.lex_state = 247}, + [1184] = {.lex_state = 247}, + [1185] = {.lex_state = 9}, + [1186] = {.lex_state = 0}, + [1187] = {.lex_state = 247}, + [1188] = {.lex_state = 9}, + [1189] = {.lex_state = 0}, [1190] = {.lex_state = 9}, - [1191] = {.lex_state = 22}, + [1191] = {.lex_state = 9}, [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 9}, - [1195] = {.lex_state = 9}, - [1196] = {.lex_state = 0}, + [1193] = {.lex_state = 9}, + [1194] = {.lex_state = 14}, + [1195] = {.lex_state = 22}, + [1196] = {.lex_state = 247}, [1197] = {.lex_state = 9}, - [1198] = {.lex_state = 0}, + [1198] = {.lex_state = 247}, [1199] = {.lex_state = 0}, [1200] = {.lex_state = 0}, [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, + [1202] = {.lex_state = 247}, + [1203] = {.lex_state = 247}, + [1204] = {.lex_state = 247}, + [1205] = {.lex_state = 9}, + [1206] = {.lex_state = 5}, + [1207] = {.lex_state = 247}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 247}, [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 9}, - [1213] = {.lex_state = 9}, - [1214] = {.lex_state = 247}, - [1215] = {.lex_state = 0}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 247}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 9}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 9}, + [1217] = {.lex_state = 9}, + [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 9}, - [1222] = {.lex_state = 247}, - [1223] = {.lex_state = 9}, - [1224] = {.lex_state = 9}, - [1225] = {.lex_state = 0}, + [1220] = {.lex_state = 14}, + [1221] = {.lex_state = 0}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 14}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 9}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 247}, - [1228] = {.lex_state = 247}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 60}, - [1231] = {.lex_state = 14}, + [1227] = {.lex_state = 9}, + [1228] = {.lex_state = 0}, + [1229] = {.lex_state = 9}, + [1230] = {.lex_state = 0}, + [1231] = {.lex_state = 5}, [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 9}, + [1234] = {.lex_state = 9}, + [1235] = {.lex_state = 9}, + [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, + [1238] = {.lex_state = 247}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 9}, + [1241] = {.lex_state = 14}, [1242] = {.lex_state = 0}, [1243] = {.lex_state = 9}, [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 9}, - [1246] = {.lex_state = 9}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 9}, + [1249] = {.lex_state = 9}, + [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 9}, + [1252] = {.lex_state = 0}, [1253] = {.lex_state = 0}, [1254] = {.lex_state = 9}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 247}, + [1255] = {.lex_state = 9}, + [1256] = {.lex_state = 0}, [1257] = {.lex_state = 0}, [1258] = {.lex_state = 247}, [1259] = {.lex_state = 247}, - [1260] = {.lex_state = 247}, - [1261] = {.lex_state = 247}, - [1262] = {.lex_state = 247}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 0}, [1263] = {.lex_state = 247}, [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 9}, - [1266] = {.lex_state = 247}, - [1267] = {.lex_state = 9}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 0}, + [1267] = {.lex_state = 247}, [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 9}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 9}, - [1272] = {.lex_state = 9}, - [1273] = {.lex_state = 247}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 9}, - [1276] = {.lex_state = 247}, - [1277] = {.lex_state = 5}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 60}, + [1271] = {.lex_state = 0}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 14}, + [1275] = {.lex_state = 0}, + [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, @@ -9264,353 +9277,359 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1283] = {.lex_state = 0}, [1284] = {.lex_state = 0}, [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 0}, + [1286] = {.lex_state = 9}, [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 247}, + [1288] = {.lex_state = 9}, [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 247}, + [1290] = {.lex_state = 9}, [1291] = {.lex_state = 0}, [1292] = {.lex_state = 0}, [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 5}, - [1295] = {.lex_state = 14}, + [1294] = {.lex_state = 9}, + [1295] = {.lex_state = 247}, [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 247}, - [1300] = {.lex_state = 0}, + [1297] = {.lex_state = 5}, + [1298] = {.lex_state = 5}, + [1299] = {.lex_state = 9}, + [1300] = {.lex_state = 9}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 5}, - [1306] = {.lex_state = 0}, + [1305] = {.lex_state = 9}, + [1306] = {.lex_state = 247}, [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 0}, + [1308] = {.lex_state = 9}, [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 247}, + [1313] = {.lex_state = 0}, [1314] = {.lex_state = 0}, [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 247}, - [1317] = {.lex_state = 0}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 9}, [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 14}, - [1321] = {.lex_state = 5}, - [1322] = {.lex_state = 9}, + [1319] = {.lex_state = 9}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 247}, + [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, [1324] = {.lex_state = 0}, [1325] = {.lex_state = 0}, [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, + [1327] = {.lex_state = 247}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 5}, + [1329] = {.lex_state = 247}, + [1330] = {.lex_state = 247}, [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, + [1332] = {.lex_state = 9}, + [1333] = {.lex_state = 247}, + [1334] = {.lex_state = 5}, [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 59}, - [1337] = {.lex_state = 247}, - [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 247}, - [1340] = {.lex_state = 8}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 247}, + [1339] = {.lex_state = 0}, + [1340] = {.lex_state = 59}, [1341] = {.lex_state = 247}, - [1342] = {.lex_state = 0}, + [1342] = {.lex_state = 247}, [1343] = {.lex_state = 8}, [1344] = {.lex_state = 247}, - [1345] = {.lex_state = 247}, - [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 0}, + [1345] = {.lex_state = 59}, + [1346] = {.lex_state = 57}, + [1347] = {.lex_state = 8}, [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 58}, - [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 59}, - [1352] = {.lex_state = 247}, - [1353] = {.lex_state = 59}, + [1349] = {.lex_state = 247}, + [1350] = {.lex_state = 247}, + [1351] = {.lex_state = 247}, + [1352] = {.lex_state = 0}, + [1353] = {.lex_state = 0}, [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 0}, + [1355] = {.lex_state = 59}, [1356] = {.lex_state = 0}, [1357] = {.lex_state = 0}, [1358] = {.lex_state = 0}, [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 58}, - [1361] = {.lex_state = 247}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 247}, - [1364] = {.lex_state = 247}, - [1365] = {.lex_state = 57}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 247}, + [1363] = {.lex_state = 0}, + [1364] = {.lex_state = 0}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 247}, [1367] = {.lex_state = 0}, [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 247}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 247}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 247}, + [1371] = {.lex_state = 247}, + [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 8}, + [1374] = {.lex_state = 247}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 247}, + [1379] = {.lex_state = 247}, + [1380] = {.lex_state = 0}, [1381] = {.lex_state = 247}, [1382] = {.lex_state = 59}, [1383] = {.lex_state = 247}, [1384] = {.lex_state = 247}, - [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 247}, - [1388] = {.lex_state = 0}, + [1385] = {.lex_state = 247}, + [1386] = {.lex_state = 247}, + [1387] = {.lex_state = 0}, + [1388] = {.lex_state = 247}, [1389] = {.lex_state = 59}, - [1390] = {.lex_state = 59}, + [1390] = {.lex_state = 247}, [1391] = {.lex_state = 59}, - [1392] = {.lex_state = 59}, - [1393] = {.lex_state = 59}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 0}, + [1392] = {.lex_state = 0}, + [1393] = {.lex_state = 0}, + [1394] = {.lex_state = 59}, + [1395] = {.lex_state = 59}, + [1396] = {.lex_state = 247}, + [1397] = {.lex_state = 59}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, [1400] = {.lex_state = 247}, [1401] = {.lex_state = 0}, [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 247}, - [1404] = {.lex_state = 247}, + [1403] = {.lex_state = 59}, + [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 247}, - [1407] = {.lex_state = 21}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 0}, [1408] = {.lex_state = 0}, [1409] = {.lex_state = 59}, - [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 59}, - [1412] = {.lex_state = 59}, - [1413] = {.lex_state = 59}, + [1410] = {.lex_state = 247}, + [1411] = {.lex_state = 247}, + [1412] = {.lex_state = 0}, + [1413] = {.lex_state = 0}, [1414] = {.lex_state = 59}, [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 0}, + [1416] = {.lex_state = 247}, [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 0}, + [1418] = {.lex_state = 59}, + [1419] = {.lex_state = 59}, + [1420] = {.lex_state = 21}, [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, [1423] = {.lex_state = 59}, - [1424] = {.lex_state = 59}, + [1424] = {.lex_state = 0}, [1425] = {.lex_state = 0}, [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 59}, - [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 59}, - [1430] = {.lex_state = 59}, - [1431] = {.lex_state = 59}, - [1432] = {.lex_state = 58}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 59}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 247}, + [1432] = {.lex_state = 59}, [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, - [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 0}, + [1434] = {.lex_state = 59}, + [1435] = {.lex_state = 59}, + [1436] = {.lex_state = 59}, + [1437] = {.lex_state = 58}, + [1438] = {.lex_state = 59}, + [1439] = {.lex_state = 247}, + [1440] = {.lex_state = 58}, [1441] = {.lex_state = 59}, [1442] = {.lex_state = 59}, - [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 247}, - [1445] = {.lex_state = 247}, - [1446] = {.lex_state = 59}, + [1443] = {.lex_state = 247}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 58}, [1447] = {.lex_state = 59}, [1448] = {.lex_state = 59}, - [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 21}, - [1451] = {.lex_state = 59}, + [1449] = {.lex_state = 59}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 21}, [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 0}, - [1454] = {.lex_state = 0}, + [1453] = {.lex_state = 59}, + [1454] = {.lex_state = 8}, [1455] = {.lex_state = 247}, [1456] = {.lex_state = 59}, - [1457] = {.lex_state = 59}, - [1458] = {.lex_state = 59}, - [1459] = {.lex_state = 247}, - [1460] = {.lex_state = 59}, + [1457] = {.lex_state = 247}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 0}, + [1460] = {.lex_state = 0}, [1461] = {.lex_state = 59}, - [1462] = {.lex_state = 247}, - [1463] = {.lex_state = 247}, + [1462] = {.lex_state = 8}, + [1463] = {.lex_state = 59}, [1464] = {.lex_state = 247}, - [1465] = {.lex_state = 247}, + [1465] = {.lex_state = 59}, [1466] = {.lex_state = 59}, - [1467] = {.lex_state = 247}, - [1468] = {.lex_state = 8}, - [1469] = {.lex_state = 59}, - [1470] = {.lex_state = 57}, - [1471] = {.lex_state = 57}, + [1467] = {.lex_state = 59}, + [1468] = {.lex_state = 0}, + [1469] = {.lex_state = 0}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 0}, [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 10}, + [1473] = {.lex_state = 0}, [1474] = {.lex_state = 0}, [1475] = {.lex_state = 0}, [1476] = {.lex_state = 0}, [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 0}, + [1478] = {.lex_state = 10}, + [1479] = {.lex_state = 14}, [1480] = {.lex_state = 0}, [1481] = {.lex_state = 14}, - [1482] = {.lex_state = 57}, - [1483] = {.lex_state = 57}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 247}, [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 57}, - [1486] = {.lex_state = 57}, - [1487] = {.lex_state = 57}, - [1488] = {.lex_state = 57}, - [1489] = {.lex_state = 10}, - [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 57}, + [1485] = {.lex_state = 0}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 10}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 57}, + [1490] = {.lex_state = 14}, + [1491] = {.lex_state = 0}, [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 0}, + [1493] = {.lex_state = 57}, [1494] = {.lex_state = 0}, [1495] = {.lex_state = 0}, [1496] = {.lex_state = 0}, [1497] = {.lex_state = 0}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 57}, + [1500] = {.lex_state = 14}, [1501] = {.lex_state = 0}, [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 10}, - [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 0}, + [1503] = {.lex_state = 57}, + [1504] = {.lex_state = 57}, + [1505] = {.lex_state = 57}, + [1506] = {.lex_state = 57}, [1507] = {.lex_state = 0}, [1508] = {.lex_state = 57}, [1509] = {.lex_state = 57}, [1510] = {.lex_state = 57}, [1511] = {.lex_state = 57}, - [1512] = {.lex_state = 57}, - [1513] = {.lex_state = 0}, + [1512] = {.lex_state = 0}, + [1513] = {.lex_state = 57}, [1514] = {.lex_state = 57}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 4}, - [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 404}, - [1521] = {.lex_state = 0}, + [1515] = {.lex_state = 57}, + [1516] = {.lex_state = 57}, + [1517] = {.lex_state = 57}, + [1518] = {.lex_state = 57}, + [1519] = {.lex_state = 4}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 57}, [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 57}, - [1526] = {.lex_state = 10}, - [1527] = {.lex_state = 57}, + [1523] = {.lex_state = 10}, + [1524] = {.lex_state = 10}, + [1525] = {.lex_state = 404}, + [1526] = {.lex_state = 0}, + [1527] = {.lex_state = 10}, [1528] = {.lex_state = 0}, [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 10}, + [1530] = {.lex_state = 0}, [1531] = {.lex_state = 0}, [1532] = {.lex_state = 0}, [1533] = {.lex_state = 0}, [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 0}, + [1535] = {.lex_state = 57}, [1536] = {.lex_state = 0}, [1537] = {.lex_state = 57}, - [1538] = {.lex_state = 57}, + [1538] = {.lex_state = 0}, [1539] = {.lex_state = 57}, - [1540] = {.lex_state = 57}, - [1541] = {.lex_state = 0}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 14}, [1542] = {.lex_state = 57}, [1543] = {.lex_state = 57}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 0}, + [1544] = {.lex_state = 57}, + [1545] = {.lex_state = 57}, [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 0}, + [1547] = {.lex_state = 57}, + [1548] = {.lex_state = 57}, [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 57}, - [1552] = {.lex_state = 4}, + [1550] = {.lex_state = 57}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 0}, [1553] = {.lex_state = 0}, [1554] = {.lex_state = 0}, [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 57}, - [1557] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, + [1557] = {.lex_state = 14}, [1558] = {.lex_state = 0}, [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 57}, + [1560] = {.lex_state = 0}, [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 14}, + [1562] = {.lex_state = 57}, + [1563] = {.lex_state = 4}, + [1564] = {.lex_state = 57}, [1565] = {.lex_state = 0}, [1566] = {.lex_state = 0}, [1567] = {.lex_state = 0}, [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 14}, - [1570] = {.lex_state = 247}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, [1572] = {.lex_state = 0}, [1573] = {.lex_state = 0}, [1574] = {.lex_state = 0}, [1575] = {.lex_state = 0}, [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 14}, + [1577] = {.lex_state = 0}, [1578] = {.lex_state = 14}, [1579] = {.lex_state = 0}, [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 14}, - [1582] = {.lex_state = 57}, - [1583] = {.lex_state = 0}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 0}, + [1583] = {.lex_state = 14}, [1584] = {.lex_state = 0}, [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 404}, - [1587] = {.lex_state = 404}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 57}, - [1590] = {.lex_state = 57}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 57}, + [1589] = {.lex_state = 0}, + [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 0}, + [1593] = {.lex_state = 404}, [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 0}, + [1595] = {.lex_state = 404}, [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 57}, - [1598] = {.lex_state = 57}, - [1599] = {.lex_state = 404}, - [1600] = {.lex_state = 57}, + [1597] = {.lex_state = 0}, + [1598] = {.lex_state = 0}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 0}, [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 14}, - [1604] = {.lex_state = 404}, - [1605] = {.lex_state = 57}, - [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 0}, + [1602] = {.lex_state = 57}, + [1603] = {.lex_state = 57}, + [1604] = {.lex_state = 57}, + [1605] = {.lex_state = 404}, + [1606] = {.lex_state = 57}, + [1607] = {.lex_state = 57}, [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 57}, - [1610] = {.lex_state = 57}, - [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 57}, - [1613] = {.lex_state = 14}, + [1609] = {.lex_state = 0}, + [1610] = {.lex_state = 404}, + [1611] = {.lex_state = 57}, + [1612] = {.lex_state = 0}, + [1613] = {.lex_state = 0}, [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 0}, + [1615] = {.lex_state = 57}, [1616] = {.lex_state = 57}, - [1617] = {.lex_state = 14}, - [1618] = {.lex_state = 57}, - [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 14}, + [1617] = {.lex_state = 0}, + [1618] = {.lex_state = 0}, + [1619] = {.lex_state = 14}, + [1620] = {.lex_state = 0}, [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 247}, + [1622] = {.lex_state = 57}, [1623] = {.lex_state = 0}, [1624] = {.lex_state = 0}, [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 0}, + [1626] = {.lex_state = 14}, [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 57}, - [1629] = {.lex_state = 57}, - [1630] = {.lex_state = 57}, - [1631] = {.lex_state = 57}, - [1632] = {.lex_state = 57}, + [1628] = {.lex_state = 247}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 0}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 57}, + [1635] = {.lex_state = 57}, + [1636] = {.lex_state = 57}, + [1637] = {.lex_state = 57}, + [1638] = {.lex_state = 57}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9623,8 +9642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1), [anon_sym_trait] = ACTIONS(1), [anon_sym_type] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), @@ -9718,63 +9737,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(1584), - [sym__statement] = STATE(2), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_const_item] = STATE(2), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(2), - [sym_expression] = STATE(753), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(2), + [sym_source_file] = STATE(1591), + [sym__statement] = STATE(16), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_associated_impl] = STATE(16), + [sym_const_item] = STATE(16), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(16), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(16), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_impl] = ACTIONS(9), @@ -9832,64 +9852,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(13), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_const_item] = STATE(13), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(13), - [sym_expression] = STATE(753), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(79), + [sym__statement] = STATE(11), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_associated_impl] = STATE(11), + [sym_const_item] = STATE(11), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(11), + [sym_expression] = STATE(690), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(11), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(79), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -9945,62 +9966,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_const_item] = STATE(19), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(19), - [sym_attribute_item] = STATE(19), - [sym_inner_attribute_item] = STATE(19), - [sym_mod_item] = STATE(19), - [sym_struct_item] = STATE(19), - [sym_enum_item] = STATE(19), - [sym_type_item] = STATE(19), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(654), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(19), + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(685), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(81), [anon_sym_impl] = ACTIONS(9), @@ -10058,64 +10080,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(682), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [sym__statement] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_associated_impl] = STATE(4), + [sym_const_item] = STATE(4), + [sym_macro_invocation] = STATE(91), + [sym_empty_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(4), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(86), + [anon_sym_impl] = ACTIONS(88), + [anon_sym_SEMI] = ACTIONS(91), + [anon_sym_trait] = ACTIONS(94), + [anon_sym_type] = ACTIONS(97), + [anon_sym_const] = ACTIONS(100), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(106), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_mod] = ACTIONS(112), + [anon_sym_struct] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(118), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_let] = ACTIONS(124), + [anon_sym_use] = ACTIONS(127), + [anon_sym_COLON_COLON] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_u8] = ACTIONS(136), + [anon_sym_i8] = ACTIONS(136), + [anon_sym_u16] = ACTIONS(136), + [anon_sym_i16] = ACTIONS(136), + [anon_sym_u32] = ACTIONS(136), + [anon_sym_i32] = ACTIONS(136), + [anon_sym_u64] = ACTIONS(136), + [anon_sym_i64] = ACTIONS(136), + [anon_sym_u128] = ACTIONS(136), + [anon_sym_i128] = ACTIONS(136), + [anon_sym_usize] = ACTIONS(136), + [anon_sym_bool] = ACTIONS(136), + [anon_sym_ByteArray] = ACTIONS(136), + [anon_sym_felt252] = ACTIONS(136), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(103), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_break] = ACTIONS(142), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_default] = ACTIONS(148), + [anon_sym_if] = ACTIONS(151), + [anon_sym_extern] = ACTIONS(154), + [anon_sym_loop] = ACTIONS(157), + [anon_sym_match] = ACTIONS(160), + [anon_sym_pub] = ACTIONS(163), + [anon_sym_return] = ACTIONS(166), + [anon_sym_while] = ACTIONS(169), + [sym_numeric_literal] = ACTIONS(172), + [aux_sym_string_literal_token1] = ACTIONS(175), + [sym_shortstring_literal] = ACTIONS(178), + [anon_sym_true] = ACTIONS(181), + [anon_sym_false] = ACTIONS(181), + [anon_sym_ref] = ACTIONS(184), + [sym_identifier] = ACTIONS(187), + [sym_super] = ACTIONS(190), + [sym_line_comment] = ACTIONS(3), + }, + [5] = { + [sym__statement] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_associated_impl] = STATE(4), + [sym_const_item] = STATE(4), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(604), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(193), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10170,65 +10307,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [5] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(626), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [6] = { + [sym__statement] = STATE(5), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_associated_impl] = STATE(5), + [sym_const_item] = STATE(5), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(5), + [sym_expression] = STATE(605), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(5), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(195), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10283,65 +10421,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [6] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(657), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [7] = { + [sym__statement] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_associated_impl] = STATE(4), + [sym_const_item] = STATE(4), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(598), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(197), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10396,65 +10535,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(17), - [sym_impl_item] = STATE(17), - [sym_trait_item] = STATE(17), - [sym_associated_type] = STATE(17), - [sym_const_item] = STATE(17), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(17), - [sym_attribute_item] = STATE(17), - [sym_inner_attribute_item] = STATE(17), - [sym_mod_item] = STATE(17), - [sym_struct_item] = STATE(17), - [sym_enum_item] = STATE(17), - [sym_type_item] = STATE(17), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(17), - [sym_function_item] = STATE(17), - [sym_function_signature_item] = STATE(17), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(17), - [sym_use_declaration] = STATE(17), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(17), - [sym_expression] = STATE(638), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(17), + [8] = { + [sym__statement] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_associated_impl] = STATE(4), + [sym_const_item] = STATE(4), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(675), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(89), + [anon_sym_RBRACE] = ACTIONS(199), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10509,13 +10649,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [8] = { + [9] = { [sym__statement] = STATE(4), [sym_impl_item] = STATE(4), [sym_trait_item] = STATE(4), [sym_associated_type] = STATE(4), + [sym_associated_impl] = STATE(4), [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(88), + [sym_macro_invocation] = STATE(90), [sym_empty_statement] = STATE(4), [sym_attribute_item] = STATE(4), [sym_inner_attribute_item] = STATE(4), @@ -10523,51 +10664,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(4), [sym_enum_item] = STATE(4), [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(291), + [sym_extern_type] = STATE(260), [sym_external_function_item] = STATE(4), [sym_function_item] = STATE(4), [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1248), + [sym_function] = STATE(1279), [sym_let_declaration] = STATE(4), [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(690), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), + [sym_expression] = STATE(607), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_RBRACE] = ACTIONS(201), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10622,65 +10763,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [9] = { - [sym__statement] = STATE(5), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_const_item] = STATE(5), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(5), - [sym_expression] = STATE(632), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(5), + [10] = { + [sym__statement] = STATE(9), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_associated_impl] = STATE(9), + [sym_const_item] = STATE(9), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(9), + [sym_expression] = STATE(608), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(9), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(203), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10735,65 +10877,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [10] = { - [sym__statement] = STATE(14), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_const_item] = STATE(14), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(14), - [sym_expression] = STATE(600), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(14), + [11] = { + [sym__statement] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_associated_impl] = STATE(4), + [sym_const_item] = STATE(4), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(205), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10848,65 +10991,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [11] = { - [sym__statement] = STATE(6), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_const_item] = STATE(6), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(6), - [sym_expression] = STATE(659), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(6), + [12] = { + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_associated_impl] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(12), + [ts_builtin_sym_end] = ACTIONS(86), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_impl] = ACTIONS(88), + [anon_sym_SEMI] = ACTIONS(91), + [anon_sym_trait] = ACTIONS(94), + [anon_sym_type] = ACTIONS(97), + [anon_sym_const] = ACTIONS(100), + [anon_sym_BANG] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(106), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_mod] = ACTIONS(112), + [anon_sym_struct] = ACTIONS(115), + [anon_sym_enum] = ACTIONS(118), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_let] = ACTIONS(124), + [anon_sym_use] = ACTIONS(127), + [anon_sym_COLON_COLON] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_u8] = ACTIONS(136), + [anon_sym_i8] = ACTIONS(136), + [anon_sym_u16] = ACTIONS(136), + [anon_sym_i16] = ACTIONS(136), + [anon_sym_u32] = ACTIONS(136), + [anon_sym_i32] = ACTIONS(136), + [anon_sym_u64] = ACTIONS(136), + [anon_sym_i64] = ACTIONS(136), + [anon_sym_u128] = ACTIONS(136), + [anon_sym_i128] = ACTIONS(136), + [anon_sym_usize] = ACTIONS(136), + [anon_sym_bool] = ACTIONS(136), + [anon_sym_ByteArray] = ACTIONS(136), + [anon_sym_felt252] = ACTIONS(136), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(103), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_break] = ACTIONS(142), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_default] = ACTIONS(148), + [anon_sym_if] = ACTIONS(151), + [anon_sym_extern] = ACTIONS(154), + [anon_sym_loop] = ACTIONS(157), + [anon_sym_match] = ACTIONS(160), + [anon_sym_pub] = ACTIONS(163), + [anon_sym_return] = ACTIONS(166), + [anon_sym_while] = ACTIONS(169), + [sym_numeric_literal] = ACTIONS(172), + [aux_sym_string_literal_token1] = ACTIONS(175), + [sym_shortstring_literal] = ACTIONS(178), + [anon_sym_true] = ACTIONS(181), + [anon_sym_false] = ACTIONS(181), + [anon_sym_ref] = ACTIONS(184), + [sym_identifier] = ACTIONS(187), + [sym_super] = ACTIONS(190), + [sym_line_comment] = ACTIONS(3), + }, + [13] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_associated_impl] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(632), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(207), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10961,65 +11219,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [12] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(643), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [14] = { + [sym__statement] = STATE(15), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_associated_impl] = STATE(15), + [sym_const_item] = STATE(15), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(15), + [sym_expression] = STATE(651), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(15), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(209), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11074,176 +11333,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [13] = { - [sym__statement] = STATE(13), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_const_item] = STATE(13), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(13), - [sym_expression] = STATE(753), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(13), - [ts_builtin_sym_end] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_impl] = ACTIONS(106), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(112), - [anon_sym_type] = ACTIONS(115), - [anon_sym_const] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(130), - [anon_sym_struct] = ACTIONS(133), - [anon_sym_enum] = ACTIONS(136), - [anon_sym_fn] = ACTIONS(139), - [anon_sym_let] = ACTIONS(142), - [anon_sym_use] = ACTIONS(145), - [anon_sym_COLON_COLON] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_ByteArray] = ACTIONS(154), - [anon_sym_felt252] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_AT] = ACTIONS(121), - [anon_sym_break] = ACTIONS(160), - [anon_sym_continue] = ACTIONS(163), - [anon_sym_default] = ACTIONS(166), - [anon_sym_if] = ACTIONS(169), - [anon_sym_extern] = ACTIONS(172), - [anon_sym_loop] = ACTIONS(175), - [anon_sym_match] = ACTIONS(178), - [anon_sym_pub] = ACTIONS(181), - [anon_sym_return] = ACTIONS(184), - [anon_sym_while] = ACTIONS(187), - [sym_numeric_literal] = ACTIONS(190), - [aux_sym_string_literal_token1] = ACTIONS(193), - [sym_shortstring_literal] = ACTIONS(196), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_ref] = ACTIONS(202), - [sym_identifier] = ACTIONS(205), - [sym_super] = ACTIONS(208), - [sym_line_comment] = ACTIONS(3), - }, - [14] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(647), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [15] = { + [sym__statement] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_associated_impl] = STATE(4), + [sym_const_item] = STATE(4), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(613), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(211), [anon_sym_impl] = ACTIONS(9), @@ -11300,65 +11447,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [15] = { - [sym__statement] = STATE(18), - [sym_impl_item] = STATE(18), - [sym_trait_item] = STATE(18), - [sym_associated_type] = STATE(18), - [sym_const_item] = STATE(18), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(18), - [sym_attribute_item] = STATE(18), - [sym_inner_attribute_item] = STATE(18), - [sym_mod_item] = STATE(18), - [sym_struct_item] = STATE(18), - [sym_enum_item] = STATE(18), - [sym_type_item] = STATE(18), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(18), - [sym_function_item] = STATE(18), - [sym_function_signature_item] = STATE(18), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(18), - [sym_use_declaration] = STATE(18), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(18), - [sym_expression] = STATE(678), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(18), + [16] = { + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_associated_impl] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(12), + [ts_builtin_sym_end] = ACTIONS(213), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(213), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11413,63 +11561,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [16] = { - [sym__statement] = STATE(12), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_const_item] = STATE(12), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(12), - [sym_expression] = STATE(644), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(12), + [17] = { + [sym__statement] = STATE(7), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_associated_impl] = STATE(7), + [sym_const_item] = STATE(7), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(7), + [sym_expression] = STATE(611), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(7), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(215), [anon_sym_impl] = ACTIONS(9), @@ -11526,63 +11675,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [17] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(637), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [18] = { + [sym__statement] = STATE(19), + [sym_impl_item] = STATE(19), + [sym_trait_item] = STATE(19), + [sym_associated_type] = STATE(19), + [sym_associated_impl] = STATE(19), + [sym_const_item] = STATE(19), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(19), + [sym_attribute_item] = STATE(19), + [sym_inner_attribute_item] = STATE(19), + [sym_mod_item] = STATE(19), + [sym_struct_item] = STATE(19), + [sym_enum_item] = STATE(19), + [sym_type_item] = STATE(19), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(19), + [sym_function_item] = STATE(19), + [sym_function_signature_item] = STATE(19), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(19), + [sym_use_declaration] = STATE(19), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(19), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(19), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(217), [anon_sym_impl] = ACTIONS(9), @@ -11639,63 +11789,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [18] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(641), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [19] = { + [sym__statement] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_associated_impl] = STATE(4), + [sym_const_item] = STATE(4), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(637), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(219), [anon_sym_impl] = ACTIONS(9), @@ -11752,63 +11903,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [19] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(88), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(653), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), + [20] = { + [sym__statement] = STATE(4), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_associated_impl] = STATE(4), + [sym_const_item] = STATE(4), + [sym_macro_invocation] = STATE(90), + [sym_empty_statement] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_extern_type] = STATE(260), + [sym_external_function_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function] = STATE(1279), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression_statement] = STATE(4), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(88), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(88), + [sym_if_expression] = STATE(88), + [sym_match_expression] = STATE(88), + [sym_while_expression] = STATE(88), + [sym_loop_expression] = STATE(88), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [sym_visibility_modifier] = STATE(859), + [sym_extern] = STATE(1250), + [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(221), [anon_sym_impl] = ACTIONS(9), @@ -11865,153 +12017,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [20] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(94), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(291), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1248), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(753), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(89), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(89), - [sym_if_expression] = STATE(89), - [sym_match_expression] = STATE(89), - [sym_while_expression] = STATE(89), - [sym_loop_expression] = STATE(89), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [sym_visibility_modifier] = STATE(855), - [sym_extern] = STATE(1239), - [aux_sym_source_file_repeat1] = STATE(20), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_impl] = ACTIONS(106), - [anon_sym_SEMI] = ACTIONS(109), - [anon_sym_trait] = ACTIONS(112), - [anon_sym_type] = ACTIONS(115), - [anon_sym_const] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_mod] = ACTIONS(130), - [anon_sym_struct] = ACTIONS(133), - [anon_sym_enum] = ACTIONS(136), - [anon_sym_fn] = ACTIONS(139), - [anon_sym_let] = ACTIONS(142), - [anon_sym_use] = ACTIONS(145), - [anon_sym_COLON_COLON] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_ByteArray] = ACTIONS(154), - [anon_sym_felt252] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(121), - [anon_sym_AT] = ACTIONS(121), - [anon_sym_break] = ACTIONS(160), - [anon_sym_continue] = ACTIONS(163), - [anon_sym_default] = ACTIONS(166), - [anon_sym_if] = ACTIONS(169), - [anon_sym_extern] = ACTIONS(172), - [anon_sym_loop] = ACTIONS(175), - [anon_sym_match] = ACTIONS(178), - [anon_sym_pub] = ACTIONS(181), - [anon_sym_return] = ACTIONS(184), - [anon_sym_while] = ACTIONS(187), - [sym_numeric_literal] = ACTIONS(190), - [aux_sym_string_literal_token1] = ACTIONS(193), - [sym_shortstring_literal] = ACTIONS(196), - [anon_sym_true] = ACTIONS(199), - [anon_sym_false] = ACTIONS(199), - [anon_sym_ref] = ACTIONS(202), - [sym_identifier] = ACTIONS(205), - [sym_super] = ACTIONS(208), - [sym_line_comment] = ACTIONS(3), - }, [21] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(477), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(447), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(223), [anon_sym_SEMI] = ACTIONS(223), @@ -12083,155 +12122,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [22] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(234), - [anon_sym_impl] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(239), - [anon_sym_trait] = ACTIONS(236), - [anon_sym_type] = ACTIONS(236), - [anon_sym_const] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(242), - [anon_sym_EQ] = ACTIONS(242), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_POUND] = ACTIONS(239), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_RBRACK] = ACTIONS(234), - [anon_sym_mod] = ACTIONS(236), - [anon_sym_struct] = ACTIONS(236), - [anon_sym_enum] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_fn] = ACTIONS(236), - [anon_sym_DASH_GT] = ACTIONS(239), - [anon_sym_let] = ACTIONS(236), - [anon_sym_use] = ACTIONS(236), - [anon_sym_COLON_COLON] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym__] = ACTIONS(242), - [anon_sym_RPAREN] = ACTIONS(234), - [anon_sym_u8] = ACTIONS(251), - [anon_sym_i8] = ACTIONS(251), - [anon_sym_u16] = ACTIONS(251), - [anon_sym_i16] = ACTIONS(251), - [anon_sym_u32] = ACTIONS(251), - [anon_sym_i32] = ACTIONS(251), - [anon_sym_u64] = ACTIONS(251), - [anon_sym_i64] = ACTIONS(251), - [anon_sym_u128] = ACTIONS(251), - [anon_sym_i128] = ACTIONS(251), - [anon_sym_usize] = ACTIONS(251), - [anon_sym_bool] = ACTIONS(251), - [anon_sym_ByteArray] = ACTIONS(251), - [anon_sym_felt252] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(242), - [anon_sym_DASH] = ACTIONS(254), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PERCENT] = ACTIONS(242), - [anon_sym_CARET] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(239), - [anon_sym_AMP] = ACTIONS(242), - [anon_sym_PIPE] = ACTIONS(242), - [anon_sym_AMP_AMP] = ACTIONS(239), - [anon_sym_PIPE_PIPE] = ACTIONS(239), - [anon_sym_LT_LT] = ACTIONS(239), - [anon_sym_GT_GT] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(239), - [anon_sym_DASH_EQ] = ACTIONS(239), - [anon_sym_STAR_EQ] = ACTIONS(239), - [anon_sym_SLASH_EQ] = ACTIONS(239), - [anon_sym_PERCENT_EQ] = ACTIONS(239), - [anon_sym_CARET_EQ] = ACTIONS(239), - [anon_sym_AMP_EQ] = ACTIONS(239), - [anon_sym_PIPE_EQ] = ACTIONS(239), - [anon_sym_EQ_EQ] = ACTIONS(239), - [anon_sym_BANG_EQ] = ACTIONS(239), - [anon_sym_GT_EQ] = ACTIONS(239), - [anon_sym_LT_EQ] = ACTIONS(239), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(239), - [anon_sym_DOT] = ACTIONS(242), - [anon_sym_EQ_GT] = ACTIONS(239), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_break] = ACTIONS(236), - [anon_sym_continue] = ACTIONS(236), - [anon_sym_default] = ACTIONS(236), - [anon_sym_if] = ACTIONS(236), - [anon_sym_extern] = ACTIONS(236), - [anon_sym_nopanic] = ACTIONS(236), - [anon_sym_loop] = ACTIONS(236), - [anon_sym_match] = ACTIONS(236), - [anon_sym_pub] = ACTIONS(236), - [anon_sym_return] = ACTIONS(236), - [anon_sym_static] = ACTIONS(236), - [anon_sym_while] = ACTIONS(236), - [sym_numeric_literal] = ACTIONS(257), - [aux_sym_string_literal_token1] = ACTIONS(260), - [sym_shortstring_literal] = ACTIONS(263), - [anon_sym_true] = ACTIONS(266), - [anon_sym_false] = ACTIONS(266), - [anon_sym_DOLLAR] = ACTIONS(269), - [sym_identifier] = ACTIONS(236), - [sym_mutable_specifier] = ACTIONS(236), - [sym_super] = ACTIONS(236), - [sym_line_comment] = ACTIONS(3), - }, - [23] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(461), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(446), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(272), - [anon_sym_SEMI] = ACTIONS(272), - [anon_sym_EQ] = ACTIONS(274), + [anon_sym_RBRACE] = ACTIONS(231), + [anon_sym_SEMI] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(233), [anon_sym_BANG] = ACTIONS(227), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), + [anon_sym_RBRACK] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(231), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(227), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(272), + [anon_sym_RPAREN] = ACTIONS(231), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -12246,32 +12181,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(274), - [anon_sym_DASH] = ACTIONS(276), - [anon_sym_SLASH] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(272), + [anon_sym_LT] = ACTIONS(233), + [anon_sym_GT] = ACTIONS(233), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(233), + [anon_sym_PERCENT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(231), [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_AMP_AMP] = ACTIONS(272), - [anon_sym_PIPE_PIPE] = ACTIONS(272), - [anon_sym_LT_LT] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_PLUS_EQ] = ACTIONS(272), - [anon_sym_DASH_EQ] = ACTIONS(272), - [anon_sym_STAR_EQ] = ACTIONS(272), - [anon_sym_SLASH_EQ] = ACTIONS(272), - [anon_sym_PERCENT_EQ] = ACTIONS(272), - [anon_sym_EQ_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(233), + [anon_sym_AMP_AMP] = ACTIONS(231), + [anon_sym_PIPE_PIPE] = ACTIONS(231), + [anon_sym_LT_LT] = ACTIONS(231), + [anon_sym_GT_GT] = ACTIONS(231), + [anon_sym_PLUS_EQ] = ACTIONS(231), + [anon_sym_DASH_EQ] = ACTIONS(231), + [anon_sym_STAR_EQ] = ACTIONS(231), + [anon_sym_SLASH_EQ] = ACTIONS(231), + [anon_sym_PERCENT_EQ] = ACTIONS(231), + [anon_sym_EQ_EQ] = ACTIONS(231), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_GT_EQ] = ACTIONS(231), + [anon_sym_LT_EQ] = ACTIONS(231), [anon_sym_AT] = ACTIONS(19), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_QMARK] = ACTIONS(272), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(231), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), @@ -12290,40 +12225,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, + [23] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(240), + [anon_sym_impl] = ACTIONS(242), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_trait] = ACTIONS(242), + [anon_sym_type] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(248), + [anon_sym_const] = ACTIONS(242), + [anon_sym_EQ] = ACTIONS(248), + [anon_sym_BANG] = ACTIONS(248), + [anon_sym_POUND] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(251), + [anon_sym_RBRACK] = ACTIONS(240), + [anon_sym_mod] = ACTIONS(242), + [anon_sym_struct] = ACTIONS(242), + [anon_sym_enum] = ACTIONS(242), + [anon_sym_COMMA] = ACTIONS(245), + [anon_sym_fn] = ACTIONS(242), + [anon_sym_DASH_GT] = ACTIONS(245), + [anon_sym_let] = ACTIONS(242), + [anon_sym_use] = ACTIONS(242), + [anon_sym_COLON_COLON] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LPAREN] = ACTIONS(254), + [anon_sym__] = ACTIONS(248), + [anon_sym_RPAREN] = ACTIONS(240), + [anon_sym_u8] = ACTIONS(257), + [anon_sym_i8] = ACTIONS(257), + [anon_sym_u16] = ACTIONS(257), + [anon_sym_i16] = ACTIONS(257), + [anon_sym_u32] = ACTIONS(257), + [anon_sym_i32] = ACTIONS(257), + [anon_sym_u64] = ACTIONS(257), + [anon_sym_i64] = ACTIONS(257), + [anon_sym_u128] = ACTIONS(257), + [anon_sym_i128] = ACTIONS(257), + [anon_sym_usize] = ACTIONS(257), + [anon_sym_bool] = ACTIONS(257), + [anon_sym_ByteArray] = ACTIONS(257), + [anon_sym_felt252] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(248), + [anon_sym_PLUS] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(248), + [anon_sym_PERCENT] = ACTIONS(248), + [anon_sym_CARET] = ACTIONS(248), + [anon_sym_TILDE] = ACTIONS(245), + [anon_sym_AMP] = ACTIONS(248), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_AMP_AMP] = ACTIONS(245), + [anon_sym_PIPE_PIPE] = ACTIONS(245), + [anon_sym_LT_LT] = ACTIONS(245), + [anon_sym_GT_GT] = ACTIONS(245), + [anon_sym_PLUS_EQ] = ACTIONS(245), + [anon_sym_DASH_EQ] = ACTIONS(245), + [anon_sym_STAR_EQ] = ACTIONS(245), + [anon_sym_SLASH_EQ] = ACTIONS(245), + [anon_sym_PERCENT_EQ] = ACTIONS(245), + [anon_sym_CARET_EQ] = ACTIONS(245), + [anon_sym_AMP_EQ] = ACTIONS(245), + [anon_sym_PIPE_EQ] = ACTIONS(245), + [anon_sym_EQ_EQ] = ACTIONS(245), + [anon_sym_BANG_EQ] = ACTIONS(245), + [anon_sym_GT_EQ] = ACTIONS(245), + [anon_sym_LT_EQ] = ACTIONS(245), + [anon_sym_AT] = ACTIONS(245), + [anon_sym_DOT_DOT] = ACTIONS(245), + [anon_sym_DOT] = ACTIONS(248), + [anon_sym_EQ_GT] = ACTIONS(245), + [anon_sym_QMARK] = ACTIONS(245), + [anon_sym_break] = ACTIONS(242), + [anon_sym_continue] = ACTIONS(242), + [anon_sym_default] = ACTIONS(242), + [anon_sym_if] = ACTIONS(242), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_nopanic] = ACTIONS(242), + [anon_sym_loop] = ACTIONS(242), + [anon_sym_match] = ACTIONS(242), + [anon_sym_pub] = ACTIONS(242), + [anon_sym_return] = ACTIONS(242), + [anon_sym_static] = ACTIONS(242), + [anon_sym_while] = ACTIONS(242), + [sym_numeric_literal] = ACTIONS(263), + [aux_sym_string_literal_token1] = ACTIONS(266), + [sym_shortstring_literal] = ACTIONS(269), + [anon_sym_true] = ACTIONS(272), + [anon_sym_false] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(275), + [sym_identifier] = ACTIONS(242), + [sym_mutable_specifier] = ACTIONS(242), + [sym_super] = ACTIONS(242), + [sym_line_comment] = ACTIONS(3), + }, [24] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(280), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(290), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -12338,94 +12377,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [25] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(306), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(306), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -12440,94 +12479,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [26] = { - [sym_delim_token_tree] = STATE(51), - [sym__delim_tokens] = STATE(51), - [sym__literal] = STATE(51), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(51), - [aux_sym_delim_token_tree_repeat1] = STATE(51), + [sym_delim_token_tree] = STATE(39), + [sym__delim_tokens] = STATE(39), + [sym__literal] = STATE(39), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(39), + [aux_sym_delim_token_tree_repeat1] = STATE(39), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(308), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(308), - [anon_sym_type] = ACTIONS(308), - [anon_sym_const] = ACTIONS(308), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(310), - [anon_sym_mod] = ACTIONS(308), - [anon_sym_struct] = ACTIONS(308), - [anon_sym_enum] = ACTIONS(308), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(308), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(308), - [anon_sym_use] = ACTIONS(308), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(308), + [anon_sym_impl] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(310), + [anon_sym_type] = ACTIONS(310), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(310), + [anon_sym_struct] = ACTIONS(310), + [anon_sym_enum] = ACTIONS(310), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(310), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(310), + [anon_sym_use] = ACTIONS(310), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -12542,94 +12581,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(308), - [anon_sym_continue] = ACTIONS(308), - [anon_sym_default] = ACTIONS(308), - [anon_sym_if] = ACTIONS(308), - [anon_sym_extern] = ACTIONS(308), - [anon_sym_nopanic] = ACTIONS(308), - [anon_sym_loop] = ACTIONS(308), - [anon_sym_match] = ACTIONS(308), - [anon_sym_pub] = ACTIONS(308), - [anon_sym_return] = ACTIONS(308), - [anon_sym_static] = ACTIONS(308), - [anon_sym_while] = ACTIONS(308), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(310), + [anon_sym_continue] = ACTIONS(310), + [anon_sym_default] = ACTIONS(310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_extern] = ACTIONS(310), + [anon_sym_nopanic] = ACTIONS(310), + [anon_sym_loop] = ACTIONS(310), + [anon_sym_match] = ACTIONS(310), + [anon_sym_pub] = ACTIONS(310), + [anon_sym_return] = ACTIONS(310), + [anon_sym_static] = ACTIONS(310), + [anon_sym_while] = ACTIONS(310), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(312), - [sym_identifier] = ACTIONS(308), - [sym_mutable_specifier] = ACTIONS(308), - [sym_super] = ACTIONS(308), + [sym_identifier] = ACTIONS(310), + [sym_mutable_specifier] = ACTIONS(310), + [sym_super] = ACTIONS(310), [sym_line_comment] = ACTIONS(3), }, [27] = { - [sym_delim_token_tree] = STATE(37), - [sym__delim_tokens] = STATE(37), - [sym__literal] = STATE(37), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(37), - [aux_sym_delim_token_tree_repeat1] = STATE(37), + [sym_delim_token_tree] = STATE(53), + [sym__delim_tokens] = STATE(53), + [sym__literal] = STATE(53), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(53), + [aux_sym_delim_token_tree_repeat1] = STATE(53), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(314), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(314), - [anon_sym_type] = ACTIONS(314), - [anon_sym_const] = ACTIONS(314), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(314), - [anon_sym_struct] = ACTIONS(314), - [anon_sym_enum] = ACTIONS(314), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(314), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(314), - [anon_sym_use] = ACTIONS(314), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_impl] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(316), + [anon_sym_type] = ACTIONS(316), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(316), + [anon_sym_struct] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(316), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(316), + [anon_sym_use] = ACTIONS(316), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -12644,94 +12683,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(314), - [anon_sym_continue] = ACTIONS(314), - [anon_sym_default] = ACTIONS(314), - [anon_sym_if] = ACTIONS(314), - [anon_sym_extern] = ACTIONS(314), - [anon_sym_nopanic] = ACTIONS(314), - [anon_sym_loop] = ACTIONS(314), - [anon_sym_match] = ACTIONS(314), - [anon_sym_pub] = ACTIONS(314), - [anon_sym_return] = ACTIONS(314), - [anon_sym_static] = ACTIONS(314), - [anon_sym_while] = ACTIONS(314), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(316), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_default] = ACTIONS(316), + [anon_sym_if] = ACTIONS(316), + [anon_sym_extern] = ACTIONS(316), + [anon_sym_nopanic] = ACTIONS(316), + [anon_sym_loop] = ACTIONS(316), + [anon_sym_match] = ACTIONS(316), + [anon_sym_pub] = ACTIONS(316), + [anon_sym_return] = ACTIONS(316), + [anon_sym_static] = ACTIONS(316), + [anon_sym_while] = ACTIONS(316), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(318), - [sym_identifier] = ACTIONS(314), - [sym_mutable_specifier] = ACTIONS(314), - [sym_super] = ACTIONS(314), + [sym_identifier] = ACTIONS(316), + [sym_mutable_specifier] = ACTIONS(316), + [sym_super] = ACTIONS(316), [sym_line_comment] = ACTIONS(3), }, [28] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(29), + [sym__delim_tokens] = STATE(29), + [sym__literal] = STATE(29), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(29), + [aux_sym_delim_token_tree_repeat1] = STATE(29), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(280), + [anon_sym_impl] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(320), + [anon_sym_type] = ACTIONS(320), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(308), + [anon_sym_mod] = ACTIONS(320), + [anon_sym_struct] = ACTIONS(320), + [anon_sym_enum] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(320), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(320), + [anon_sym_use] = ACTIONS(320), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -12746,94 +12785,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(320), + [anon_sym_continue] = ACTIONS(320), + [anon_sym_default] = ACTIONS(320), + [anon_sym_if] = ACTIONS(320), + [anon_sym_extern] = ACTIONS(320), + [anon_sym_nopanic] = ACTIONS(320), + [anon_sym_loop] = ACTIONS(320), + [anon_sym_match] = ACTIONS(320), + [anon_sym_pub] = ACTIONS(320), + [anon_sym_return] = ACTIONS(320), + [anon_sym_static] = ACTIONS(320), + [anon_sym_while] = ACTIONS(320), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_identifier] = ACTIONS(320), + [sym_mutable_specifier] = ACTIONS(320), + [sym_super] = ACTIONS(320), [sym_line_comment] = ACTIONS(3), }, [29] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(280), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(324), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -12848,94 +12887,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [30] = { - [sym_delim_token_tree] = STATE(53), - [sym__delim_tokens] = STATE(53), - [sym__literal] = STATE(53), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(53), - [aux_sym_delim_token_tree_repeat1] = STATE(53), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(320), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(320), - [anon_sym_type] = ACTIONS(320), - [anon_sym_const] = ACTIONS(320), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(320), - [anon_sym_struct] = ACTIONS(320), - [anon_sym_enum] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(320), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(320), - [anon_sym_use] = ACTIONS(320), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(322), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(326), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -12950,94 +12989,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(320), - [anon_sym_continue] = ACTIONS(320), - [anon_sym_default] = ACTIONS(320), - [anon_sym_if] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(320), - [anon_sym_nopanic] = ACTIONS(320), - [anon_sym_loop] = ACTIONS(320), - [anon_sym_match] = ACTIONS(320), - [anon_sym_pub] = ACTIONS(320), - [anon_sym_return] = ACTIONS(320), - [anon_sym_static] = ACTIONS(320), - [anon_sym_while] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(324), - [sym_identifier] = ACTIONS(320), - [sym_mutable_specifier] = ACTIONS(320), - [sym_super] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [31] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(326), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(324), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -13052,94 +13091,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [32] = { - [sym_delim_token_tree] = STATE(28), - [sym__delim_tokens] = STATE(28), - [sym__literal] = STATE(28), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(28), - [aux_sym_delim_token_tree_repeat1] = STATE(28), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(326), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), + [sym_line_comment] = ACTIONS(3), + }, + [33] = { + [sym_delim_token_tree] = STATE(31), + [sym__delim_tokens] = STATE(31), + [sym__literal] = STATE(31), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(31), + [aux_sym_delim_token_tree_repeat1] = STATE(31), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_impl] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(282), [anon_sym_trait] = ACTIONS(328), [anon_sym_type] = ACTIONS(328), + [anon_sym_COLON] = ACTIONS(284), [anon_sym_const] = ACTIONS(328), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), [anon_sym_mod] = ACTIONS(328), [anon_sym_struct] = ACTIONS(328), [anon_sym_enum] = ACTIONS(328), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(282), [anon_sym_fn] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_DASH_GT] = ACTIONS(282), [anon_sym_let] = ACTIONS(328), [anon_sym_use] = ACTIONS(328), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(308), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -13154,37 +13295,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), [anon_sym_break] = ACTIONS(328), [anon_sym_continue] = ACTIONS(328), [anon_sym_default] = ACTIONS(328), @@ -13202,46 +13343,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(332), + [anon_sym_DOLLAR] = ACTIONS(330), [sym_identifier] = ACTIONS(328), [sym_mutable_specifier] = ACTIONS(328), [sym_super] = ACTIONS(328), [sym_line_comment] = ACTIONS(3), }, - [33] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [34] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(326), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -13256,94 +13397,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, - [34] = { - [sym_delim_token_tree] = STATE(52), - [sym__delim_tokens] = STATE(52), - [sym__literal] = STATE(52), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(52), - [aux_sym_delim_token_tree_repeat1] = STATE(52), + [35] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(310), - [anon_sym_impl] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(334), - [anon_sym_type] = ACTIONS(334), - [anon_sym_const] = ACTIONS(334), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(334), - [anon_sym_struct] = ACTIONS(334), - [anon_sym_enum] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(334), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(334), - [anon_sym_use] = ACTIONS(334), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(290), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -13358,94 +13499,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(334), - [anon_sym_continue] = ACTIONS(334), - [anon_sym_default] = ACTIONS(334), - [anon_sym_if] = ACTIONS(334), - [anon_sym_extern] = ACTIONS(334), - [anon_sym_nopanic] = ACTIONS(334), - [anon_sym_loop] = ACTIONS(334), - [anon_sym_match] = ACTIONS(334), - [anon_sym_pub] = ACTIONS(334), - [anon_sym_return] = ACTIONS(334), - [anon_sym_static] = ACTIONS(334), - [anon_sym_while] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(336), - [sym_identifier] = ACTIONS(334), - [sym_mutable_specifier] = ACTIONS(334), - [sym_super] = ACTIONS(334), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, - [35] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [36] = { + [sym_delim_token_tree] = STATE(30), + [sym__delim_tokens] = STATE(30), + [sym__literal] = STATE(30), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(30), + [aux_sym_delim_token_tree_repeat1] = STATE(30), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_impl] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(332), + [anon_sym_type] = ACTIONS(332), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(332), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(332), + [anon_sym_struct] = ACTIONS(332), + [anon_sym_enum] = ACTIONS(332), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(332), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(332), + [anon_sym_use] = ACTIONS(332), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(334), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -13460,94 +13601,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(332), + [anon_sym_continue] = ACTIONS(332), + [anon_sym_default] = ACTIONS(332), + [anon_sym_if] = ACTIONS(332), + [anon_sym_extern] = ACTIONS(332), + [anon_sym_nopanic] = ACTIONS(332), + [anon_sym_loop] = ACTIONS(332), + [anon_sym_match] = ACTIONS(332), + [anon_sym_pub] = ACTIONS(332), + [anon_sym_return] = ACTIONS(332), + [anon_sym_static] = ACTIONS(332), + [anon_sym_while] = ACTIONS(332), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(336), + [sym_identifier] = ACTIONS(332), + [sym_mutable_specifier] = ACTIONS(332), + [sym_super] = ACTIONS(332), [sym_line_comment] = ACTIONS(3), }, - [36] = { - [sym_delim_token_tree] = STATE(29), - [sym__delim_tokens] = STATE(29), - [sym__literal] = STATE(29), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(29), - [aux_sym_delim_token_tree_repeat1] = STATE(29), + [37] = { + [sym_delim_token_tree] = STATE(32), + [sym__delim_tokens] = STATE(32), + [sym__literal] = STATE(32), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(32), + [aux_sym_delim_token_tree_repeat1] = STATE(32), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_impl] = ACTIONS(338), - [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(282), [anon_sym_trait] = ACTIONS(338), [anon_sym_type] = ACTIONS(338), + [anon_sym_COLON] = ACTIONS(284), [anon_sym_const] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(334), [anon_sym_mod] = ACTIONS(338), [anon_sym_struct] = ACTIONS(338), [anon_sym_enum] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(282), [anon_sym_fn] = ACTIONS(338), - [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_DASH_GT] = ACTIONS(282), [anon_sym_let] = ACTIONS(338), [anon_sym_use] = ACTIONS(338), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -13562,37 +13703,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), [anon_sym_break] = ACTIONS(338), [anon_sym_continue] = ACTIONS(338), [anon_sym_default] = ACTIONS(338), @@ -13616,142 +13757,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(338), [sym_line_comment] = ACTIONS(3), }, - [37] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(306), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), - [sym_line_comment] = ACTIONS(3), - }, [38] = { - [sym_delim_token_tree] = STATE(31), - [sym__delim_tokens] = STATE(31), - [sym__literal] = STATE(31), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(31), - [aux_sym_delim_token_tree_repeat1] = STATE(31), + [sym_delim_token_tree] = STATE(34), + [sym__delim_tokens] = STATE(34), + [sym__literal] = STATE(34), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(34), + [aux_sym_delim_token_tree_repeat1] = STATE(34), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(334), [anon_sym_impl] = ACTIONS(342), - [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(282), [anon_sym_trait] = ACTIONS(342), [anon_sym_type] = ACTIONS(342), + [anon_sym_COLON] = ACTIONS(284), [anon_sym_const] = ACTIONS(342), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), [anon_sym_mod] = ACTIONS(342), [anon_sym_struct] = ACTIONS(342), [anon_sym_enum] = ACTIONS(342), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(282), [anon_sym_fn] = ACTIONS(342), - [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_DASH_GT] = ACTIONS(282), [anon_sym_let] = ACTIONS(342), [anon_sym_use] = ACTIONS(342), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(344), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -13766,37 +13805,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), [anon_sym_break] = ACTIONS(342), [anon_sym_continue] = ACTIONS(342), [anon_sym_default] = ACTIONS(342), @@ -13814,46 +13853,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(346), + [anon_sym_DOLLAR] = ACTIONS(344), [sym_identifier] = ACTIONS(342), [sym_mutable_specifier] = ACTIONS(342), [sym_super] = ACTIONS(342), [sym_line_comment] = ACTIONS(3), }, [39] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(306), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -13868,94 +13907,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [40] = { - [sym_delim_token_tree] = STATE(50), - [sym__delim_tokens] = STATE(50), - [sym__literal] = STATE(50), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(50), - [aux_sym_delim_token_tree_repeat1] = STATE(50), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(348), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(348), - [anon_sym_type] = ACTIONS(348), - [anon_sym_const] = ACTIONS(348), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(348), - [anon_sym_struct] = ACTIONS(348), - [anon_sym_enum] = ACTIONS(348), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(348), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(348), - [anon_sym_use] = ACTIONS(348), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(306), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -13970,94 +14009,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(348), - [anon_sym_default] = ACTIONS(348), - [anon_sym_if] = ACTIONS(348), - [anon_sym_extern] = ACTIONS(348), - [anon_sym_nopanic] = ACTIONS(348), - [anon_sym_loop] = ACTIONS(348), - [anon_sym_match] = ACTIONS(348), - [anon_sym_pub] = ACTIONS(348), - [anon_sym_return] = ACTIONS(348), - [anon_sym_static] = ACTIONS(348), - [anon_sym_while] = ACTIONS(348), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(350), - [sym_identifier] = ACTIONS(348), - [sym_mutable_specifier] = ACTIONS(348), - [sym_super] = ACTIONS(348), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [41] = { - [sym_delim_token_tree] = STATE(39), - [sym__delim_tokens] = STATE(39), - [sym__literal] = STATE(39), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(39), - [aux_sym_delim_token_tree_repeat1] = STATE(39), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(352), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(352), - [anon_sym_type] = ACTIONS(352), - [anon_sym_const] = ACTIONS(352), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(316), - [anon_sym_mod] = ACTIONS(352), - [anon_sym_struct] = ACTIONS(352), - [anon_sym_enum] = ACTIONS(352), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(352), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(352), - [anon_sym_use] = ACTIONS(352), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -14072,94 +14111,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(352), - [anon_sym_continue] = ACTIONS(352), - [anon_sym_default] = ACTIONS(352), - [anon_sym_if] = ACTIONS(352), - [anon_sym_extern] = ACTIONS(352), - [anon_sym_nopanic] = ACTIONS(352), - [anon_sym_loop] = ACTIONS(352), - [anon_sym_match] = ACTIONS(352), - [anon_sym_pub] = ACTIONS(352), - [anon_sym_return] = ACTIONS(352), - [anon_sym_static] = ACTIONS(352), - [anon_sym_while] = ACTIONS(352), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(354), - [sym_identifier] = ACTIONS(352), - [sym_mutable_specifier] = ACTIONS(352), - [sym_super] = ACTIONS(352), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [42] = { - [sym_delim_token_tree] = STATE(33), - [sym__delim_tokens] = STATE(33), - [sym__literal] = STATE(33), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(33), - [aux_sym_delim_token_tree_repeat1] = STATE(33), + [sym_delim_token_tree] = STATE(51), + [sym__delim_tokens] = STATE(51), + [sym__literal] = STATE(51), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(51), + [aux_sym_delim_token_tree_repeat1] = STATE(51), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(346), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(346), + [anon_sym_type] = ACTIONS(346), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(346), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_mod] = ACTIONS(346), + [anon_sym_struct] = ACTIONS(346), + [anon_sym_enum] = ACTIONS(346), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(346), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(346), + [anon_sym_use] = ACTIONS(346), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(346), + [anon_sym_continue] = ACTIONS(346), + [anon_sym_default] = ACTIONS(346), + [anon_sym_if] = ACTIONS(346), + [anon_sym_extern] = ACTIONS(346), + [anon_sym_nopanic] = ACTIONS(346), + [anon_sym_loop] = ACTIONS(346), + [anon_sym_match] = ACTIONS(346), + [anon_sym_pub] = ACTIONS(346), + [anon_sym_return] = ACTIONS(346), + [anon_sym_static] = ACTIONS(346), + [anon_sym_while] = ACTIONS(346), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(348), + [sym_identifier] = ACTIONS(346), + [sym_mutable_specifier] = ACTIONS(346), + [sym_super] = ACTIONS(346), + [sym_line_comment] = ACTIONS(3), + }, + [43] = { + [sym_delim_token_tree] = STATE(25), + [sym__delim_tokens] = STATE(25), + [sym__literal] = STATE(25), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(25), + [aux_sym_delim_token_tree_repeat1] = STATE(25), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_impl] = ACTIONS(350), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(350), + [anon_sym_type] = ACTIONS(350), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(350), + [anon_sym_struct] = ACTIONS(350), + [anon_sym_enum] = ACTIONS(350), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(350), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(350), + [anon_sym_use] = ACTIONS(350), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(352), + [anon_sym_u8] = ACTIONS(292), + [anon_sym_i8] = ACTIONS(292), + [anon_sym_u16] = ACTIONS(292), + [anon_sym_i16] = ACTIONS(292), + [anon_sym_u32] = ACTIONS(292), + [anon_sym_i32] = ACTIONS(292), + [anon_sym_u64] = ACTIONS(292), + [anon_sym_i64] = ACTIONS(292), + [anon_sym_u128] = ACTIONS(292), + [anon_sym_i128] = ACTIONS(292), + [anon_sym_usize] = ACTIONS(292), + [anon_sym_bool] = ACTIONS(292), + [anon_sym_ByteArray] = ACTIONS(292), + [anon_sym_felt252] = ACTIONS(292), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(294), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(350), + [anon_sym_default] = ACTIONS(350), + [anon_sym_if] = ACTIONS(350), + [anon_sym_extern] = ACTIONS(350), + [anon_sym_nopanic] = ACTIONS(350), + [anon_sym_loop] = ACTIONS(350), + [anon_sym_match] = ACTIONS(350), + [anon_sym_pub] = ACTIONS(350), + [anon_sym_return] = ACTIONS(350), + [anon_sym_static] = ACTIONS(350), + [anon_sym_while] = ACTIONS(350), + [sym_numeric_literal] = ACTIONS(296), + [aux_sym_string_literal_token1] = ACTIONS(298), + [sym_shortstring_literal] = ACTIONS(300), + [anon_sym_true] = ACTIONS(302), + [anon_sym_false] = ACTIONS(302), + [anon_sym_DOLLAR] = ACTIONS(354), + [sym_identifier] = ACTIONS(350), + [sym_mutable_specifier] = ACTIONS(350), + [sym_super] = ACTIONS(350), + [sym_line_comment] = ACTIONS(3), + }, + [44] = { + [sym_delim_token_tree] = STATE(47), + [sym__delim_tokens] = STATE(47), + [sym__literal] = STATE(47), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(47), + [aux_sym_delim_token_tree_repeat1] = STATE(47), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), [anon_sym_impl] = ACTIONS(356), - [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(282), [anon_sym_trait] = ACTIONS(356), [anon_sym_type] = ACTIONS(356), + [anon_sym_COLON] = ACTIONS(284), [anon_sym_const] = ACTIONS(356), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(344), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), [anon_sym_mod] = ACTIONS(356), [anon_sym_struct] = ACTIONS(356), [anon_sym_enum] = ACTIONS(356), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(282), [anon_sym_fn] = ACTIONS(356), - [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_DASH_GT] = ACTIONS(282), [anon_sym_let] = ACTIONS(356), [anon_sym_use] = ACTIONS(356), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(314), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -14174,37 +14417,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), [anon_sym_break] = ACTIONS(356), [anon_sym_continue] = ACTIONS(356), [anon_sym_default] = ACTIONS(356), @@ -14228,40 +14471,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(356), [sym_line_comment] = ACTIONS(3), }, - [43] = { - [sym_delim_token_tree] = STATE(35), - [sym__delim_tokens] = STATE(35), - [sym__literal] = STATE(35), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(35), - [aux_sym_delim_token_tree_repeat1] = STATE(35), + [45] = { + [sym_delim_token_tree] = STATE(40), + [sym__delim_tokens] = STATE(40), + [sym__literal] = STATE(40), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(40), + [aux_sym_delim_token_tree_repeat1] = STATE(40), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(344), [anon_sym_impl] = ACTIONS(360), - [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(282), [anon_sym_trait] = ACTIONS(360), [anon_sym_type] = ACTIONS(360), + [anon_sym_COLON] = ACTIONS(284), [anon_sym_const] = ACTIONS(360), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(352), [anon_sym_mod] = ACTIONS(360), [anon_sym_struct] = ACTIONS(360), [anon_sym_enum] = ACTIONS(360), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(282), [anon_sym_fn] = ACTIONS(360), - [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_DASH_GT] = ACTIONS(282), [anon_sym_let] = ACTIONS(360), [anon_sym_use] = ACTIONS(360), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -14276,37 +14519,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), [anon_sym_break] = ACTIONS(360), [anon_sym_continue] = ACTIONS(360), [anon_sym_default] = ACTIONS(360), @@ -14330,40 +14573,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(360), [sym_line_comment] = ACTIONS(3), }, - [44] = { - [sym_delim_token_tree] = STATE(24), - [sym__delim_tokens] = STATE(24), - [sym__literal] = STATE(24), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(24), - [aux_sym_delim_token_tree_repeat1] = STATE(24), + [46] = { + [sym_delim_token_tree] = STATE(41), + [sym__delim_tokens] = STATE(41), + [sym__literal] = STATE(41), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(41), + [aux_sym_delim_token_tree_repeat1] = STATE(41), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(330), + [anon_sym_RBRACE] = ACTIONS(352), [anon_sym_impl] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(282), [anon_sym_trait] = ACTIONS(364), [anon_sym_type] = ACTIONS(364), + [anon_sym_COLON] = ACTIONS(284), [anon_sym_const] = ACTIONS(364), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), [anon_sym_mod] = ACTIONS(364), [anon_sym_struct] = ACTIONS(364), [anon_sym_enum] = ACTIONS(364), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(282), [anon_sym_fn] = ACTIONS(364), - [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_DASH_GT] = ACTIONS(282), [anon_sym_let] = ACTIONS(364), [anon_sym_use] = ACTIONS(364), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -14378,37 +14621,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), [anon_sym_break] = ACTIONS(364), [anon_sym_continue] = ACTIONS(364), [anon_sym_default] = ACTIONS(364), @@ -14432,40 +14675,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(364), [sym_line_comment] = ACTIONS(3), }, - [45] = { - [sym_delim_token_tree] = STATE(49), - [sym__delim_tokens] = STATE(49), - [sym__literal] = STATE(49), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(49), - [aux_sym_delim_token_tree_repeat1] = STATE(49), + [47] = { + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(368), - [anon_sym_type] = ACTIONS(368), - [anon_sym_const] = ACTIONS(368), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(322), - [anon_sym_mod] = ACTIONS(368), - [anon_sym_struct] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(368), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(368), - [anon_sym_use] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -14480,94 +14723,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(368), - [anon_sym_continue] = ACTIONS(368), - [anon_sym_default] = ACTIONS(368), - [anon_sym_if] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(368), - [anon_sym_nopanic] = ACTIONS(368), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(368), - [anon_sym_pub] = ACTIONS(368), - [anon_sym_return] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_while] = ACTIONS(368), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_identifier] = ACTIONS(368), - [sym_mutable_specifier] = ACTIONS(368), - [sym_super] = ACTIONS(368), + [anon_sym_DOLLAR] = ACTIONS(304), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, - [46] = { - [sym_delim_token_tree] = STATE(48), - [sym__delim_tokens] = STATE(48), - [sym__literal] = STATE(48), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(48), - [aux_sym_delim_token_tree_repeat1] = STATE(48), + [48] = { + [sym_delim_token_tree] = STATE(52), + [sym__delim_tokens] = STATE(52), + [sym__literal] = STATE(52), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(52), + [aux_sym_delim_token_tree_repeat1] = STATE(52), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(370), [anon_sym_impl] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(282), [anon_sym_trait] = ACTIONS(372), [anon_sym_type] = ACTIONS(372), + [anon_sym_COLON] = ACTIONS(284), [anon_sym_const] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), [anon_sym_mod] = ACTIONS(372), [anon_sym_struct] = ACTIONS(372), [anon_sym_enum] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(282), [anon_sym_fn] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_DASH_GT] = ACTIONS(282), [anon_sym_let] = ACTIONS(372), [anon_sym_use] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -14582,37 +14825,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), [anon_sym_break] = ACTIONS(372), [anon_sym_continue] = ACTIONS(372), [anon_sym_default] = ACTIONS(372), @@ -14636,40 +14879,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(372), [sym_line_comment] = ACTIONS(3), }, - [47] = { - [sym_delim_token_tree] = STATE(25), - [sym__delim_tokens] = STATE(25), - [sym__literal] = STATE(25), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(25), - [aux_sym_delim_token_tree_repeat1] = STATE(25), + [49] = { + [sym_delim_token_tree] = STATE(35), + [sym__delim_tokens] = STATE(35), + [sym__literal] = STATE(35), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(35), + [aux_sym_delim_token_tree_repeat1] = STATE(35), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(316), [anon_sym_impl] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(282), [anon_sym_trait] = ACTIONS(376), [anon_sym_type] = ACTIONS(376), + [anon_sym_COLON] = ACTIONS(284), [anon_sym_const] = ACTIONS(376), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(370), [anon_sym_mod] = ACTIONS(376), [anon_sym_struct] = ACTIONS(376), [anon_sym_enum] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(282), [anon_sym_fn] = ACTIONS(376), - [anon_sym_DASH_GT] = ACTIONS(284), + [anon_sym_DASH_GT] = ACTIONS(282), [anon_sym_let] = ACTIONS(376), [anon_sym_use] = ACTIONS(376), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -14684,37 +14927,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), [anon_sym_break] = ACTIONS(376), [anon_sym_continue] = ACTIONS(376), [anon_sym_default] = ACTIONS(376), @@ -14738,244 +14981,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(376), [sym_line_comment] = ACTIONS(3), }, - [48] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), - [sym_line_comment] = ACTIONS(3), - }, - [49] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(380), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), - [sym_line_comment] = ACTIONS(3), - }, [50] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(24), + [sym__delim_tokens] = STATE(24), + [sym__literal] = STATE(24), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(24), + [aux_sym_delim_token_tree_repeat1] = STATE(24), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(382), + [anon_sym_impl] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(380), + [anon_sym_type] = ACTIONS(380), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(380), + [anon_sym_struct] = ACTIONS(380), + [anon_sym_enum] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(380), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(380), + [anon_sym_use] = ACTIONS(380), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), + [anon_sym_RPAREN] = ACTIONS(370), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -14990,94 +15029,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(380), + [anon_sym_continue] = ACTIONS(380), + [anon_sym_default] = ACTIONS(380), + [anon_sym_if] = ACTIONS(380), + [anon_sym_extern] = ACTIONS(380), + [anon_sym_nopanic] = ACTIONS(380), + [anon_sym_loop] = ACTIONS(380), + [anon_sym_match] = ACTIONS(380), + [anon_sym_pub] = ACTIONS(380), + [anon_sym_return] = ACTIONS(380), + [anon_sym_static] = ACTIONS(380), + [anon_sym_while] = ACTIONS(380), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_identifier] = ACTIONS(380), + [sym_mutable_specifier] = ACTIONS(380), + [sym_super] = ACTIONS(380), [sym_line_comment] = ACTIONS(3), }, [51] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_RBRACK] = ACTIONS(382), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(368), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -15092,94 +15131,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [52] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(382), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(290), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -15194,94 +15233,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [53] = { - [sym_delim_token_tree] = STATE(22), - [sym__delim_tokens] = STATE(22), - [sym__literal] = STATE(22), - [sym_negative_literal] = STATE(63), - [sym_string_literal] = STATE(63), - [sym_boolean_literal] = STATE(63), - [sym__non_delim_token] = STATE(22), - [aux_sym_delim_token_tree_repeat1] = STATE(22), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(62), + [sym_string_literal] = STATE(62), + [sym_boolean_literal] = STATE(62), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(282), - [anon_sym_SEMI] = ACTIONS(284), - [anon_sym_trait] = ACTIONS(282), - [anon_sym_type] = ACTIONS(282), - [anon_sym_const] = ACTIONS(282), - [anon_sym_COLON] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [anon_sym_BANG] = ACTIONS(286), - [anon_sym_POUND] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(288), - [anon_sym_mod] = ACTIONS(282), - [anon_sym_struct] = ACTIONS(282), - [anon_sym_enum] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_fn] = ACTIONS(282), - [anon_sym_DASH_GT] = ACTIONS(284), - [anon_sym_let] = ACTIONS(282), - [anon_sym_use] = ACTIONS(282), - [anon_sym_COLON_COLON] = ACTIONS(284), - [anon_sym_STAR] = ACTIONS(286), - [anon_sym_LPAREN] = ACTIONS(290), - [anon_sym__] = ACTIONS(286), - [anon_sym_RPAREN] = ACTIONS(380), + [anon_sym_RBRACE] = ACTIONS(368), + [anon_sym_impl] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(282), + [anon_sym_trait] = ACTIONS(280), + [anon_sym_type] = ACTIONS(280), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_const] = ACTIONS(280), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_mod] = ACTIONS(280), + [anon_sym_struct] = ACTIONS(280), + [anon_sym_enum] = ACTIONS(280), + [anon_sym_COMMA] = ACTIONS(282), + [anon_sym_fn] = ACTIONS(280), + [anon_sym_DASH_GT] = ACTIONS(282), + [anon_sym_let] = ACTIONS(280), + [anon_sym_use] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym__] = ACTIONS(284), [anon_sym_u8] = ACTIONS(292), [anon_sym_i8] = ACTIONS(292), [anon_sym_u16] = ACTIONS(292), @@ -15296,115 +15335,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(292), [anon_sym_ByteArray] = ACTIONS(292), [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(286), - [anon_sym_GT] = ACTIONS(286), - [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(284), + [anon_sym_GT] = ACTIONS(284), + [anon_sym_PLUS] = ACTIONS(284), [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(286), - [anon_sym_PERCENT] = ACTIONS(286), - [anon_sym_CARET] = ACTIONS(286), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_PIPE] = ACTIONS(286), - [anon_sym_AMP_AMP] = ACTIONS(284), - [anon_sym_PIPE_PIPE] = ACTIONS(284), - [anon_sym_LT_LT] = ACTIONS(284), - [anon_sym_GT_GT] = ACTIONS(284), - [anon_sym_PLUS_EQ] = ACTIONS(284), - [anon_sym_DASH_EQ] = ACTIONS(284), - [anon_sym_STAR_EQ] = ACTIONS(284), - [anon_sym_SLASH_EQ] = ACTIONS(284), - [anon_sym_PERCENT_EQ] = ACTIONS(284), - [anon_sym_CARET_EQ] = ACTIONS(284), - [anon_sym_AMP_EQ] = ACTIONS(284), - [anon_sym_PIPE_EQ] = ACTIONS(284), - [anon_sym_EQ_EQ] = ACTIONS(284), - [anon_sym_BANG_EQ] = ACTIONS(284), - [anon_sym_GT_EQ] = ACTIONS(284), - [anon_sym_LT_EQ] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(284), - [anon_sym_DOT_DOT] = ACTIONS(284), - [anon_sym_DOT] = ACTIONS(286), - [anon_sym_EQ_GT] = ACTIONS(284), - [anon_sym_QMARK] = ACTIONS(284), - [anon_sym_break] = ACTIONS(282), - [anon_sym_continue] = ACTIONS(282), - [anon_sym_default] = ACTIONS(282), - [anon_sym_if] = ACTIONS(282), - [anon_sym_extern] = ACTIONS(282), - [anon_sym_nopanic] = ACTIONS(282), - [anon_sym_loop] = ACTIONS(282), - [anon_sym_match] = ACTIONS(282), - [anon_sym_pub] = ACTIONS(282), - [anon_sym_return] = ACTIONS(282), - [anon_sym_static] = ACTIONS(282), - [anon_sym_while] = ACTIONS(282), + [anon_sym_SLASH] = ACTIONS(284), + [anon_sym_PERCENT] = ACTIONS(284), + [anon_sym_CARET] = ACTIONS(284), + [anon_sym_TILDE] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_PIPE] = ACTIONS(284), + [anon_sym_AMP_AMP] = ACTIONS(282), + [anon_sym_PIPE_PIPE] = ACTIONS(282), + [anon_sym_LT_LT] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(282), + [anon_sym_PLUS_EQ] = ACTIONS(282), + [anon_sym_DASH_EQ] = ACTIONS(282), + [anon_sym_STAR_EQ] = ACTIONS(282), + [anon_sym_SLASH_EQ] = ACTIONS(282), + [anon_sym_PERCENT_EQ] = ACTIONS(282), + [anon_sym_CARET_EQ] = ACTIONS(282), + [anon_sym_AMP_EQ] = ACTIONS(282), + [anon_sym_PIPE_EQ] = ACTIONS(282), + [anon_sym_EQ_EQ] = ACTIONS(282), + [anon_sym_BANG_EQ] = ACTIONS(282), + [anon_sym_GT_EQ] = ACTIONS(282), + [anon_sym_LT_EQ] = ACTIONS(282), + [anon_sym_AT] = ACTIONS(282), + [anon_sym_DOT_DOT] = ACTIONS(282), + [anon_sym_DOT] = ACTIONS(284), + [anon_sym_EQ_GT] = ACTIONS(282), + [anon_sym_QMARK] = ACTIONS(282), + [anon_sym_break] = ACTIONS(280), + [anon_sym_continue] = ACTIONS(280), + [anon_sym_default] = ACTIONS(280), + [anon_sym_if] = ACTIONS(280), + [anon_sym_extern] = ACTIONS(280), + [anon_sym_nopanic] = ACTIONS(280), + [anon_sym_loop] = ACTIONS(280), + [anon_sym_match] = ACTIONS(280), + [anon_sym_pub] = ACTIONS(280), + [anon_sym_return] = ACTIONS(280), + [anon_sym_static] = ACTIONS(280), + [anon_sym_while] = ACTIONS(280), [sym_numeric_literal] = ACTIONS(296), [aux_sym_string_literal_token1] = ACTIONS(298), [sym_shortstring_literal] = ACTIONS(300), [anon_sym_true] = ACTIONS(302), [anon_sym_false] = ACTIONS(302), [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(282), - [sym_mutable_specifier] = ACTIONS(282), - [sym_super] = ACTIONS(282), + [sym_identifier] = ACTIONS(280), + [sym_mutable_specifier] = ACTIONS(280), + [sym_super] = ACTIONS(280), [sym_line_comment] = ACTIONS(3), }, [54] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(738), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(746), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(233), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(233), + [anon_sym_GT] = ACTIONS(233), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(233), + [anon_sym_PERCENT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(231), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AMP] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(233), + [anon_sym_AMP_AMP] = ACTIONS(231), + [anon_sym_PIPE_PIPE] = ACTIONS(231), + [anon_sym_LT_LT] = ACTIONS(231), + [anon_sym_GT_GT] = ACTIONS(231), + [anon_sym_PLUS_EQ] = ACTIONS(231), + [anon_sym_DASH_EQ] = ACTIONS(231), + [anon_sym_STAR_EQ] = ACTIONS(231), + [anon_sym_SLASH_EQ] = ACTIONS(231), + [anon_sym_PERCENT_EQ] = ACTIONS(231), + [anon_sym_EQ_EQ] = ACTIONS(231), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_GT_EQ] = ACTIONS(231), + [anon_sym_LT_EQ] = ACTIONS(231), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_EQ_GT] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(231), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [55] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(742), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), [anon_sym_LBRACE] = ACTIONS(384), [anon_sym_EQ] = ACTIONS(225), [anon_sym_BANG] = ACTIONS(386), [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_COLON_COLON] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), [anon_sym_STAR] = ACTIONS(225), [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), [anon_sym_LT] = ACTIONS(225), [anon_sym_GT] = ACTIONS(225), [anon_sym_PLUS] = ACTIONS(225), @@ -15412,7 +15551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(225), [anon_sym_PERCENT] = ACTIONS(225), [anon_sym_CARET] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(392), + [anon_sym_TILDE] = ACTIONS(398), [anon_sym_AMP] = ACTIONS(225), [anon_sym_PIPE] = ACTIONS(225), [anon_sym_AMP_AMP] = ACTIONS(223), @@ -15428,162 +15567,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(223), [anon_sym_GT_EQ] = ACTIONS(223), [anon_sym_LT_EQ] = ACTIONS(223), - [anon_sym_AT] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(398), [anon_sym_DOT] = ACTIONS(223), [anon_sym_EQ_GT] = ACTIONS(223), [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [55] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(745), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(274), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_SLASH] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(272), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_AMP_AMP] = ACTIONS(272), - [anon_sym_PIPE_PIPE] = ACTIONS(272), - [anon_sym_LT_LT] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_PLUS_EQ] = ACTIONS(272), - [anon_sym_DASH_EQ] = ACTIONS(272), - [anon_sym_STAR_EQ] = ACTIONS(272), - [anon_sym_SLASH_EQ] = ACTIONS(272), - [anon_sym_PERCENT_EQ] = ACTIONS(272), - [anon_sym_EQ_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_LT_EQ] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_EQ_GT] = ACTIONS(272), - [anon_sym_QMARK] = ACTIONS(272), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), [sym_line_comment] = ACTIONS(3), }, [56] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(719), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(712), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(223), [anon_sym_EQ] = ACTIONS(225), [anon_sym_BANG] = ACTIONS(430), @@ -15650,41 +15689,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [57] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(721), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(714), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(274), + [anon_sym_EQ] = ACTIONS(233), [anon_sym_BANG] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(432), @@ -15704,32 +15743,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(434), [anon_sym_ByteArray] = ACTIONS(434), [anon_sym_felt252] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(274), - [anon_sym_GT] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(274), + [anon_sym_LT] = ACTIONS(233), + [anon_sym_GT] = ACTIONS(233), + [anon_sym_PLUS] = ACTIONS(233), [anon_sym_DASH] = ACTIONS(450), - [anon_sym_SLASH] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_CARET] = ACTIONS(272), + [anon_sym_SLASH] = ACTIONS(233), + [anon_sym_PERCENT] = ACTIONS(233), + [anon_sym_CARET] = ACTIONS(231), [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(274), - [anon_sym_PIPE] = ACTIONS(274), - [anon_sym_AMP_AMP] = ACTIONS(272), - [anon_sym_PIPE_PIPE] = ACTIONS(272), - [anon_sym_LT_LT] = ACTIONS(272), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_PLUS_EQ] = ACTIONS(272), - [anon_sym_DASH_EQ] = ACTIONS(272), - [anon_sym_STAR_EQ] = ACTIONS(272), - [anon_sym_SLASH_EQ] = ACTIONS(272), - [anon_sym_PERCENT_EQ] = ACTIONS(272), - [anon_sym_EQ_EQ] = ACTIONS(272), - [anon_sym_BANG_EQ] = ACTIONS(272), - [anon_sym_GT_EQ] = ACTIONS(272), - [anon_sym_LT_EQ] = ACTIONS(272), + [anon_sym_AMP] = ACTIONS(233), + [anon_sym_PIPE] = ACTIONS(233), + [anon_sym_AMP_AMP] = ACTIONS(231), + [anon_sym_PIPE_PIPE] = ACTIONS(231), + [anon_sym_LT_LT] = ACTIONS(231), + [anon_sym_GT_GT] = ACTIONS(231), + [anon_sym_PLUS_EQ] = ACTIONS(231), + [anon_sym_DASH_EQ] = ACTIONS(231), + [anon_sym_STAR_EQ] = ACTIONS(231), + [anon_sym_SLASH_EQ] = ACTIONS(231), + [anon_sym_PERCENT_EQ] = ACTIONS(231), + [anon_sym_EQ_EQ] = ACTIONS(231), + [anon_sym_BANG_EQ] = ACTIONS(231), + [anon_sym_GT_EQ] = ACTIONS(231), + [anon_sym_LT_EQ] = ACTIONS(231), [anon_sym_AT] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(272), - [anon_sym_QMARK] = ACTIONS(272), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(231), [anon_sym_break] = ACTIONS(438), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(440), @@ -15756,8 +15795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(456), [anon_sym_trait] = ACTIONS(454), [anon_sym_type] = ACTIONS(454), - [anon_sym_const] = ACTIONS(454), [anon_sym_COLON] = ACTIONS(459), + [anon_sym_const] = ACTIONS(454), [anon_sym_EQ] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(459), [anon_sym_POUND] = ACTIONS(456), @@ -15852,8 +15891,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(466), [anon_sym_trait] = ACTIONS(464), [anon_sym_type] = ACTIONS(464), - [anon_sym_const] = ACTIONS(464), [anon_sym_COLON] = ACTIONS(468), + [anon_sym_const] = ACTIONS(464), [anon_sym_EQ] = ACTIONS(468), [anon_sym_BANG] = ACTIONS(468), [anon_sym_POUND] = ACTIONS(466), @@ -15947,8 +15986,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(470), [anon_sym_trait] = ACTIONS(472), [anon_sym_type] = ACTIONS(472), - [anon_sym_const] = ACTIONS(472), [anon_sym_COLON] = ACTIONS(472), + [anon_sym_const] = ACTIONS(472), [anon_sym_EQ] = ACTIONS(472), [anon_sym_BANG] = ACTIONS(472), [anon_sym_POUND] = ACTIONS(470), @@ -16024,7 +16063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(472), [anon_sym_static] = ACTIONS(472), [anon_sym_while] = ACTIONS(472), - [sym_numeric_literal] = ACTIONS(472), + [sym_numeric_literal] = ACTIONS(474), [aux_sym_string_literal_token1] = ACTIONS(470), [sym_shortstring_literal] = ACTIONS(470), [anon_sym_true] = ACTIONS(472), @@ -16036,668 +16075,668 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [61] = { - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_impl] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_trait] = ACTIONS(476), - [anon_sym_type] = ACTIONS(476), - [anon_sym_const] = ACTIONS(476), - [anon_sym_COLON] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_POUND] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_RBRACK] = ACTIONS(474), - [anon_sym_mod] = ACTIONS(476), - [anon_sym_struct] = ACTIONS(476), - [anon_sym_enum] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_fn] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(474), - [anon_sym_let] = ACTIONS(476), - [anon_sym_use] = ACTIONS(476), - [anon_sym_COLON_COLON] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym__] = ACTIONS(476), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_u8] = ACTIONS(476), - [anon_sym_i8] = ACTIONS(476), - [anon_sym_u16] = ACTIONS(476), - [anon_sym_i16] = ACTIONS(476), - [anon_sym_u32] = ACTIONS(476), - [anon_sym_i32] = ACTIONS(476), - [anon_sym_u64] = ACTIONS(476), - [anon_sym_i64] = ACTIONS(476), - [anon_sym_u128] = ACTIONS(476), - [anon_sym_i128] = ACTIONS(476), - [anon_sym_usize] = ACTIONS(476), - [anon_sym_bool] = ACTIONS(476), - [anon_sym_ByteArray] = ACTIONS(476), - [anon_sym_felt252] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_AT] = ACTIONS(474), - [anon_sym_DOT_DOT] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(476), - [anon_sym_EQ_GT] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_break] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(476), - [anon_sym_default] = ACTIONS(476), - [anon_sym_if] = ACTIONS(476), - [anon_sym_extern] = ACTIONS(476), - [anon_sym_nopanic] = ACTIONS(476), - [anon_sym_loop] = ACTIONS(476), - [anon_sym_match] = ACTIONS(476), - [anon_sym_pub] = ACTIONS(476), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(476), - [anon_sym_while] = ACTIONS(476), - [sym_numeric_literal] = ACTIONS(476), - [aux_sym_string_literal_token1] = ACTIONS(474), - [sym_shortstring_literal] = ACTIONS(474), - [anon_sym_true] = ACTIONS(476), - [anon_sym_false] = ACTIONS(476), - [anon_sym_DOLLAR] = ACTIONS(474), - [sym_identifier] = ACTIONS(476), - [sym_mutable_specifier] = ACTIONS(476), - [sym_super] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_impl] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_trait] = ACTIONS(479), + [anon_sym_type] = ACTIONS(479), + [anon_sym_COLON] = ACTIONS(479), + [anon_sym_const] = ACTIONS(479), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_RBRACK] = ACTIONS(477), + [anon_sym_mod] = ACTIONS(479), + [anon_sym_struct] = ACTIONS(479), + [anon_sym_enum] = ACTIONS(479), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_fn] = ACTIONS(479), + [anon_sym_DASH_GT] = ACTIONS(477), + [anon_sym_let] = ACTIONS(479), + [anon_sym_use] = ACTIONS(479), + [anon_sym_COLON_COLON] = ACTIONS(477), + [anon_sym_STAR] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym__] = ACTIONS(479), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_u8] = ACTIONS(479), + [anon_sym_i8] = ACTIONS(479), + [anon_sym_u16] = ACTIONS(479), + [anon_sym_i16] = ACTIONS(479), + [anon_sym_u32] = ACTIONS(479), + [anon_sym_i32] = ACTIONS(479), + [anon_sym_u64] = ACTIONS(479), + [anon_sym_i64] = ACTIONS(479), + [anon_sym_u128] = ACTIONS(479), + [anon_sym_i128] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_ByteArray] = ACTIONS(479), + [anon_sym_felt252] = ACTIONS(479), + [anon_sym_LT] = ACTIONS(479), + [anon_sym_GT] = ACTIONS(479), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(479), + [anon_sym_PERCENT] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_AMP] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_AMP_AMP] = ACTIONS(477), + [anon_sym_PIPE_PIPE] = ACTIONS(477), + [anon_sym_LT_LT] = ACTIONS(477), + [anon_sym_GT_GT] = ACTIONS(477), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_STAR_EQ] = ACTIONS(477), + [anon_sym_SLASH_EQ] = ACTIONS(477), + [anon_sym_PERCENT_EQ] = ACTIONS(477), + [anon_sym_CARET_EQ] = ACTIONS(477), + [anon_sym_AMP_EQ] = ACTIONS(477), + [anon_sym_PIPE_EQ] = ACTIONS(477), + [anon_sym_EQ_EQ] = ACTIONS(477), + [anon_sym_BANG_EQ] = ACTIONS(477), + [anon_sym_GT_EQ] = ACTIONS(477), + [anon_sym_LT_EQ] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(477), + [anon_sym_DOT] = ACTIONS(479), + [anon_sym_EQ_GT] = ACTIONS(477), + [anon_sym_QMARK] = ACTIONS(477), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_default] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_extern] = ACTIONS(479), + [anon_sym_nopanic] = ACTIONS(479), + [anon_sym_loop] = ACTIONS(479), + [anon_sym_match] = ACTIONS(479), + [anon_sym_pub] = ACTIONS(479), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [sym_numeric_literal] = ACTIONS(479), + [aux_sym_string_literal_token1] = ACTIONS(477), + [sym_shortstring_literal] = ACTIONS(477), + [anon_sym_true] = ACTIONS(479), + [anon_sym_false] = ACTIONS(479), + [anon_sym_DOLLAR] = ACTIONS(477), + [sym_identifier] = ACTIONS(479), + [sym_mutable_specifier] = ACTIONS(479), + [sym_super] = ACTIONS(479), [sym_line_comment] = ACTIONS(3), }, [62] = { - [anon_sym_LBRACE] = ACTIONS(478), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_impl] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_trait] = ACTIONS(480), - [anon_sym_type] = ACTIONS(480), - [anon_sym_const] = ACTIONS(480), - [anon_sym_COLON] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_RBRACK] = ACTIONS(478), - [anon_sym_mod] = ACTIONS(480), - [anon_sym_struct] = ACTIONS(480), - [anon_sym_enum] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_fn] = ACTIONS(480), - [anon_sym_DASH_GT] = ACTIONS(478), - [anon_sym_let] = ACTIONS(480), - [anon_sym_use] = ACTIONS(480), - [anon_sym_COLON_COLON] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym__] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_u8] = ACTIONS(480), - [anon_sym_i8] = ACTIONS(480), - [anon_sym_u16] = ACTIONS(480), - [anon_sym_i16] = ACTIONS(480), - [anon_sym_u32] = ACTIONS(480), - [anon_sym_i32] = ACTIONS(480), - [anon_sym_u64] = ACTIONS(480), - [anon_sym_i64] = ACTIONS(480), - [anon_sym_u128] = ACTIONS(480), - [anon_sym_i128] = ACTIONS(480), - [anon_sym_usize] = ACTIONS(480), - [anon_sym_bool] = ACTIONS(480), - [anon_sym_ByteArray] = ACTIONS(480), - [anon_sym_felt252] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_PLUS_EQ] = ACTIONS(478), - [anon_sym_DASH_EQ] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(478), - [anon_sym_SLASH_EQ] = ACTIONS(478), - [anon_sym_PERCENT_EQ] = ACTIONS(478), - [anon_sym_CARET_EQ] = ACTIONS(478), - [anon_sym_AMP_EQ] = ACTIONS(478), - [anon_sym_PIPE_EQ] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_DOT_DOT] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(480), - [anon_sym_EQ_GT] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_default] = ACTIONS(480), - [anon_sym_if] = ACTIONS(480), - [anon_sym_extern] = ACTIONS(480), - [anon_sym_nopanic] = ACTIONS(480), - [anon_sym_loop] = ACTIONS(480), - [anon_sym_match] = ACTIONS(480), - [anon_sym_pub] = ACTIONS(480), - [anon_sym_return] = ACTIONS(480), - [anon_sym_static] = ACTIONS(480), - [anon_sym_while] = ACTIONS(480), - [sym_numeric_literal] = ACTIONS(480), - [aux_sym_string_literal_token1] = ACTIONS(478), - [sym_shortstring_literal] = ACTIONS(478), - [anon_sym_true] = ACTIONS(480), - [anon_sym_false] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(478), - [sym_identifier] = ACTIONS(480), - [sym_mutable_specifier] = ACTIONS(480), - [sym_super] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_impl] = ACTIONS(483), + [anon_sym_SEMI] = ACTIONS(481), + [anon_sym_trait] = ACTIONS(483), + [anon_sym_type] = ACTIONS(483), + [anon_sym_COLON] = ACTIONS(483), + [anon_sym_const] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_POUND] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_RBRACK] = ACTIONS(481), + [anon_sym_mod] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_enum] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(481), + [anon_sym_let] = ACTIONS(483), + [anon_sym_use] = ACTIONS(483), + [anon_sym_COLON_COLON] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym__] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_u8] = ACTIONS(483), + [anon_sym_i8] = ACTIONS(483), + [anon_sym_u16] = ACTIONS(483), + [anon_sym_i16] = ACTIONS(483), + [anon_sym_u32] = ACTIONS(483), + [anon_sym_i32] = ACTIONS(483), + [anon_sym_u64] = ACTIONS(483), + [anon_sym_i64] = ACTIONS(483), + [anon_sym_u128] = ACTIONS(483), + [anon_sym_i128] = ACTIONS(483), + [anon_sym_usize] = ACTIONS(483), + [anon_sym_bool] = ACTIONS(483), + [anon_sym_ByteArray] = ACTIONS(483), + [anon_sym_felt252] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_SLASH] = ACTIONS(483), + [anon_sym_PERCENT] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_AMP_AMP] = ACTIONS(481), + [anon_sym_PIPE_PIPE] = ACTIONS(481), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_PERCENT_EQ] = ACTIONS(481), + [anon_sym_CARET_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_EQ_EQ] = ACTIONS(481), + [anon_sym_BANG_EQ] = ACTIONS(481), + [anon_sym_GT_EQ] = ACTIONS(481), + [anon_sym_LT_EQ] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(481), + [anon_sym_DOT_DOT] = ACTIONS(481), + [anon_sym_DOT] = ACTIONS(483), + [anon_sym_EQ_GT] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_default] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_extern] = ACTIONS(483), + [anon_sym_nopanic] = ACTIONS(483), + [anon_sym_loop] = ACTIONS(483), + [anon_sym_match] = ACTIONS(483), + [anon_sym_pub] = ACTIONS(483), + [anon_sym_return] = ACTIONS(483), + [anon_sym_static] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [sym_numeric_literal] = ACTIONS(483), + [aux_sym_string_literal_token1] = ACTIONS(481), + [sym_shortstring_literal] = ACTIONS(481), + [anon_sym_true] = ACTIONS(483), + [anon_sym_false] = ACTIONS(483), + [anon_sym_DOLLAR] = ACTIONS(481), + [sym_identifier] = ACTIONS(483), + [sym_mutable_specifier] = ACTIONS(483), + [sym_super] = ACTIONS(483), [sym_line_comment] = ACTIONS(3), }, [63] = { - [anon_sym_LBRACE] = ACTIONS(482), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_impl] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_trait] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_const] = ACTIONS(484), - [anon_sym_COLON] = ACTIONS(484), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(484), - [anon_sym_POUND] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(482), - [anon_sym_RBRACK] = ACTIONS(482), - [anon_sym_mod] = ACTIONS(484), - [anon_sym_struct] = ACTIONS(484), - [anon_sym_enum] = ACTIONS(484), - [anon_sym_COMMA] = ACTIONS(482), - [anon_sym_fn] = ACTIONS(484), - [anon_sym_DASH_GT] = ACTIONS(482), - [anon_sym_let] = ACTIONS(484), - [anon_sym_use] = ACTIONS(484), - [anon_sym_COLON_COLON] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym__] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(482), - [anon_sym_u8] = ACTIONS(484), - [anon_sym_i8] = ACTIONS(484), - [anon_sym_u16] = ACTIONS(484), - [anon_sym_i16] = ACTIONS(484), - [anon_sym_u32] = ACTIONS(484), - [anon_sym_i32] = ACTIONS(484), - [anon_sym_u64] = ACTIONS(484), - [anon_sym_i64] = ACTIONS(484), - [anon_sym_u128] = ACTIONS(484), - [anon_sym_i128] = ACTIONS(484), - [anon_sym_usize] = ACTIONS(484), - [anon_sym_bool] = ACTIONS(484), - [anon_sym_ByteArray] = ACTIONS(484), - [anon_sym_felt252] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(484), - [anon_sym_GT] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(484), - [anon_sym_DASH] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_TILDE] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(482), - [anon_sym_LT_LT] = ACTIONS(482), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_PLUS_EQ] = ACTIONS(482), - [anon_sym_DASH_EQ] = ACTIONS(482), - [anon_sym_STAR_EQ] = ACTIONS(482), - [anon_sym_SLASH_EQ] = ACTIONS(482), - [anon_sym_PERCENT_EQ] = ACTIONS(482), - [anon_sym_CARET_EQ] = ACTIONS(482), - [anon_sym_AMP_EQ] = ACTIONS(482), - [anon_sym_PIPE_EQ] = ACTIONS(482), - [anon_sym_EQ_EQ] = ACTIONS(482), - [anon_sym_BANG_EQ] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(482), - [anon_sym_AT] = ACTIONS(482), - [anon_sym_DOT_DOT] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(484), - [anon_sym_EQ_GT] = ACTIONS(482), - [anon_sym_QMARK] = ACTIONS(482), - [anon_sym_break] = ACTIONS(484), - [anon_sym_continue] = ACTIONS(484), - [anon_sym_default] = ACTIONS(484), - [anon_sym_if] = ACTIONS(484), - [anon_sym_extern] = ACTIONS(484), - [anon_sym_nopanic] = ACTIONS(484), - [anon_sym_loop] = ACTIONS(484), - [anon_sym_match] = ACTIONS(484), - [anon_sym_pub] = ACTIONS(484), - [anon_sym_return] = ACTIONS(484), - [anon_sym_static] = ACTIONS(484), - [anon_sym_while] = ACTIONS(484), - [sym_numeric_literal] = ACTIONS(484), - [aux_sym_string_literal_token1] = ACTIONS(482), - [sym_shortstring_literal] = ACTIONS(482), - [anon_sym_true] = ACTIONS(484), - [anon_sym_false] = ACTIONS(484), - [anon_sym_DOLLAR] = ACTIONS(482), - [sym_identifier] = ACTIONS(484), - [sym_mutable_specifier] = ACTIONS(484), - [sym_super] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_impl] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_trait] = ACTIONS(487), + [anon_sym_type] = ACTIONS(487), + [anon_sym_COLON] = ACTIONS(487), + [anon_sym_const] = ACTIONS(487), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_POUND] = ACTIONS(485), + [anon_sym_LBRACK] = ACTIONS(485), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_mod] = ACTIONS(487), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_enum] = ACTIONS(487), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_DASH_GT] = ACTIONS(485), + [anon_sym_let] = ACTIONS(487), + [anon_sym_use] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(485), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym__] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_ByteArray] = ACTIONS(487), + [anon_sym_felt252] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_PERCENT] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(485), + [anon_sym_PLUS_EQ] = ACTIONS(485), + [anon_sym_DASH_EQ] = ACTIONS(485), + [anon_sym_STAR_EQ] = ACTIONS(485), + [anon_sym_SLASH_EQ] = ACTIONS(485), + [anon_sym_PERCENT_EQ] = ACTIONS(485), + [anon_sym_CARET_EQ] = ACTIONS(485), + [anon_sym_AMP_EQ] = ACTIONS(485), + [anon_sym_PIPE_EQ] = ACTIONS(485), + [anon_sym_EQ_EQ] = ACTIONS(485), + [anon_sym_BANG_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(485), + [anon_sym_DOT_DOT] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_QMARK] = ACTIONS(485), + [anon_sym_break] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(487), + [anon_sym_if] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(487), + [anon_sym_nopanic] = ACTIONS(487), + [anon_sym_loop] = ACTIONS(487), + [anon_sym_match] = ACTIONS(487), + [anon_sym_pub] = ACTIONS(487), + [anon_sym_return] = ACTIONS(487), + [anon_sym_static] = ACTIONS(487), + [anon_sym_while] = ACTIONS(487), + [sym_numeric_literal] = ACTIONS(487), + [aux_sym_string_literal_token1] = ACTIONS(485), + [sym_shortstring_literal] = ACTIONS(485), + [anon_sym_true] = ACTIONS(487), + [anon_sym_false] = ACTIONS(487), + [anon_sym_DOLLAR] = ACTIONS(485), + [sym_identifier] = ACTIONS(487), + [sym_mutable_specifier] = ACTIONS(487), + [sym_super] = ACTIONS(487), [sym_line_comment] = ACTIONS(3), }, [64] = { - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_impl] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_trait] = ACTIONS(488), - [anon_sym_type] = ACTIONS(488), - [anon_sym_const] = ACTIONS(488), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_BANG] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_RBRACK] = ACTIONS(486), - [anon_sym_mod] = ACTIONS(488), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_enum] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_fn] = ACTIONS(488), - [anon_sym_DASH_GT] = ACTIONS(486), - [anon_sym_let] = ACTIONS(488), - [anon_sym_use] = ACTIONS(488), - [anon_sym_COLON_COLON] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym__] = ACTIONS(488), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_u8] = ACTIONS(488), - [anon_sym_i8] = ACTIONS(488), - [anon_sym_u16] = ACTIONS(488), - [anon_sym_i16] = ACTIONS(488), - [anon_sym_u32] = ACTIONS(488), - [anon_sym_i32] = ACTIONS(488), - [anon_sym_u64] = ACTIONS(488), - [anon_sym_i64] = ACTIONS(488), - [anon_sym_u128] = ACTIONS(488), - [anon_sym_i128] = ACTIONS(488), - [anon_sym_usize] = ACTIONS(488), - [anon_sym_bool] = ACTIONS(488), - [anon_sym_ByteArray] = ACTIONS(488), - [anon_sym_felt252] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_PERCENT_EQ] = ACTIONS(486), - [anon_sym_CARET_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_AT] = ACTIONS(486), - [anon_sym_DOT_DOT] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(488), - [anon_sym_EQ_GT] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_break] = ACTIONS(488), - [anon_sym_continue] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_extern] = ACTIONS(488), - [anon_sym_nopanic] = ACTIONS(488), - [anon_sym_loop] = ACTIONS(488), - [anon_sym_match] = ACTIONS(488), - [anon_sym_pub] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_static] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [sym_numeric_literal] = ACTIONS(488), - [aux_sym_string_literal_token1] = ACTIONS(486), - [sym_shortstring_literal] = ACTIONS(486), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [anon_sym_DOLLAR] = ACTIONS(486), - [sym_identifier] = ACTIONS(488), - [sym_mutable_specifier] = ACTIONS(488), - [sym_super] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_impl] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_trait] = ACTIONS(491), + [anon_sym_type] = ACTIONS(491), + [anon_sym_COLON] = ACTIONS(491), + [anon_sym_const] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_POUND] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(489), + [anon_sym_RBRACK] = ACTIONS(489), + [anon_sym_mod] = ACTIONS(491), + [anon_sym_struct] = ACTIONS(491), + [anon_sym_enum] = ACTIONS(491), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_fn] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(489), + [anon_sym_let] = ACTIONS(491), + [anon_sym_use] = ACTIONS(491), + [anon_sym_COLON_COLON] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(489), + [anon_sym__] = ACTIONS(491), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_u8] = ACTIONS(491), + [anon_sym_i8] = ACTIONS(491), + [anon_sym_u16] = ACTIONS(491), + [anon_sym_i16] = ACTIONS(491), + [anon_sym_u32] = ACTIONS(491), + [anon_sym_i32] = ACTIONS(491), + [anon_sym_u64] = ACTIONS(491), + [anon_sym_i64] = ACTIONS(491), + [anon_sym_u128] = ACTIONS(491), + [anon_sym_i128] = ACTIONS(491), + [anon_sym_usize] = ACTIONS(491), + [anon_sym_bool] = ACTIONS(491), + [anon_sym_ByteArray] = ACTIONS(491), + [anon_sym_felt252] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(491), + [anon_sym_PERCENT] = ACTIONS(491), + [anon_sym_CARET] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_PLUS_EQ] = ACTIONS(489), + [anon_sym_DASH_EQ] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(489), + [anon_sym_SLASH_EQ] = ACTIONS(489), + [anon_sym_PERCENT_EQ] = ACTIONS(489), + [anon_sym_CARET_EQ] = ACTIONS(489), + [anon_sym_AMP_EQ] = ACTIONS(489), + [anon_sym_PIPE_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_LT_EQ] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_DOT_DOT] = ACTIONS(489), + [anon_sym_DOT] = ACTIONS(491), + [anon_sym_EQ_GT] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_default] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_extern] = ACTIONS(491), + [anon_sym_nopanic] = ACTIONS(491), + [anon_sym_loop] = ACTIONS(491), + [anon_sym_match] = ACTIONS(491), + [anon_sym_pub] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_static] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [sym_numeric_literal] = ACTIONS(491), + [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_shortstring_literal] = ACTIONS(489), + [anon_sym_true] = ACTIONS(491), + [anon_sym_false] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(489), + [sym_identifier] = ACTIONS(491), + [sym_mutable_specifier] = ACTIONS(491), + [sym_super] = ACTIONS(491), [sym_line_comment] = ACTIONS(3), }, [65] = { - [anon_sym_LBRACE] = ACTIONS(490), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_impl] = ACTIONS(492), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_trait] = ACTIONS(492), - [anon_sym_type] = ACTIONS(492), - [anon_sym_const] = ACTIONS(492), - [anon_sym_COLON] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_POUND] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(490), - [anon_sym_RBRACK] = ACTIONS(490), - [anon_sym_mod] = ACTIONS(492), - [anon_sym_struct] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(492), - [anon_sym_COMMA] = ACTIONS(490), - [anon_sym_fn] = ACTIONS(492), - [anon_sym_DASH_GT] = ACTIONS(490), - [anon_sym_let] = ACTIONS(492), - [anon_sym_use] = ACTIONS(492), - [anon_sym_COLON_COLON] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym__] = ACTIONS(492), - [anon_sym_RPAREN] = ACTIONS(490), - [anon_sym_u8] = ACTIONS(492), - [anon_sym_i8] = ACTIONS(492), - [anon_sym_u16] = ACTIONS(492), - [anon_sym_i16] = ACTIONS(492), - [anon_sym_u32] = ACTIONS(492), - [anon_sym_i32] = ACTIONS(492), - [anon_sym_u64] = ACTIONS(492), - [anon_sym_i64] = ACTIONS(492), - [anon_sym_u128] = ACTIONS(492), - [anon_sym_i128] = ACTIONS(492), - [anon_sym_usize] = ACTIONS(492), - [anon_sym_bool] = ACTIONS(492), - [anon_sym_ByteArray] = ACTIONS(492), - [anon_sym_felt252] = ACTIONS(492), - [anon_sym_LT] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(492), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(492), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(490), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(490), - [anon_sym_BANG_EQ] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(490), - [anon_sym_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(492), - [anon_sym_EQ_GT] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_break] = ACTIONS(492), - [anon_sym_continue] = ACTIONS(492), - [anon_sym_default] = ACTIONS(492), - [anon_sym_if] = ACTIONS(492), - [anon_sym_extern] = ACTIONS(492), - [anon_sym_nopanic] = ACTIONS(492), - [anon_sym_loop] = ACTIONS(492), - [anon_sym_match] = ACTIONS(492), - [anon_sym_pub] = ACTIONS(492), - [anon_sym_return] = ACTIONS(492), - [anon_sym_static] = ACTIONS(492), - [anon_sym_while] = ACTIONS(492), - [sym_numeric_literal] = ACTIONS(492), - [aux_sym_string_literal_token1] = ACTIONS(490), - [sym_shortstring_literal] = ACTIONS(490), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_DOLLAR] = ACTIONS(490), - [sym_identifier] = ACTIONS(492), - [sym_mutable_specifier] = ACTIONS(492), - [sym_super] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_impl] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(493), + [anon_sym_trait] = ACTIONS(495), + [anon_sym_type] = ACTIONS(495), + [anon_sym_COLON] = ACTIONS(495), + [anon_sym_const] = ACTIONS(495), + [anon_sym_EQ] = ACTIONS(495), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_POUND] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(493), + [anon_sym_RBRACK] = ACTIONS(493), + [anon_sym_mod] = ACTIONS(495), + [anon_sym_struct] = ACTIONS(495), + [anon_sym_enum] = ACTIONS(495), + [anon_sym_COMMA] = ACTIONS(493), + [anon_sym_fn] = ACTIONS(495), + [anon_sym_DASH_GT] = ACTIONS(493), + [anon_sym_let] = ACTIONS(495), + [anon_sym_use] = ACTIONS(495), + [anon_sym_COLON_COLON] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym__] = ACTIONS(495), + [anon_sym_RPAREN] = ACTIONS(493), + [anon_sym_u8] = ACTIONS(495), + [anon_sym_i8] = ACTIONS(495), + [anon_sym_u16] = ACTIONS(495), + [anon_sym_i16] = ACTIONS(495), + [anon_sym_u32] = ACTIONS(495), + [anon_sym_i32] = ACTIONS(495), + [anon_sym_u64] = ACTIONS(495), + [anon_sym_i64] = ACTIONS(495), + [anon_sym_u128] = ACTIONS(495), + [anon_sym_i128] = ACTIONS(495), + [anon_sym_usize] = ACTIONS(495), + [anon_sym_bool] = ACTIONS(495), + [anon_sym_ByteArray] = ACTIONS(495), + [anon_sym_felt252] = ACTIONS(495), + [anon_sym_LT] = ACTIONS(495), + [anon_sym_GT] = ACTIONS(495), + [anon_sym_PLUS] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(495), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_PERCENT] = ACTIONS(495), + [anon_sym_CARET] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(495), + [anon_sym_PIPE] = ACTIONS(495), + [anon_sym_AMP_AMP] = ACTIONS(493), + [anon_sym_PIPE_PIPE] = ACTIONS(493), + [anon_sym_LT_LT] = ACTIONS(493), + [anon_sym_GT_GT] = ACTIONS(493), + [anon_sym_PLUS_EQ] = ACTIONS(493), + [anon_sym_DASH_EQ] = ACTIONS(493), + [anon_sym_STAR_EQ] = ACTIONS(493), + [anon_sym_SLASH_EQ] = ACTIONS(493), + [anon_sym_PERCENT_EQ] = ACTIONS(493), + [anon_sym_CARET_EQ] = ACTIONS(493), + [anon_sym_AMP_EQ] = ACTIONS(493), + [anon_sym_PIPE_EQ] = ACTIONS(493), + [anon_sym_EQ_EQ] = ACTIONS(493), + [anon_sym_BANG_EQ] = ACTIONS(493), + [anon_sym_GT_EQ] = ACTIONS(493), + [anon_sym_LT_EQ] = ACTIONS(493), + [anon_sym_AT] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_EQ_GT] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(493), + [anon_sym_break] = ACTIONS(495), + [anon_sym_continue] = ACTIONS(495), + [anon_sym_default] = ACTIONS(495), + [anon_sym_if] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(495), + [anon_sym_nopanic] = ACTIONS(495), + [anon_sym_loop] = ACTIONS(495), + [anon_sym_match] = ACTIONS(495), + [anon_sym_pub] = ACTIONS(495), + [anon_sym_return] = ACTIONS(495), + [anon_sym_static] = ACTIONS(495), + [anon_sym_while] = ACTIONS(495), + [sym_numeric_literal] = ACTIONS(495), + [aux_sym_string_literal_token1] = ACTIONS(493), + [sym_shortstring_literal] = ACTIONS(493), + [anon_sym_true] = ACTIONS(495), + [anon_sym_false] = ACTIONS(495), + [anon_sym_DOLLAR] = ACTIONS(493), + [sym_identifier] = ACTIONS(495), + [sym_mutable_specifier] = ACTIONS(495), + [sym_super] = ACTIONS(495), [sym_line_comment] = ACTIONS(3), }, [66] = { - [anon_sym_LBRACE] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_impl] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(494), - [anon_sym_trait] = ACTIONS(496), - [anon_sym_type] = ACTIONS(496), - [anon_sym_const] = ACTIONS(496), - [anon_sym_COLON] = ACTIONS(496), - [anon_sym_EQ] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_POUND] = ACTIONS(494), - [anon_sym_LBRACK] = ACTIONS(494), - [anon_sym_RBRACK] = ACTIONS(494), - [anon_sym_mod] = ACTIONS(496), - [anon_sym_struct] = ACTIONS(496), - [anon_sym_enum] = ACTIONS(496), - [anon_sym_COMMA] = ACTIONS(494), - [anon_sym_fn] = ACTIONS(496), - [anon_sym_DASH_GT] = ACTIONS(494), - [anon_sym_let] = ACTIONS(496), - [anon_sym_use] = ACTIONS(496), - [anon_sym_COLON_COLON] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(494), - [anon_sym_u8] = ACTIONS(496), - [anon_sym_i8] = ACTIONS(496), - [anon_sym_u16] = ACTIONS(496), - [anon_sym_i16] = ACTIONS(496), - [anon_sym_u32] = ACTIONS(496), - [anon_sym_i32] = ACTIONS(496), - [anon_sym_u64] = ACTIONS(496), - [anon_sym_i64] = ACTIONS(496), - [anon_sym_u128] = ACTIONS(496), - [anon_sym_i128] = ACTIONS(496), - [anon_sym_usize] = ACTIONS(496), - [anon_sym_bool] = ACTIONS(496), - [anon_sym_ByteArray] = ACTIONS(496), - [anon_sym_felt252] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(496), - [anon_sym_GT] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_PERCENT] = ACTIONS(496), - [anon_sym_CARET] = ACTIONS(496), - [anon_sym_TILDE] = ACTIONS(494), - [anon_sym_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(496), - [anon_sym_AMP_AMP] = ACTIONS(494), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(494), - [anon_sym_PLUS_EQ] = ACTIONS(494), - [anon_sym_DASH_EQ] = ACTIONS(494), - [anon_sym_STAR_EQ] = ACTIONS(494), - [anon_sym_SLASH_EQ] = ACTIONS(494), - [anon_sym_PERCENT_EQ] = ACTIONS(494), - [anon_sym_CARET_EQ] = ACTIONS(494), - [anon_sym_AMP_EQ] = ACTIONS(494), - [anon_sym_PIPE_EQ] = ACTIONS(494), - [anon_sym_EQ_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(494), - [anon_sym_AT] = ACTIONS(494), - [anon_sym_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(496), - [anon_sym_EQ_GT] = ACTIONS(494), - [anon_sym_QMARK] = ACTIONS(494), - [anon_sym_break] = ACTIONS(496), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(496), - [anon_sym_if] = ACTIONS(496), - [anon_sym_extern] = ACTIONS(496), - [anon_sym_nopanic] = ACTIONS(496), - [anon_sym_loop] = ACTIONS(496), - [anon_sym_match] = ACTIONS(496), - [anon_sym_pub] = ACTIONS(496), - [anon_sym_return] = ACTIONS(496), - [anon_sym_static] = ACTIONS(496), - [anon_sym_while] = ACTIONS(496), - [sym_numeric_literal] = ACTIONS(496), - [aux_sym_string_literal_token1] = ACTIONS(494), - [sym_shortstring_literal] = ACTIONS(494), - [anon_sym_true] = ACTIONS(496), - [anon_sym_false] = ACTIONS(496), - [anon_sym_DOLLAR] = ACTIONS(494), - [sym_identifier] = ACTIONS(496), - [sym_mutable_specifier] = ACTIONS(496), - [sym_super] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_impl] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_trait] = ACTIONS(499), + [anon_sym_type] = ACTIONS(499), + [anon_sym_COLON] = ACTIONS(499), + [anon_sym_const] = ACTIONS(499), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_POUND] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_RBRACK] = ACTIONS(497), + [anon_sym_mod] = ACTIONS(499), + [anon_sym_struct] = ACTIONS(499), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_COMMA] = ACTIONS(497), + [anon_sym_fn] = ACTIONS(499), + [anon_sym_DASH_GT] = ACTIONS(497), + [anon_sym_let] = ACTIONS(499), + [anon_sym_use] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym__] = ACTIONS(499), + [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_u8] = ACTIONS(499), + [anon_sym_i8] = ACTIONS(499), + [anon_sym_u16] = ACTIONS(499), + [anon_sym_i16] = ACTIONS(499), + [anon_sym_u32] = ACTIONS(499), + [anon_sym_i32] = ACTIONS(499), + [anon_sym_u64] = ACTIONS(499), + [anon_sym_i64] = ACTIONS(499), + [anon_sym_u128] = ACTIONS(499), + [anon_sym_i128] = ACTIONS(499), + [anon_sym_usize] = ACTIONS(499), + [anon_sym_bool] = ACTIONS(499), + [anon_sym_ByteArray] = ACTIONS(499), + [anon_sym_felt252] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT_GT] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(497), + [anon_sym_STAR_EQ] = ACTIONS(497), + [anon_sym_SLASH_EQ] = ACTIONS(497), + [anon_sym_PERCENT_EQ] = ACTIONS(497), + [anon_sym_CARET_EQ] = ACTIONS(497), + [anon_sym_AMP_EQ] = ACTIONS(497), + [anon_sym_PIPE_EQ] = ACTIONS(497), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(499), + [anon_sym_EQ_GT] = ACTIONS(497), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(499), + [anon_sym_if] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(499), + [anon_sym_nopanic] = ACTIONS(499), + [anon_sym_loop] = ACTIONS(499), + [anon_sym_match] = ACTIONS(499), + [anon_sym_pub] = ACTIONS(499), + [anon_sym_return] = ACTIONS(499), + [anon_sym_static] = ACTIONS(499), + [anon_sym_while] = ACTIONS(499), + [sym_numeric_literal] = ACTIONS(499), + [aux_sym_string_literal_token1] = ACTIONS(497), + [sym_shortstring_literal] = ACTIONS(497), + [anon_sym_true] = ACTIONS(499), + [anon_sym_false] = ACTIONS(499), + [anon_sym_DOLLAR] = ACTIONS(497), + [sym_identifier] = ACTIONS(499), + [sym_mutable_specifier] = ACTIONS(499), + [sym_super] = ACTIONS(499), [sym_line_comment] = ACTIONS(3), }, [67] = { - [anon_sym_LBRACE] = ACTIONS(498), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_impl] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_trait] = ACTIONS(500), - [anon_sym_type] = ACTIONS(500), - [anon_sym_const] = ACTIONS(500), - [anon_sym_COLON] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(500), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_POUND] = ACTIONS(498), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_RBRACK] = ACTIONS(498), - [anon_sym_mod] = ACTIONS(500), - [anon_sym_struct] = ACTIONS(500), - [anon_sym_enum] = ACTIONS(500), - [anon_sym_COMMA] = ACTIONS(498), - [anon_sym_fn] = ACTIONS(500), - [anon_sym_DASH_GT] = ACTIONS(498), - [anon_sym_let] = ACTIONS(500), - [anon_sym_use] = ACTIONS(500), - [anon_sym_COLON_COLON] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(498), - [anon_sym__] = ACTIONS(500), - [anon_sym_RPAREN] = ACTIONS(498), - [anon_sym_u8] = ACTIONS(500), - [anon_sym_i8] = ACTIONS(500), - [anon_sym_u16] = ACTIONS(500), - [anon_sym_i16] = ACTIONS(500), - [anon_sym_u32] = ACTIONS(500), - [anon_sym_i32] = ACTIONS(500), - [anon_sym_u64] = ACTIONS(500), - [anon_sym_i64] = ACTIONS(500), - [anon_sym_u128] = ACTIONS(500), - [anon_sym_i128] = ACTIONS(500), - [anon_sym_usize] = ACTIONS(500), - [anon_sym_bool] = ACTIONS(500), - [anon_sym_ByteArray] = ACTIONS(500), - [anon_sym_felt252] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_AMP] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(500), - [anon_sym_AMP_AMP] = ACTIONS(498), - [anon_sym_PIPE_PIPE] = ACTIONS(498), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_GT_GT] = ACTIONS(498), - [anon_sym_PLUS_EQ] = ACTIONS(498), - [anon_sym_DASH_EQ] = ACTIONS(498), - [anon_sym_STAR_EQ] = ACTIONS(498), - [anon_sym_SLASH_EQ] = ACTIONS(498), - [anon_sym_PERCENT_EQ] = ACTIONS(498), - [anon_sym_CARET_EQ] = ACTIONS(498), - [anon_sym_AMP_EQ] = ACTIONS(498), - [anon_sym_PIPE_EQ] = ACTIONS(498), - [anon_sym_EQ_EQ] = ACTIONS(498), - [anon_sym_BANG_EQ] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(498), - [anon_sym_AT] = ACTIONS(498), - [anon_sym_DOT_DOT] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(500), - [anon_sym_EQ_GT] = ACTIONS(498), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_break] = ACTIONS(500), - [anon_sym_continue] = ACTIONS(500), - [anon_sym_default] = ACTIONS(500), - [anon_sym_if] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(500), - [anon_sym_nopanic] = ACTIONS(500), - [anon_sym_loop] = ACTIONS(500), - [anon_sym_match] = ACTIONS(500), - [anon_sym_pub] = ACTIONS(500), - [anon_sym_return] = ACTIONS(500), - [anon_sym_static] = ACTIONS(500), - [anon_sym_while] = ACTIONS(500), - [sym_numeric_literal] = ACTIONS(502), - [aux_sym_string_literal_token1] = ACTIONS(498), - [sym_shortstring_literal] = ACTIONS(498), - [anon_sym_true] = ACTIONS(500), - [anon_sym_false] = ACTIONS(500), - [anon_sym_DOLLAR] = ACTIONS(498), - [sym_identifier] = ACTIONS(500), - [sym_mutable_specifier] = ACTIONS(500), - [sym_super] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_impl] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_trait] = ACTIONS(503), + [anon_sym_type] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(503), + [anon_sym_const] = ACTIONS(503), + [anon_sym_EQ] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_POUND] = ACTIONS(501), + [anon_sym_LBRACK] = ACTIONS(501), + [anon_sym_RBRACK] = ACTIONS(501), + [anon_sym_mod] = ACTIONS(503), + [anon_sym_struct] = ACTIONS(503), + [anon_sym_enum] = ACTIONS(503), + [anon_sym_COMMA] = ACTIONS(501), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_DASH_GT] = ACTIONS(501), + [anon_sym_let] = ACTIONS(503), + [anon_sym_use] = ACTIONS(503), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym_STAR] = ACTIONS(503), + [anon_sym_LPAREN] = ACTIONS(501), + [anon_sym__] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_u8] = ACTIONS(503), + [anon_sym_i8] = ACTIONS(503), + [anon_sym_u16] = ACTIONS(503), + [anon_sym_i16] = ACTIONS(503), + [anon_sym_u32] = ACTIONS(503), + [anon_sym_i32] = ACTIONS(503), + [anon_sym_u64] = ACTIONS(503), + [anon_sym_i64] = ACTIONS(503), + [anon_sym_u128] = ACTIONS(503), + [anon_sym_i128] = ACTIONS(503), + [anon_sym_usize] = ACTIONS(503), + [anon_sym_bool] = ACTIONS(503), + [anon_sym_ByteArray] = ACTIONS(503), + [anon_sym_felt252] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(503), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_TILDE] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_LT_LT] = ACTIONS(501), + [anon_sym_GT_GT] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_CARET_EQ] = ACTIONS(501), + [anon_sym_AMP_EQ] = ACTIONS(501), + [anon_sym_PIPE_EQ] = ACTIONS(501), + [anon_sym_EQ_EQ] = ACTIONS(501), + [anon_sym_BANG_EQ] = ACTIONS(501), + [anon_sym_GT_EQ] = ACTIONS(501), + [anon_sym_LT_EQ] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT] = ACTIONS(503), + [anon_sym_EQ_GT] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(501), + [anon_sym_break] = ACTIONS(503), + [anon_sym_continue] = ACTIONS(503), + [anon_sym_default] = ACTIONS(503), + [anon_sym_if] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(503), + [anon_sym_nopanic] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(503), + [anon_sym_match] = ACTIONS(503), + [anon_sym_pub] = ACTIONS(503), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(503), + [anon_sym_while] = ACTIONS(503), + [sym_numeric_literal] = ACTIONS(503), + [aux_sym_string_literal_token1] = ACTIONS(501), + [sym_shortstring_literal] = ACTIONS(501), + [anon_sym_true] = ACTIONS(503), + [anon_sym_false] = ACTIONS(503), + [anon_sym_DOLLAR] = ACTIONS(501), + [sym_identifier] = ACTIONS(503), + [sym_mutable_specifier] = ACTIONS(503), + [sym_super] = ACTIONS(503), [sym_line_comment] = ACTIONS(3), }, [68] = { @@ -17041,91 +17080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_impl] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_trait] = ACTIONS(488), - [anon_sym_type] = ACTIONS(488), - [anon_sym_const] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_BANG] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_RBRACK] = ACTIONS(486), - [anon_sym_mod] = ACTIONS(488), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_enum] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_fn] = ACTIONS(488), - [anon_sym_let] = ACTIONS(488), - [anon_sym_use] = ACTIONS(488), - [anon_sym_COLON_COLON] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_u8] = ACTIONS(488), - [anon_sym_i8] = ACTIONS(488), - [anon_sym_u16] = ACTIONS(488), - [anon_sym_i16] = ACTIONS(488), - [anon_sym_u32] = ACTIONS(488), - [anon_sym_i32] = ACTIONS(488), - [anon_sym_u64] = ACTIONS(488), - [anon_sym_i64] = ACTIONS(488), - [anon_sym_u128] = ACTIONS(488), - [anon_sym_i128] = ACTIONS(488), - [anon_sym_usize] = ACTIONS(488), - [anon_sym_bool] = ACTIONS(488), - [anon_sym_ByteArray] = ACTIONS(488), - [anon_sym_felt252] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_PERCENT_EQ] = ACTIONS(486), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_AT] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_break] = ACTIONS(488), - [anon_sym_continue] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_extern] = ACTIONS(488), - [anon_sym_loop] = ACTIONS(488), - [anon_sym_match] = ACTIONS(488), - [anon_sym_pub] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [sym_numeric_literal] = ACTIONS(488), - [aux_sym_string_literal_token1] = ACTIONS(486), - [sym_shortstring_literal] = ACTIONS(486), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [anon_sym_ref] = ACTIONS(488), - [sym_identifier] = ACTIONS(488), - [sym_super] = ACTIONS(488), - [sym_line_comment] = ACTIONS(3), - }, - [73] = { [ts_builtin_sym_end] = ACTIONS(521), [anon_sym_LBRACE] = ACTIONS(521), [anon_sym_RBRACE] = ACTIONS(521), @@ -17210,6 +17164,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(523), [sym_line_comment] = ACTIONS(3), }, + [73] = { + [ts_builtin_sym_end] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(501), + [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_impl] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_trait] = ACTIONS(503), + [anon_sym_type] = ACTIONS(503), + [anon_sym_const] = ACTIONS(503), + [anon_sym_EQ] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_POUND] = ACTIONS(501), + [anon_sym_LBRACK] = ACTIONS(501), + [anon_sym_RBRACK] = ACTIONS(501), + [anon_sym_mod] = ACTIONS(503), + [anon_sym_struct] = ACTIONS(503), + [anon_sym_enum] = ACTIONS(503), + [anon_sym_COMMA] = ACTIONS(501), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_let] = ACTIONS(503), + [anon_sym_use] = ACTIONS(503), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym_STAR] = ACTIONS(503), + [anon_sym_LPAREN] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_u8] = ACTIONS(503), + [anon_sym_i8] = ACTIONS(503), + [anon_sym_u16] = ACTIONS(503), + [anon_sym_i16] = ACTIONS(503), + [anon_sym_u32] = ACTIONS(503), + [anon_sym_i32] = ACTIONS(503), + [anon_sym_u64] = ACTIONS(503), + [anon_sym_i64] = ACTIONS(503), + [anon_sym_u128] = ACTIONS(503), + [anon_sym_i128] = ACTIONS(503), + [anon_sym_usize] = ACTIONS(503), + [anon_sym_bool] = ACTIONS(503), + [anon_sym_ByteArray] = ACTIONS(503), + [anon_sym_felt252] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(503), + [anon_sym_CARET] = ACTIONS(501), + [anon_sym_TILDE] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PIPE] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(501), + [anon_sym_PIPE_PIPE] = ACTIONS(501), + [anon_sym_LT_LT] = ACTIONS(501), + [anon_sym_GT_GT] = ACTIONS(501), + [anon_sym_PLUS_EQ] = ACTIONS(501), + [anon_sym_DASH_EQ] = ACTIONS(501), + [anon_sym_STAR_EQ] = ACTIONS(501), + [anon_sym_SLASH_EQ] = ACTIONS(501), + [anon_sym_PERCENT_EQ] = ACTIONS(501), + [anon_sym_EQ_EQ] = ACTIONS(501), + [anon_sym_BANG_EQ] = ACTIONS(501), + [anon_sym_GT_EQ] = ACTIONS(501), + [anon_sym_LT_EQ] = ACTIONS(501), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(501), + [anon_sym_break] = ACTIONS(503), + [anon_sym_continue] = ACTIONS(503), + [anon_sym_default] = ACTIONS(503), + [anon_sym_if] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(503), + [anon_sym_loop] = ACTIONS(503), + [anon_sym_match] = ACTIONS(503), + [anon_sym_pub] = ACTIONS(503), + [anon_sym_return] = ACTIONS(503), + [anon_sym_while] = ACTIONS(503), + [sym_numeric_literal] = ACTIONS(503), + [aux_sym_string_literal_token1] = ACTIONS(501), + [sym_shortstring_literal] = ACTIONS(501), + [anon_sym_true] = ACTIONS(503), + [anon_sym_false] = ACTIONS(503), + [anon_sym_ref] = ACTIONS(503), + [sym_identifier] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_line_comment] = ACTIONS(3), + }, [74] = { [ts_builtin_sym_end] = ACTIONS(525), [anon_sym_LBRACE] = ACTIONS(525), @@ -17296,91 +17335,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [75] = { - [ts_builtin_sym_end] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(478), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_impl] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_trait] = ACTIONS(480), - [anon_sym_type] = ACTIONS(480), - [anon_sym_const] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_RBRACK] = ACTIONS(478), - [anon_sym_mod] = ACTIONS(480), - [anon_sym_struct] = ACTIONS(480), - [anon_sym_enum] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_fn] = ACTIONS(480), - [anon_sym_let] = ACTIONS(480), - [anon_sym_use] = ACTIONS(480), - [anon_sym_COLON_COLON] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_u8] = ACTIONS(480), - [anon_sym_i8] = ACTIONS(480), - [anon_sym_u16] = ACTIONS(480), - [anon_sym_i16] = ACTIONS(480), - [anon_sym_u32] = ACTIONS(480), - [anon_sym_i32] = ACTIONS(480), - [anon_sym_u64] = ACTIONS(480), - [anon_sym_i64] = ACTIONS(480), - [anon_sym_u128] = ACTIONS(480), - [anon_sym_i128] = ACTIONS(480), - [anon_sym_usize] = ACTIONS(480), - [anon_sym_bool] = ACTIONS(480), - [anon_sym_ByteArray] = ACTIONS(480), - [anon_sym_felt252] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_PLUS_EQ] = ACTIONS(478), - [anon_sym_DASH_EQ] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(478), - [anon_sym_SLASH_EQ] = ACTIONS(478), - [anon_sym_PERCENT_EQ] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_default] = ACTIONS(480), - [anon_sym_if] = ACTIONS(480), - [anon_sym_extern] = ACTIONS(480), - [anon_sym_loop] = ACTIONS(480), - [anon_sym_match] = ACTIONS(480), - [anon_sym_pub] = ACTIONS(480), - [anon_sym_return] = ACTIONS(480), - [anon_sym_while] = ACTIONS(480), - [sym_numeric_literal] = ACTIONS(480), - [aux_sym_string_literal_token1] = ACTIONS(478), - [sym_shortstring_literal] = ACTIONS(478), - [anon_sym_true] = ACTIONS(480), - [anon_sym_false] = ACTIONS(480), - [anon_sym_ref] = ACTIONS(480), - [sym_identifier] = ACTIONS(480), - [sym_super] = ACTIONS(480), - [sym_line_comment] = ACTIONS(3), - }, - [76] = { [ts_builtin_sym_end] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(529), [anon_sym_RBRACE] = ACTIONS(529), @@ -17465,7 +17419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(531), [sym_line_comment] = ACTIONS(3), }, - [77] = { + [76] = { [ts_builtin_sym_end] = ACTIONS(533), [anon_sym_LBRACE] = ACTIONS(533), [anon_sym_RBRACE] = ACTIONS(533), @@ -17550,7 +17504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(535), [sym_line_comment] = ACTIONS(3), }, - [78] = { + [77] = { [ts_builtin_sym_end] = ACTIONS(537), [anon_sym_LBRACE] = ACTIONS(537), [anon_sym_RBRACE] = ACTIONS(537), @@ -17635,7 +17589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(539), [sym_line_comment] = ACTIONS(3), }, - [79] = { + [78] = { [ts_builtin_sym_end] = ACTIONS(541), [anon_sym_LBRACE] = ACTIONS(541), [anon_sym_RBRACE] = ACTIONS(541), @@ -17720,7 +17674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(543), [sym_line_comment] = ACTIONS(3), }, - [80] = { + [79] = { [ts_builtin_sym_end] = ACTIONS(545), [anon_sym_LBRACE] = ACTIONS(545), [anon_sym_RBRACE] = ACTIONS(545), @@ -17805,7 +17759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(547), [sym_line_comment] = ACTIONS(3), }, - [81] = { + [80] = { [ts_builtin_sym_end] = ACTIONS(549), [anon_sym_LBRACE] = ACTIONS(549), [anon_sym_RBRACE] = ACTIONS(549), @@ -17890,7 +17844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(551), [sym_line_comment] = ACTIONS(3), }, - [82] = { + [81] = { [ts_builtin_sym_end] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(553), [anon_sym_RBRACE] = ACTIONS(553), @@ -17975,8 +17929,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(555), [sym_line_comment] = ACTIONS(3), }, + [82] = { + [ts_builtin_sym_end] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_impl] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_trait] = ACTIONS(499), + [anon_sym_type] = ACTIONS(499), + [anon_sym_const] = ACTIONS(499), + [anon_sym_EQ] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_POUND] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_RBRACK] = ACTIONS(497), + [anon_sym_mod] = ACTIONS(499), + [anon_sym_struct] = ACTIONS(499), + [anon_sym_enum] = ACTIONS(499), + [anon_sym_COMMA] = ACTIONS(497), + [anon_sym_fn] = ACTIONS(499), + [anon_sym_let] = ACTIONS(499), + [anon_sym_use] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(499), + [anon_sym_LPAREN] = ACTIONS(497), + [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_u8] = ACTIONS(499), + [anon_sym_i8] = ACTIONS(499), + [anon_sym_u16] = ACTIONS(499), + [anon_sym_i16] = ACTIONS(499), + [anon_sym_u32] = ACTIONS(499), + [anon_sym_i32] = ACTIONS(499), + [anon_sym_u64] = ACTIONS(499), + [anon_sym_i64] = ACTIONS(499), + [anon_sym_u128] = ACTIONS(499), + [anon_sym_i128] = ACTIONS(499), + [anon_sym_usize] = ACTIONS(499), + [anon_sym_bool] = ACTIONS(499), + [anon_sym_ByteArray] = ACTIONS(499), + [anon_sym_felt252] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(499), + [anon_sym_GT] = ACTIONS(499), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_SLASH] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(497), + [anon_sym_TILDE] = ACTIONS(497), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_AMP_AMP] = ACTIONS(497), + [anon_sym_PIPE_PIPE] = ACTIONS(497), + [anon_sym_LT_LT] = ACTIONS(497), + [anon_sym_GT_GT] = ACTIONS(497), + [anon_sym_PLUS_EQ] = ACTIONS(497), + [anon_sym_DASH_EQ] = ACTIONS(497), + [anon_sym_STAR_EQ] = ACTIONS(497), + [anon_sym_SLASH_EQ] = ACTIONS(497), + [anon_sym_PERCENT_EQ] = ACTIONS(497), + [anon_sym_EQ_EQ] = ACTIONS(497), + [anon_sym_BANG_EQ] = ACTIONS(497), + [anon_sym_GT_EQ] = ACTIONS(497), + [anon_sym_LT_EQ] = ACTIONS(497), + [anon_sym_AT] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_QMARK] = ACTIONS(497), + [anon_sym_break] = ACTIONS(499), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(499), + [anon_sym_if] = ACTIONS(499), + [anon_sym_extern] = ACTIONS(499), + [anon_sym_loop] = ACTIONS(499), + [anon_sym_match] = ACTIONS(499), + [anon_sym_pub] = ACTIONS(499), + [anon_sym_return] = ACTIONS(499), + [anon_sym_while] = ACTIONS(499), + [sym_numeric_literal] = ACTIONS(499), + [aux_sym_string_literal_token1] = ACTIONS(497), + [sym_shortstring_literal] = ACTIONS(497), + [anon_sym_true] = ACTIONS(499), + [anon_sym_false] = ACTIONS(499), + [anon_sym_ref] = ACTIONS(499), + [sym_identifier] = ACTIONS(499), + [sym_super] = ACTIONS(499), + [sym_line_comment] = ACTIONS(3), + }, [83] = { - [sym_else_clause] = STATE(69), + [sym_else_clause] = STATE(75), [ts_builtin_sym_end] = ACTIONS(557), [anon_sym_LBRACE] = ACTIONS(557), [anon_sym_RBRACE] = ACTIONS(557), @@ -18060,6 +18099,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [84] = { + [ts_builtin_sym_end] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(533), + [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_impl] = ACTIONS(535), + [anon_sym_SEMI] = ACTIONS(533), + [anon_sym_trait] = ACTIONS(535), + [anon_sym_type] = ACTIONS(535), + [anon_sym_const] = ACTIONS(535), + [anon_sym_EQ] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_POUND] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(533), + [anon_sym_mod] = ACTIONS(535), + [anon_sym_struct] = ACTIONS(535), + [anon_sym_enum] = ACTIONS(535), + [anon_sym_fn] = ACTIONS(535), + [anon_sym_let] = ACTIONS(535), + [anon_sym_use] = ACTIONS(535), + [anon_sym_COLON_COLON] = ACTIONS(533), + [anon_sym_STAR] = ACTIONS(535), + [anon_sym_LPAREN] = ACTIONS(533), + [anon_sym_u8] = ACTIONS(535), + [anon_sym_i8] = ACTIONS(535), + [anon_sym_u16] = ACTIONS(535), + [anon_sym_i16] = ACTIONS(535), + [anon_sym_u32] = ACTIONS(535), + [anon_sym_i32] = ACTIONS(535), + [anon_sym_u64] = ACTIONS(535), + [anon_sym_i64] = ACTIONS(535), + [anon_sym_u128] = ACTIONS(535), + [anon_sym_i128] = ACTIONS(535), + [anon_sym_usize] = ACTIONS(535), + [anon_sym_bool] = ACTIONS(535), + [anon_sym_ByteArray] = ACTIONS(535), + [anon_sym_felt252] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(535), + [anon_sym_GT] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(535), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_SLASH] = ACTIONS(535), + [anon_sym_PERCENT] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(535), + [anon_sym_AMP_AMP] = ACTIONS(533), + [anon_sym_PIPE_PIPE] = ACTIONS(533), + [anon_sym_LT_LT] = ACTIONS(533), + [anon_sym_GT_GT] = ACTIONS(533), + [anon_sym_PLUS_EQ] = ACTIONS(533), + [anon_sym_DASH_EQ] = ACTIONS(533), + [anon_sym_STAR_EQ] = ACTIONS(533), + [anon_sym_SLASH_EQ] = ACTIONS(533), + [anon_sym_PERCENT_EQ] = ACTIONS(533), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_BANG_EQ] = ACTIONS(533), + [anon_sym_GT_EQ] = ACTIONS(533), + [anon_sym_LT_EQ] = ACTIONS(533), + [anon_sym_AT] = ACTIONS(533), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(533), + [anon_sym_break] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(535), + [anon_sym_default] = ACTIONS(535), + [anon_sym_if] = ACTIONS(535), + [anon_sym_extern] = ACTIONS(535), + [anon_sym_loop] = ACTIONS(535), + [anon_sym_match] = ACTIONS(535), + [anon_sym_pub] = ACTIONS(535), + [anon_sym_return] = ACTIONS(535), + [anon_sym_while] = ACTIONS(535), + [sym_numeric_literal] = ACTIONS(535), + [aux_sym_string_literal_token1] = ACTIONS(533), + [sym_shortstring_literal] = ACTIONS(533), + [anon_sym_true] = ACTIONS(535), + [anon_sym_false] = ACTIONS(535), + [anon_sym_else] = ACTIONS(535), + [anon_sym_ref] = ACTIONS(535), + [sym_identifier] = ACTIONS(535), + [sym_super] = ACTIONS(535), + [sym_line_comment] = ACTIONS(3), + }, + [85] = { + [ts_builtin_sym_end] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(505), + [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_impl] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_trait] = ACTIONS(507), + [anon_sym_type] = ACTIONS(507), + [anon_sym_const] = ACTIONS(507), + [anon_sym_EQ] = ACTIONS(507), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_POUND] = ACTIONS(505), + [anon_sym_LBRACK] = ACTIONS(505), + [anon_sym_mod] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_enum] = ACTIONS(507), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_let] = ACTIONS(507), + [anon_sym_use] = ACTIONS(507), + [anon_sym_COLON_COLON] = ACTIONS(505), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(505), + [anon_sym_u8] = ACTIONS(507), + [anon_sym_i8] = ACTIONS(507), + [anon_sym_u16] = ACTIONS(507), + [anon_sym_i16] = ACTIONS(507), + [anon_sym_u32] = ACTIONS(507), + [anon_sym_i32] = ACTIONS(507), + [anon_sym_u64] = ACTIONS(507), + [anon_sym_i64] = ACTIONS(507), + [anon_sym_u128] = ACTIONS(507), + [anon_sym_i128] = ACTIONS(507), + [anon_sym_usize] = ACTIONS(507), + [anon_sym_bool] = ACTIONS(507), + [anon_sym_ByteArray] = ACTIONS(507), + [anon_sym_felt252] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(507), + [anon_sym_DASH] = ACTIONS(507), + [anon_sym_SLASH] = ACTIONS(507), + [anon_sym_PERCENT] = ACTIONS(507), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(507), + [anon_sym_PIPE] = ACTIONS(507), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT_LT] = ACTIONS(505), + [anon_sym_GT_GT] = ACTIONS(505), + [anon_sym_PLUS_EQ] = ACTIONS(505), + [anon_sym_DASH_EQ] = ACTIONS(505), + [anon_sym_STAR_EQ] = ACTIONS(505), + [anon_sym_SLASH_EQ] = ACTIONS(505), + [anon_sym_PERCENT_EQ] = ACTIONS(505), + [anon_sym_EQ_EQ] = ACTIONS(505), + [anon_sym_BANG_EQ] = ACTIONS(505), + [anon_sym_GT_EQ] = ACTIONS(505), + [anon_sym_LT_EQ] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_break] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(507), + [anon_sym_if] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(507), + [anon_sym_loop] = ACTIONS(507), + [anon_sym_match] = ACTIONS(507), + [anon_sym_pub] = ACTIONS(507), + [anon_sym_return] = ACTIONS(507), + [anon_sym_while] = ACTIONS(507), + [sym_numeric_literal] = ACTIONS(507), + [aux_sym_string_literal_token1] = ACTIONS(505), + [sym_shortstring_literal] = ACTIONS(505), + [anon_sym_true] = ACTIONS(507), + [anon_sym_false] = ACTIONS(507), + [anon_sym_else] = ACTIONS(507), + [anon_sym_ref] = ACTIONS(507), + [sym_identifier] = ACTIONS(507), + [sym_super] = ACTIONS(507), + [sym_line_comment] = ACTIONS(3), + }, + [86] = { [ts_builtin_sym_end] = ACTIONS(525), [anon_sym_LBRACE] = ACTIONS(525), [anon_sym_RBRACE] = ACTIONS(525), @@ -18142,209 +18347,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(527), [sym_line_comment] = ACTIONS(3), }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_impl] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_trait] = ACTIONS(543), - [anon_sym_type] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(543), - [anon_sym_POUND] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(541), - [anon_sym_mod] = ACTIONS(543), - [anon_sym_struct] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [anon_sym_fn] = ACTIONS(543), - [anon_sym_let] = ACTIONS(543), - [anon_sym_use] = ACTIONS(543), - [anon_sym_COLON_COLON] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_u8] = ACTIONS(543), - [anon_sym_i8] = ACTIONS(543), - [anon_sym_u16] = ACTIONS(543), - [anon_sym_i16] = ACTIONS(543), - [anon_sym_u32] = ACTIONS(543), - [anon_sym_i32] = ACTIONS(543), - [anon_sym_u64] = ACTIONS(543), - [anon_sym_i64] = ACTIONS(543), - [anon_sym_u128] = ACTIONS(543), - [anon_sym_i128] = ACTIONS(543), - [anon_sym_usize] = ACTIONS(543), - [anon_sym_bool] = ACTIONS(543), - [anon_sym_ByteArray] = ACTIONS(543), - [anon_sym_felt252] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_PERCENT] = ACTIONS(543), - [anon_sym_CARET] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [anon_sym_PIPE] = ACTIONS(543), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_LT_LT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_STAR_EQ] = ACTIONS(541), - [anon_sym_SLASH_EQ] = ACTIONS(541), - [anon_sym_PERCENT_EQ] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AT] = ACTIONS(541), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(541), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_default] = ACTIONS(543), - [anon_sym_if] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(543), - [anon_sym_loop] = ACTIONS(543), - [anon_sym_match] = ACTIONS(543), - [anon_sym_pub] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [sym_numeric_literal] = ACTIONS(543), - [aux_sym_string_literal_token1] = ACTIONS(541), - [sym_shortstring_literal] = ACTIONS(541), - [anon_sym_true] = ACTIONS(543), - [anon_sym_false] = ACTIONS(543), - [anon_sym_else] = ACTIONS(543), - [anon_sym_ref] = ACTIONS(543), - [sym_identifier] = ACTIONS(543), - [sym_super] = ACTIONS(543), - [sym_line_comment] = ACTIONS(3), - }, - [86] = { - [ts_builtin_sym_end] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_impl] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_trait] = ACTIONS(551), - [anon_sym_type] = ACTIONS(551), - [anon_sym_const] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_POUND] = ACTIONS(549), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_mod] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_fn] = ACTIONS(551), - [anon_sym_let] = ACTIONS(551), - [anon_sym_use] = ACTIONS(551), - [anon_sym_COLON_COLON] = ACTIONS(549), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u128] = ACTIONS(551), - [anon_sym_i128] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_ByteArray] = ACTIONS(551), - [anon_sym_felt252] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_PERCENT] = ACTIONS(551), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(549), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_PERCENT_EQ] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(549), - [anon_sym_QMARK] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_default] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_extern] = ACTIONS(551), - [anon_sym_loop] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_pub] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [sym_numeric_literal] = ACTIONS(551), - [aux_sym_string_literal_token1] = ACTIONS(549), - [sym_shortstring_literal] = ACTIONS(549), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_ref] = ACTIONS(551), - [sym_identifier] = ACTIONS(551), - [sym_super] = ACTIONS(551), - [sym_line_comment] = ACTIONS(3), - }, [87] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(581), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1311), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(103), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(584), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1291), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(103), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), @@ -18393,214 +18432,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [88] = { [ts_builtin_sym_end] = ACTIONS(573), [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_RBRACE] = ACTIONS(575), - [anon_sym_impl] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(575), - [anon_sym_trait] = ACTIONS(577), - [anon_sym_type] = ACTIONS(577), - [anon_sym_const] = ACTIONS(577), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(577), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_impl] = ACTIONS(575), + [anon_sym_SEMI] = ACTIONS(573), + [anon_sym_trait] = ACTIONS(575), + [anon_sym_type] = ACTIONS(575), + [anon_sym_const] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(575), [anon_sym_POUND] = ACTIONS(573), - [anon_sym_LBRACK] = ACTIONS(575), - [anon_sym_mod] = ACTIONS(577), - [anon_sym_struct] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(577), - [anon_sym_fn] = ACTIONS(577), - [anon_sym_let] = ACTIONS(577), - [anon_sym_use] = ACTIONS(577), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_mod] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_enum] = ACTIONS(575), + [anon_sym_fn] = ACTIONS(575), + [anon_sym_let] = ACTIONS(575), + [anon_sym_use] = ACTIONS(575), [anon_sym_COLON_COLON] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_u8] = ACTIONS(577), - [anon_sym_i8] = ACTIONS(577), - [anon_sym_u16] = ACTIONS(577), - [anon_sym_i16] = ACTIONS(577), - [anon_sym_u32] = ACTIONS(577), - [anon_sym_i32] = ACTIONS(577), - [anon_sym_u64] = ACTIONS(577), - [anon_sym_i64] = ACTIONS(577), - [anon_sym_u128] = ACTIONS(577), - [anon_sym_i128] = ACTIONS(577), - [anon_sym_usize] = ACTIONS(577), - [anon_sym_bool] = ACTIONS(577), - [anon_sym_ByteArray] = ACTIONS(577), - [anon_sym_felt252] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(575), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_u8] = ACTIONS(575), + [anon_sym_i8] = ACTIONS(575), + [anon_sym_u16] = ACTIONS(575), + [anon_sym_i16] = ACTIONS(575), + [anon_sym_u32] = ACTIONS(575), + [anon_sym_i32] = ACTIONS(575), + [anon_sym_u64] = ACTIONS(575), + [anon_sym_i64] = ACTIONS(575), + [anon_sym_u128] = ACTIONS(575), + [anon_sym_i128] = ACTIONS(575), + [anon_sym_usize] = ACTIONS(575), + [anon_sym_bool] = ACTIONS(575), + [anon_sym_ByteArray] = ACTIONS(575), + [anon_sym_felt252] = ACTIONS(575), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_PIPE_PIPE] = ACTIONS(575), - [anon_sym_LT_LT] = ACTIONS(575), - [anon_sym_GT_GT] = ACTIONS(575), - [anon_sym_PLUS_EQ] = ACTIONS(575), - [anon_sym_DASH_EQ] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(575), - [anon_sym_SLASH_EQ] = ACTIONS(575), - [anon_sym_PERCENT_EQ] = ACTIONS(575), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_BANG_EQ] = ACTIONS(575), - [anon_sym_GT_EQ] = ACTIONS(575), - [anon_sym_LT_EQ] = ACTIONS(575), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), [anon_sym_AT] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_continue] = ACTIONS(577), - [anon_sym_default] = ACTIONS(577), - [anon_sym_if] = ACTIONS(577), - [anon_sym_extern] = ACTIONS(577), - [anon_sym_loop] = ACTIONS(577), - [anon_sym_match] = ACTIONS(577), - [anon_sym_pub] = ACTIONS(577), - [anon_sym_return] = ACTIONS(577), - [anon_sym_while] = ACTIONS(577), - [sym_numeric_literal] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_break] = ACTIONS(575), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_default] = ACTIONS(575), + [anon_sym_if] = ACTIONS(575), + [anon_sym_extern] = ACTIONS(575), + [anon_sym_loop] = ACTIONS(575), + [anon_sym_match] = ACTIONS(575), + [anon_sym_pub] = ACTIONS(575), + [anon_sym_return] = ACTIONS(575), + [anon_sym_while] = ACTIONS(575), + [sym_numeric_literal] = ACTIONS(575), [aux_sym_string_literal_token1] = ACTIONS(573), [sym_shortstring_literal] = ACTIONS(573), - [anon_sym_true] = ACTIONS(577), - [anon_sym_false] = ACTIONS(577), - [anon_sym_ref] = ACTIONS(577), - [sym_identifier] = ACTIONS(577), - [sym_super] = ACTIONS(577), + [anon_sym_true] = ACTIONS(575), + [anon_sym_false] = ACTIONS(575), + [anon_sym_ref] = ACTIONS(575), + [sym_identifier] = ACTIONS(575), + [sym_super] = ACTIONS(575), [sym_line_comment] = ACTIONS(3), }, [89] = { - [ts_builtin_sym_end] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_impl] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_trait] = ACTIONS(583), - [anon_sym_type] = ACTIONS(583), - [anon_sym_const] = ACTIONS(583), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(583), - [anon_sym_POUND] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_mod] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(583), - [anon_sym_enum] = ACTIONS(583), - [anon_sym_fn] = ACTIONS(583), - [anon_sym_let] = ACTIONS(583), - [anon_sym_use] = ACTIONS(583), - [anon_sym_COLON_COLON] = ACTIONS(581), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(581), - [anon_sym_u8] = ACTIONS(583), - [anon_sym_i8] = ACTIONS(583), - [anon_sym_u16] = ACTIONS(583), - [anon_sym_i16] = ACTIONS(583), - [anon_sym_u32] = ACTIONS(583), - [anon_sym_i32] = ACTIONS(583), - [anon_sym_u64] = ACTIONS(583), - [anon_sym_i64] = ACTIONS(583), - [anon_sym_u128] = ACTIONS(583), - [anon_sym_i128] = ACTIONS(583), - [anon_sym_usize] = ACTIONS(583), - [anon_sym_bool] = ACTIONS(583), - [anon_sym_ByteArray] = ACTIONS(583), - [anon_sym_felt252] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_PIPE_PIPE] = ACTIONS(575), - [anon_sym_LT_LT] = ACTIONS(575), - [anon_sym_GT_GT] = ACTIONS(575), - [anon_sym_PLUS_EQ] = ACTIONS(575), - [anon_sym_DASH_EQ] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(575), - [anon_sym_SLASH_EQ] = ACTIONS(575), - [anon_sym_PERCENT_EQ] = ACTIONS(575), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_BANG_EQ] = ACTIONS(575), - [anon_sym_GT_EQ] = ACTIONS(575), - [anon_sym_LT_EQ] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(581), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(583), - [anon_sym_default] = ACTIONS(583), - [anon_sym_if] = ACTIONS(583), - [anon_sym_extern] = ACTIONS(583), - [anon_sym_loop] = ACTIONS(583), - [anon_sym_match] = ACTIONS(583), - [anon_sym_pub] = ACTIONS(583), - [anon_sym_return] = ACTIONS(583), - [anon_sym_while] = ACTIONS(583), - [sym_numeric_literal] = ACTIONS(583), - [aux_sym_string_literal_token1] = ACTIONS(581), - [sym_shortstring_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(583), - [anon_sym_false] = ACTIONS(583), - [anon_sym_ref] = ACTIONS(583), - [sym_identifier] = ACTIONS(583), - [sym_super] = ACTIONS(583), - [sym_line_comment] = ACTIONS(3), - }, - [90] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(105), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(577), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1287), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(105), + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(98), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(576), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1285), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(98), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(581), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(583), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18636,43 +18593,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, + [90] = { + [ts_builtin_sym_end] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(579), + [anon_sym_impl] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(579), + [anon_sym_trait] = ACTIONS(587), + [anon_sym_type] = ACTIONS(587), + [anon_sym_const] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_mod] = ACTIONS(587), + [anon_sym_struct] = ACTIONS(587), + [anon_sym_enum] = ACTIONS(587), + [anon_sym_fn] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_use] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_u8] = ACTIONS(587), + [anon_sym_i8] = ACTIONS(587), + [anon_sym_u16] = ACTIONS(587), + [anon_sym_i16] = ACTIONS(587), + [anon_sym_u32] = ACTIONS(587), + [anon_sym_i32] = ACTIONS(587), + [anon_sym_u64] = ACTIONS(587), + [anon_sym_i64] = ACTIONS(587), + [anon_sym_u128] = ACTIONS(587), + [anon_sym_i128] = ACTIONS(587), + [anon_sym_usize] = ACTIONS(587), + [anon_sym_bool] = ACTIONS(587), + [anon_sym_ByteArray] = ACTIONS(587), + [anon_sym_felt252] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_break] = ACTIONS(587), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_default] = ACTIONS(587), + [anon_sym_if] = ACTIONS(587), + [anon_sym_extern] = ACTIONS(587), + [anon_sym_loop] = ACTIONS(587), + [anon_sym_match] = ACTIONS(587), + [anon_sym_pub] = ACTIONS(587), + [anon_sym_return] = ACTIONS(587), + [anon_sym_while] = ACTIONS(587), + [sym_numeric_literal] = ACTIONS(587), + [aux_sym_string_literal_token1] = ACTIONS(585), + [sym_shortstring_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(587), + [anon_sym_false] = ACTIONS(587), + [anon_sym_ref] = ACTIONS(587), + [sym_identifier] = ACTIONS(587), + [sym_super] = ACTIONS(587), + [sym_line_comment] = ACTIONS(3), + }, [91] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(579), + [anon_sym_trait] = ACTIONS(587), + [anon_sym_type] = ACTIONS(587), + [anon_sym_const] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_mod] = ACTIONS(587), + [anon_sym_struct] = ACTIONS(587), + [anon_sym_enum] = ACTIONS(587), + [anon_sym_fn] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_use] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_u8] = ACTIONS(587), + [anon_sym_i8] = ACTIONS(587), + [anon_sym_u16] = ACTIONS(587), + [anon_sym_i16] = ACTIONS(587), + [anon_sym_u32] = ACTIONS(587), + [anon_sym_i32] = ACTIONS(587), + [anon_sym_u64] = ACTIONS(587), + [anon_sym_i64] = ACTIONS(587), + [anon_sym_u128] = ACTIONS(587), + [anon_sym_i128] = ACTIONS(587), + [anon_sym_usize] = ACTIONS(587), + [anon_sym_bool] = ACTIONS(587), + [anon_sym_ByteArray] = ACTIONS(587), + [anon_sym_felt252] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_break] = ACTIONS(587), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_default] = ACTIONS(587), + [anon_sym_if] = ACTIONS(587), + [anon_sym_extern] = ACTIONS(587), + [anon_sym_loop] = ACTIONS(587), + [anon_sym_match] = ACTIONS(587), + [anon_sym_pub] = ACTIONS(587), + [anon_sym_return] = ACTIONS(587), + [anon_sym_while] = ACTIONS(587), + [sym_numeric_literal] = ACTIONS(587), + [aux_sym_string_literal_token1] = ACTIONS(585), + [sym_shortstring_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(587), + [anon_sym_false] = ACTIONS(587), + [anon_sym_ref] = ACTIONS(587), + [sym_identifier] = ACTIONS(587), + [sym_super] = ACTIONS(587), + [sym_line_comment] = ACTIONS(3), + }, + [92] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(638), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1413), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(101), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), @@ -18717,43 +18837,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [92] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [93] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(638), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1413), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(101), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), @@ -18798,43 +18918,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [93] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [94] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(638), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1413), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(101), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), @@ -18879,124 +18999,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [94] = { - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_RBRACE] = ACTIONS(573), - [anon_sym_impl] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(575), - [anon_sym_trait] = ACTIONS(577), - [anon_sym_type] = ACTIONS(577), - [anon_sym_const] = ACTIONS(577), - [anon_sym_EQ] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_POUND] = ACTIONS(573), - [anon_sym_LBRACK] = ACTIONS(575), - [anon_sym_mod] = ACTIONS(577), - [anon_sym_struct] = ACTIONS(577), - [anon_sym_enum] = ACTIONS(577), - [anon_sym_fn] = ACTIONS(577), - [anon_sym_let] = ACTIONS(577), - [anon_sym_use] = ACTIONS(577), - [anon_sym_COLON_COLON] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(579), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_u8] = ACTIONS(577), - [anon_sym_i8] = ACTIONS(577), - [anon_sym_u16] = ACTIONS(577), - [anon_sym_i16] = ACTIONS(577), - [anon_sym_u32] = ACTIONS(577), - [anon_sym_i32] = ACTIONS(577), - [anon_sym_u64] = ACTIONS(577), - [anon_sym_i64] = ACTIONS(577), - [anon_sym_u128] = ACTIONS(577), - [anon_sym_i128] = ACTIONS(577), - [anon_sym_usize] = ACTIONS(577), - [anon_sym_bool] = ACTIONS(577), - [anon_sym_ByteArray] = ACTIONS(577), - [anon_sym_felt252] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_SLASH] = ACTIONS(579), - [anon_sym_PERCENT] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(575), - [anon_sym_PIPE_PIPE] = ACTIONS(575), - [anon_sym_LT_LT] = ACTIONS(575), - [anon_sym_GT_GT] = ACTIONS(575), - [anon_sym_PLUS_EQ] = ACTIONS(575), - [anon_sym_DASH_EQ] = ACTIONS(575), - [anon_sym_STAR_EQ] = ACTIONS(575), - [anon_sym_SLASH_EQ] = ACTIONS(575), - [anon_sym_PERCENT_EQ] = ACTIONS(575), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_BANG_EQ] = ACTIONS(575), - [anon_sym_GT_EQ] = ACTIONS(575), - [anon_sym_LT_EQ] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_continue] = ACTIONS(577), - [anon_sym_default] = ACTIONS(577), - [anon_sym_if] = ACTIONS(577), - [anon_sym_extern] = ACTIONS(577), - [anon_sym_loop] = ACTIONS(577), - [anon_sym_match] = ACTIONS(577), - [anon_sym_pub] = ACTIONS(577), - [anon_sym_return] = ACTIONS(577), - [anon_sym_while] = ACTIONS(577), - [sym_numeric_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(573), - [sym_shortstring_literal] = ACTIONS(573), - [anon_sym_true] = ACTIONS(577), - [anon_sym_false] = ACTIONS(577), - [anon_sym_ref] = ACTIONS(577), - [sym_identifier] = ACTIONS(577), - [sym_super] = ACTIONS(577), - [sym_line_comment] = ACTIONS(3), - }, [95] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(638), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1413), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(101), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), @@ -19042,42 +19081,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [96] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(638), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1413), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(101), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), @@ -19123,42 +19162,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [97] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(638), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1413), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(101), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), @@ -19204,41 +19243,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [98] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(103), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(528), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(103), + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(380), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(588), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1242), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(380), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [99] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(105), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(499), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(105), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), @@ -19283,42 +19402,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [99] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(575), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [100] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(638), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1413), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(101), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [101] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(380), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(620), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1387), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(380), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(571), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [102] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(380), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(586), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(380), [anon_sym_LBRACE] = ACTIONS(605), [anon_sym_BANG] = ACTIONS(608), [anon_sym_POUND] = ACTIONS(611), @@ -19363,43 +19642,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(673), [sym_line_comment] = ACTIONS(3), }, - [100] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(661), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1439), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [103] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(380), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(577), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_named_argument] = STATE(1324), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(380), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), @@ -19443,42 +19722,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [101] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(588), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [104] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(380), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(583), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(380), [anon_sym_LBRACE] = ACTIONS(605), [anon_sym_BANG] = ACTIONS(608), [anon_sym_POUND] = ACTIONS(611), @@ -19523,48 +19802,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(673), [sym_line_comment] = ACTIONS(3), }, - [102] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(589), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1234), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [105] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(102), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(549), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(102), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(678), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19599,52 +19878,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(71), [anon_sym_false] = ACTIONS(71), [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), + [sym_identifier] = ACTIONS(75), [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [103] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(101), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(544), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(101), + [106] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(107), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(518), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(107), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(678), + [anon_sym_RBRACK] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(682), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19683,48 +19962,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [104] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(106), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(534), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(106), + [107] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(502), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(686), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19763,48 +20042,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [105] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(574), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1327), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [108] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(122), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(655), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(688), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19839,52 +20117,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(71), [anon_sym_false] = ACTIONS(71), [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), + [sym_identifier] = ACTIONS(75), [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [106] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(99), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(493), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(99), + [109] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(122), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(655), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(690), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19923,48 +20200,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [107] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(100), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_named_argument] = STATE(1428), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(100), + [110] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(122), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(655), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(692), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19999,54 +20275,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(71), [anon_sym_false] = ACTIONS(71), [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), + [sym_identifier] = ACTIONS(75), [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [108] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [111] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(125), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(682), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(688), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(694), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20082,47 +20358,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [109] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [112] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(122), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(655), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_RBRACK] = ACTIONS(696), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20161,47 +20437,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [110] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [113] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(122), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(655), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(698), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20240,50 +20516,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [111] = { - [sym_macro_invocation] = STATE(467), + [114] = { + [sym_macro_invocation] = STATE(457), [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(688), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [aux_sym_enum_variant_list_repeat1] = STATE(120), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(694), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(700), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20319,47 +20595,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [112] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [115] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(122), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(655), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(696), + [anon_sym_RBRACK] = ACTIONS(702), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20398,50 +20674,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [113] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(127), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(625), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(127), + [116] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(122), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(655), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(704), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(698), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20477,47 +20753,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [114] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [117] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(122), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(655), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_RBRACK] = ACTIONS(706), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20556,42 +20832,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [115] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(124), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(685), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(124), + [118] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(122), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(655), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), @@ -20599,7 +20875,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(702), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20635,47 +20910,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [116] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [119] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(721), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym__condition] = STATE(1421), + [sym_let_condition] = STATE(1421), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [120] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(380), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(737), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(380), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(704), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20714,47 +21066,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [117] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [121] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(721), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym__condition] = STATE(1422), + [sym_let_condition] = STATE(1422), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [122] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(380), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(640), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(380), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(706), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20793,42 +21222,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [118] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1422), - [sym_let_condition] = STATE(1422), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [123] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(721), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym__condition] = STATE(1458), + [sym_let_condition] = STATE(1458), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -20871,42 +21300,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [119] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1434), - [sym_let_condition] = STATE(1434), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [124] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(721), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym__condition] = STATE(1424), + [sym_let_condition] = STATE(1424), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -20949,42 +21378,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [120] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(612), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), + [125] = { + [sym_macro_invocation] = STATE(457), + [sym_attribute_item] = STATE(380), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(757), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_enum_variant_list_repeat1] = STATE(380), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_POUND] = ACTIONS(565), @@ -21027,42 +21456,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [121] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1416), - [sym_let_condition] = STATE(1416), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [126] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(721), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym__condition] = STATE(1426), + [sym_let_condition] = STATE(1426), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -21105,42 +21534,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [122] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1453), - [sym_let_condition] = STATE(1453), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [127] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(721), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym__condition] = STATE(1427), + [sym_let_condition] = STATE(1427), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -21183,49 +21612,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [123] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [128] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(721), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym__condition] = STATE(1430), + [sym_let_condition] = STATE(1430), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [129] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(743), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym__condition] = STATE(1565), + [sym_let_condition] = STATE(1565), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_let] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [130] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(665), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_tuple_expression_repeat1] = STATE(137), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21261,516 +21845,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [124] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(732), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [125] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1417), - [sym_let_condition] = STATE(1417), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [126] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(740), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym__condition] = STATE(1516), - [sym_let_condition] = STATE(1516), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_let] = ACTIONS(712), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [127] = { - [sym_macro_invocation] = STATE(467), - [sym_attribute_item] = STATE(385), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(734), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(385), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [128] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1435), - [sym_let_condition] = STATE(1435), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [129] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym__condition] = STATE(1419), - [sym_let_condition] = STATE(1419), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [130] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(604), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(137), + [131] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(654), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_tuple_expression_repeat1] = STATE(135), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_RPAREN] = ACTIONS(718), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21806,48 +21922,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [131] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(687), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(132), + [132] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(671), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_tuple_expression_repeat1] = STATE(134), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(720), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21883,40 +21999,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [132] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(675), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [133] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(694), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [aux_sym_tuple_expression_repeat1] = STATE(138), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), @@ -21924,7 +22040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(722), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21960,41 +22076,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [133] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(635), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(134), + [134] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(694), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_tuple_expression_repeat1] = STATE(135), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -22037,48 +22153,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [134] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(604), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(138), + [135] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(738), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_tuple_expression_repeat1] = STATE(135), + [anon_sym_LBRACE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_u8] = ACTIONS(741), + [anon_sym_i8] = ACTIONS(741), + [anon_sym_u16] = ACTIONS(741), + [anon_sym_i16] = ACTIONS(741), + [anon_sym_u32] = ACTIONS(741), + [anon_sym_i32] = ACTIONS(741), + [anon_sym_u64] = ACTIONS(741), + [anon_sym_i64] = ACTIONS(741), + [anon_sym_u128] = ACTIONS(741), + [anon_sym_i128] = ACTIONS(741), + [anon_sym_usize] = ACTIONS(741), + [anon_sym_bool] = ACTIONS(741), + [anon_sym_ByteArray] = ACTIONS(741), + [anon_sym_felt252] = ACTIONS(741), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_AT] = ACTIONS(727), + [anon_sym_break] = ACTIONS(747), + [anon_sym_continue] = ACTIONS(750), + [anon_sym_default] = ACTIONS(753), + [anon_sym_if] = ACTIONS(756), + [anon_sym_loop] = ACTIONS(759), + [anon_sym_match] = ACTIONS(762), + [anon_sym_return] = ACTIONS(765), + [anon_sym_while] = ACTIONS(768), + [sym_numeric_literal] = ACTIONS(771), + [aux_sym_string_literal_token1] = ACTIONS(774), + [sym_shortstring_literal] = ACTIONS(777), + [anon_sym_true] = ACTIONS(780), + [anon_sym_false] = ACTIONS(780), + [anon_sym_ref] = ACTIONS(783), + [sym_identifier] = ACTIONS(786), + [sym_super] = ACTIONS(789), + [sym_line_comment] = ACTIONS(3), + }, + [136] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(612), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_tuple_expression_repeat1] = STATE(131), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_RPAREN] = ACTIONS(792), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22114,48 +22307,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [135] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(660), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(138), + [137] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(612), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [aux_sym_tuple_expression_repeat1] = STATE(135), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(792), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22191,40 +22384,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [136] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(675), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [138] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(698), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [aux_sym_tuple_expression_repeat1] = STATE(135), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), @@ -22232,7 +22425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(794), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22268,48 +22461,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [137] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(138), + [139] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(426), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(726), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22342,120 +22533,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(71), [anon_sym_ref] = ACTIONS(73), [sym_identifier] = ACTIONS(75), + [sym_mutable_specifier] = ACTIONS(796), [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [138] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(735), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [aux_sym_tuple_expression_repeat1] = STATE(138), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_BANG] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_COLON_COLON] = ACTIONS(737), - [anon_sym_STAR] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(740), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_u8] = ACTIONS(745), - [anon_sym_i8] = ACTIONS(745), - [anon_sym_u16] = ACTIONS(745), - [anon_sym_i16] = ACTIONS(745), - [anon_sym_u32] = ACTIONS(745), - [anon_sym_i32] = ACTIONS(745), - [anon_sym_u64] = ACTIONS(745), - [anon_sym_i64] = ACTIONS(745), - [anon_sym_u128] = ACTIONS(745), - [anon_sym_i128] = ACTIONS(745), - [anon_sym_usize] = ACTIONS(745), - [anon_sym_bool] = ACTIONS(745), - [anon_sym_ByteArray] = ACTIONS(745), - [anon_sym_felt252] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_AT] = ACTIONS(731), - [anon_sym_break] = ACTIONS(751), - [anon_sym_continue] = ACTIONS(754), - [anon_sym_default] = ACTIONS(757), - [anon_sym_if] = ACTIONS(760), - [anon_sym_loop] = ACTIONS(763), - [anon_sym_match] = ACTIONS(766), - [anon_sym_return] = ACTIONS(769), - [anon_sym_while] = ACTIONS(772), - [sym_numeric_literal] = ACTIONS(775), - [aux_sym_string_literal_token1] = ACTIONS(778), - [sym_shortstring_literal] = ACTIONS(781), - [anon_sym_true] = ACTIONS(784), - [anon_sym_false] = ACTIONS(784), - [anon_sym_ref] = ACTIONS(787), - [sym_identifier] = ACTIONS(790), - [sym_super] = ACTIONS(793), + [140] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(747), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_mutable_specifier] = ACTIONS(798), + [sym_super] = ACTIONS(428), [sym_line_comment] = ACTIONS(3), }, - [139] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(423), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [141] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(426), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -22494,271 +22685,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(71), [anon_sym_ref] = ACTIONS(444), [sym_identifier] = ACTIONS(446), - [sym_mutable_specifier] = ACTIONS(796), + [sym_mutable_specifier] = ACTIONS(800), [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [140] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(746), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_mutable_specifier] = ACTIONS(798), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [141] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(423), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [142] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(754), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), + [anon_sym_default] = ACTIONS(440), [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(442), [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), [anon_sym_true] = ACTIONS(71), [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_mutable_specifier] = ACTIONS(800), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [142] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(755), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, [143] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(702), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(724), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -22801,39 +22840,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [144] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(737), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(732), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -22876,114 +22915,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [145] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(698), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [146] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(440), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(486), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23025,40 +22989,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [147] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(486), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [146] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(705), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23100,40 +23064,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [148] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(483), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [147] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(731), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23175,40 +23139,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [149] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(466), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [148] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(634), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23250,40 +23214,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [150] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(464), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [149] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(484), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23325,41 +23289,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [151] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(454), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), + [150] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(709), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(255), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(255), + [sym_if_expression] = STATE(255), + [sym_match_expression] = STATE(255), + [sym_while_expression] = STATE(255), + [sym_loop_expression] = STATE(255), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -23385,11 +23349,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_while] = ACTIONS(810), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), @@ -23400,40 +23364,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [152] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(447), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [151] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(487), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23475,40 +23439,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [153] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(697), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [152] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(437), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -23550,40 +23514,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [154] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(720), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [153] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(679), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -23625,40 +23589,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [155] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(446), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [154] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(472), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23700,115 +23664,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [156] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(425), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [157] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(441), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [155] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(771), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23850,115 +23739,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [158] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(706), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [156] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(476), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), + [anon_sym_default] = ACTIONS(49), [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), [anon_sym_true] = ACTIONS(71), [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [159] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(428), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [157] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(477), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24000,115 +23889,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [160] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(696), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [161] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(751), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [158] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(478), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24150,40 +23964,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [162] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(756), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [159] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(440), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24225,40 +24039,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, + [160] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(641), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [161] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(707), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [162] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(768), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, [163] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(715), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(726), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [164] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(437), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24290,7 +24404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(812), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), [anon_sym_true] = ACTIONS(71), @@ -24300,40 +24414,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [164] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(728), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [165] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(474), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24375,265 +24489,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [165] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(758), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, [166] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(759), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [167] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(760), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [168] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(451), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(717), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24675,41 +24564,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [169] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(714), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), + [167] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(648), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(255), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(255), + [sym_if_expression] = STATE(255), + [sym_match_expression] = STATE(255), + [sym_while_expression] = STATE(255), + [sym_loop_expression] = STATE(255), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -24735,11 +24624,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_while] = ACTIONS(810), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), @@ -24750,115 +24639,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [170] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(762), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [171] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(683), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [168] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(437), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -24890,7 +24704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(442), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(812), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), [anon_sym_true] = ACTIONS(71), @@ -24900,191 +24714,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [172] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(707), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [173] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(699), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [169] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(636), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [174] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(757), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(255), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(255), - [sym_if_expression] = STATE(255), - [sym_match_expression] = STATE(255), - [sym_while_expression] = STATE(255), - [sym_loop_expression] = STATE(255), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -25110,11 +24774,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), + [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), @@ -25125,116 +24789,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [175] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(766), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [176] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(742), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(251), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(251), - [sym_if_expression] = STATE(251), - [sym_match_expression] = STATE(251), - [sym_while_expression] = STATE(251), - [sym_loop_expression] = STATE(251), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(802), + [170] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(622), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -25260,11 +24849,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), + [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), @@ -25275,40 +24864,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [177] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(739), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [171] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(427), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25350,190 +24939,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [178] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(712), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [172] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(752), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), + [anon_sym_default] = ACTIONS(440), [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(442), [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), [anon_sym_true] = ACTIONS(71), [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [179] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(730), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [173] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(744), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), + [anon_sym_default] = ACTIONS(440), [anon_sym_if] = ACTIONS(229), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(442), [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), [anon_sym_true] = ACTIONS(71), [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [180] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(731), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [174] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(769), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25575,40 +25164,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [181] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(425), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [175] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(469), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25650,265 +25239,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [182] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(700), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [183] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(713), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [184] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(725), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(812), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [185] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(701), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [176] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(740), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -25950,40 +25314,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [186] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(716), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [177] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(621), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26025,40 +25389,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [187] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(708), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [178] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(700), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -26100,40 +25464,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [188] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(621), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [179] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26175,40 +25539,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [189] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(622), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [180] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(767), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [181] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(723), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26250,40 +25689,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [190] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(658), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [182] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(766), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [183] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(733), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -26325,115 +25839,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [191] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(750), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [192] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(434), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [184] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(629), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26475,40 +25914,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [193] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(592), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [185] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(765), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [186] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(770), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26550,190 +26064,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [194] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(428), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [195] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(627), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [196] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(744), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [187] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(706), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26775,40 +26139,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [197] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(743), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [188] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(628), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26850,40 +26214,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [198] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(425), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [189] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -26915,7 +26279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(442), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(814), + [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), [anon_sym_true] = ACTIONS(71), @@ -26925,40 +26289,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [199] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(703), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [190] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(739), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [191] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(708), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, + [192] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(762), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [193] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(729), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -27000,40 +26589,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [200] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(663), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [194] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(745), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27075,40 +26664,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [201] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(705), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [195] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(728), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(23), @@ -27150,41 +26739,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(448), [sym_line_comment] = ACTIONS(3), }, - [202] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(761), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), + [196] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(713), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(252), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(252), + [sym_if_expression] = STATE(252), + [sym_match_expression] = STATE(252), + [sym_while_expression] = STATE(252), + [sym_loop_expression] = STATE(252), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -27210,11 +26799,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_while] = ACTIONS(810), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), @@ -27225,40 +26814,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [203] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(747), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [197] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(727), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [198] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(427), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [199] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(644), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27300,41 +27039,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [204] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(676), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(251), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(251), - [sym_if_expression] = STATE(251), - [sym_match_expression] = STATE(251), - [sym_while_expression] = STATE(251), - [sym_loop_expression] = STATE(251), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(802), + [200] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(760), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [201] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(701), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -27360,11 +27174,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), + [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), @@ -27375,40 +27189,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [205] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(633), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [202] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(750), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [203] = { + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(758), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [204] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(421), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27450,115 +27414,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [206] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(725), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [207] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(425), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [205] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(764), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27590,7 +27479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(814), + [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), [anon_sym_true] = ACTIONS(71), @@ -27600,40 +27489,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [208] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(727), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [206] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27675,40 +27564,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, + [207] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(681), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, + [208] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1272), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(659), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(421), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_ByteArray] = ACTIONS(434), + [anon_sym_felt252] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(440), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(442), + [anon_sym_while] = ACTIONS(63), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [sym_super] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + }, [209] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(767), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(756), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + }, + [210] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(699), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27750,40 +27864,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [210] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(741), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [211] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(725), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27825,40 +27939,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [211] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(634), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [212] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(753), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27900,116 +28014,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [212] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1161), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(623), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(434), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, [213] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(605), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(255), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(255), - [sym_if_expression] = STATE(255), - [sym_match_expression] = STATE(255), - [sym_while_expression] = STATE(255), - [sym_loop_expression] = STATE(255), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), - [anon_sym_LBRACE] = ACTIONS(802), + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(718), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -28035,11 +28074,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), + [anon_sym_if] = ACTIONS(229), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), + [anon_sym_while] = ACTIONS(63), [sym_numeric_literal] = ACTIONS(65), [aux_sym_string_literal_token1] = ACTIONS(67), [sym_shortstring_literal] = ACTIONS(69), @@ -28051,339 +28090,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), }, [214] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(765), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(739), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(814), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), [sym_line_comment] = ACTIONS(3), }, [215] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(749), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(710), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), [sym_line_comment] = ACTIONS(3), }, [216] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(752), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), + [sym_macro_invocation] = STATE(816), + [sym_generic_type_with_turbofish] = STATE(1212), + [sym__literal] = STATE(817), + [sym_negative_literal] = STATE(801), + [sym_string_literal] = STATE(801), + [sym_boolean_literal] = STATE(801), + [sym_scoped_identifier] = STATE(658), + [sym_scoped_type_identifier_in_expression_position] = STATE(1444), + [sym_expression] = STATE(751), + [sym_generic_function] = STATE(817), + [sym_tuple_expression] = STATE(817), + [sym_return_expression] = STATE(817), + [sym_struct_expression] = STATE(817), + [sym_assignment_expression] = STATE(817), + [sym_break_expression] = STATE(817), + [sym_continue_expression] = STATE(817), + [sym_index_expression] = STATE(817), + [sym_array_expression] = STATE(817), + [sym_parenthesized_expression] = STATE(817), + [sym_unit_expression] = STATE(817), + [sym_compound_assignment_expr] = STATE(817), + [sym__expression_ending_with_block] = STATE(817), + [sym_unary_expression] = STATE(817), + [sym_try_expression] = STATE(817), + [sym_field_expression] = STATE(722), + [sym_block] = STATE(817), + [sym_if_expression] = STATE(817), + [sym_match_expression] = STATE(817), + [sym_while_expression] = STATE(817), + [sym_loop_expression] = STATE(817), + [sym_binary_expression] = STATE(817), + [sym_call_expression] = STATE(817), + [sym_reference_expression] = STATE(817), [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(394), + [anon_sym_i8] = ACTIONS(394), + [anon_sym_u16] = ACTIONS(394), + [anon_sym_i16] = ACTIONS(394), + [anon_sym_u32] = ACTIONS(394), + [anon_sym_i32] = ACTIONS(394), + [anon_sym_u64] = ACTIONS(394), + [anon_sym_i64] = ACTIONS(394), + [anon_sym_u128] = ACTIONS(394), + [anon_sym_i128] = ACTIONS(394), + [anon_sym_usize] = ACTIONS(394), + [anon_sym_bool] = ACTIONS(394), + [anon_sym_ByteArray] = ACTIONS(394), + [anon_sym_felt252] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_break] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_default] = ACTIONS(404), + [anon_sym_if] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(410), + [anon_sym_return] = ACTIONS(412), + [anon_sym_while] = ACTIONS(414), + [sym_numeric_literal] = ACTIONS(416), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_shortstring_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_super] = ACTIONS(428), [sym_line_comment] = ACTIONS(3), }, [217] = { - [sym_macro_invocation] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1208), - [sym__literal] = STATE(806), - [sym_negative_literal] = STATE(779), - [sym_string_literal] = STATE(779), - [sym_boolean_literal] = STATE(779), - [sym_scoped_identifier] = STATE(614), - [sym_scoped_type_identifier_in_expression_position] = STATE(1449), - [sym_expression] = STATE(754), - [sym_generic_function] = STATE(806), - [sym_tuple_expression] = STATE(806), - [sym_return_expression] = STATE(806), - [sym_struct_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_break_expression] = STATE(806), - [sym_continue_expression] = STATE(806), - [sym_index_expression] = STATE(806), - [sym_array_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_unit_expression] = STATE(806), - [sym_compound_assignment_expr] = STATE(806), - [sym__expression_ending_with_block] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_try_expression] = STATE(806), - [sym_field_expression] = STATE(717), - [sym_block] = STATE(806), - [sym_if_expression] = STATE(806), - [sym_match_expression] = STATE(806), - [sym_while_expression] = STATE(806), - [sym_loop_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_reference_expression] = STATE(806), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(390), - [anon_sym_i8] = ACTIONS(390), - [anon_sym_u16] = ACTIONS(390), - [anon_sym_i16] = ACTIONS(390), - [anon_sym_u32] = ACTIONS(390), - [anon_sym_i32] = ACTIONS(390), - [anon_sym_u64] = ACTIONS(390), - [anon_sym_i64] = ACTIONS(390), - [anon_sym_u128] = ACTIONS(390), - [anon_sym_i128] = ACTIONS(390), - [anon_sym_usize] = ACTIONS(390), - [anon_sym_bool] = ACTIONS(390), - [anon_sym_ByteArray] = ACTIONS(390), - [anon_sym_felt252] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_AT] = ACTIONS(392), - [anon_sym_break] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(396), - [anon_sym_default] = ACTIONS(398), - [anon_sym_if] = ACTIONS(400), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(404), - [anon_sym_return] = ACTIONS(406), - [anon_sym_while] = ACTIONS(408), - [sym_numeric_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(412), - [sym_shortstring_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [anon_sym_ref] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [sym_super] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - }, - [218] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(668), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(437), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28425,40 +28389,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [219] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(726), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [218] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(734), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28500,40 +28464,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, - [220] = { - [sym_macro_invocation] = STATE(467), - [sym_generic_type_with_turbofish] = STATE(1242), - [sym__literal] = STATE(465), - [sym_negative_literal] = STATE(478), - [sym_string_literal] = STATE(478), - [sym_boolean_literal] = STATE(478), - [sym_scoped_identifier] = STATE(432), - [sym_scoped_type_identifier_in_expression_position] = STATE(1371), - [sym_expression] = STATE(729), - [sym_generic_function] = STATE(465), - [sym_tuple_expression] = STATE(465), - [sym_return_expression] = STATE(465), - [sym_struct_expression] = STATE(465), - [sym_assignment_expression] = STATE(465), - [sym_break_expression] = STATE(465), - [sym_continue_expression] = STATE(465), - [sym_index_expression] = STATE(465), - [sym_array_expression] = STATE(465), - [sym_parenthesized_expression] = STATE(465), - [sym_unit_expression] = STATE(465), - [sym_compound_assignment_expr] = STATE(465), - [sym__expression_ending_with_block] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_try_expression] = STATE(465), - [sym_field_expression] = STATE(429), - [sym_block] = STATE(465), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_reference_expression] = STATE(465), + [219] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(736), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(449), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(449), + [sym_if_expression] = STATE(449), + [sym_match_expression] = STATE(449), + [sym_while_expression] = STATE(449), + [sym_loop_expression] = STATE(449), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28575,13 +28539,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(77), [sym_line_comment] = ACTIONS(3), }, + [220] = { + [sym_macro_invocation] = STATE(457), + [sym_generic_type_with_turbofish] = STATE(1277), + [sym__literal] = STATE(449), + [sym_negative_literal] = STATE(441), + [sym_string_literal] = STATE(441), + [sym_boolean_literal] = STATE(441), + [sym_scoped_identifier] = STATE(430), + [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_expression] = STATE(680), + [sym_generic_function] = STATE(449), + [sym_tuple_expression] = STATE(449), + [sym_return_expression] = STATE(449), + [sym_struct_expression] = STATE(449), + [sym_assignment_expression] = STATE(449), + [sym_break_expression] = STATE(449), + [sym_continue_expression] = STATE(449), + [sym_index_expression] = STATE(449), + [sym_array_expression] = STATE(449), + [sym_parenthesized_expression] = STATE(449), + [sym_unit_expression] = STATE(449), + [sym_compound_assignment_expr] = STATE(449), + [sym__expression_ending_with_block] = STATE(252), + [sym_unary_expression] = STATE(449), + [sym_try_expression] = STATE(449), + [sym_field_expression] = STATE(434), + [sym_block] = STATE(252), + [sym_if_expression] = STATE(252), + [sym_match_expression] = STATE(252), + [sym_while_expression] = STATE(252), + [sym_loop_expression] = STATE(252), + [sym_binary_expression] = STATE(449), + [sym_call_expression] = STATE(449), + [sym_reference_expression] = STATE(449), + [anon_sym_LBRACE] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(804), + [anon_sym_loop] = ACTIONS(806), + [anon_sym_match] = ACTIONS(808), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(810), + [sym_numeric_literal] = ACTIONS(65), + [aux_sym_string_literal_token1] = ACTIONS(67), + [sym_shortstring_literal] = ACTIONS(69), + [anon_sym_true] = ACTIONS(71), + [anon_sym_false] = ACTIONS(71), + [anon_sym_ref] = ACTIONS(73), + [sym_identifier] = ACTIONS(75), + [sym_super] = ACTIONS(77), + [sym_line_comment] = ACTIONS(3), + }, }; static const uint16_t ts_small_parse_table[] = { [0] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(478), 23, + ACTIONS(525), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28605,7 +28644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(480), 39, + ACTIONS(527), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28648,7 +28687,7 @@ static const uint16_t ts_small_parse_table[] = { [70] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 23, + ACTIONS(537), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28672,7 +28711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(555), 39, + ACTIONS(539), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28713,140 +28752,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_super, [140] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(529), 23, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - ACTIONS(531), 39, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_STAR, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_default, - anon_sym_extern, - anon_sym_pub, - sym_identifier, - sym_super, - [210] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(525), 23, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - ACTIONS(527), 39, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_EQ, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_STAR, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_default, - anon_sym_extern, - anon_sym_pub, - sym_identifier, - sym_super, - [280] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(549), 23, @@ -28913,10 +28818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [350] = 3, + [210] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(541), 23, + ACTIONS(501), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28940,7 +28845,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(543), 39, + ACTIONS(503), 39, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_STAR, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [280] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(505), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + ACTIONS(507), 39, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_STAR, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [350] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(533), 23, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + ACTIONS(535), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28983,7 +29022,7 @@ static const uint16_t ts_small_parse_table[] = { [420] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(486), 23, + ACTIONS(497), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -29007,7 +29046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(488), 39, + ACTIONS(499), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -29047,86 +29086,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [490] = 34, + [490] = 27, ACTIONS(3), 1, sym_line_comment, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(53), 1, + anon_sym_extern, + ACTIONS(59), 1, + anon_sym_pub, ACTIONS(816), 1, - anon_sym_POUND, + anon_sym_RBRACE, ACTIONS(818), 1, - anon_sym_LBRACK, + anon_sym_impl, ACTIONS(820), 1, - anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(822), 1, - anon_sym_COLON_COLON, + anon_sym_trait, ACTIONS(824), 1, - anon_sym_LPAREN, + anon_sym_type, ACTIONS(826), 1, - anon_sym__, + anon_sym_const, ACTIONS(828), 1, - anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(830), 1, + anon_sym_mod, ACTIONS(832), 1, - anon_sym_DASH, + anon_sym_struct, ACTIONS(834), 1, - anon_sym_PIPE, + anon_sym_enum, ACTIONS(836), 1, - anon_sym_AT, + anon_sym_let, ACTIONS(838), 1, - anon_sym_default, + anon_sym_use, ACTIONS(840), 1, - sym_numeric_literal, - ACTIONS(842), 1, - aux_sym_string_literal_token1, + anon_sym_COLON_COLON, ACTIONS(844), 1, - sym_shortstring_literal, - ACTIONS(848), 1, - anon_sym_ref, - ACTIONS(850), 1, + anon_sym_default, + ACTIONS(846), 1, sym_identifier, - ACTIONS(852), 1, - sym_mutable_specifier, - ACTIONS(854), 1, + STATE(543), 1, + sym_extern_type, + STATE(861), 1, + sym_visibility_modifier, + STATE(1211), 1, + sym_function, + STATE(1275), 1, + sym_extern, + STATE(1379), 1, + sym_scoped_identifier, + STATE(1538), 1, + sym_generic_type_with_turbofish, + ACTIONS(842), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, sym_super, - STATE(340), 1, + STATE(231), 19, + sym_impl_item, + sym_trait_item, + sym_associated_type, + sym_associated_impl, + sym_const_item, + sym_macro_invocation, + sym_empty_statement, sym_attribute_item, - STATE(387), 1, - sym_ref_specifier, - STATE(871), 1, - sym_generic_type, - STATE(945), 1, - sym_negative_literal, - STATE(957), 1, - sym_scoped_type_identifier, - STATE(1013), 1, + sym_inner_attribute_item, + sym_mod_item, + sym_struct_item, + sym_enum_item, + sym_type_item, + sym_external_function_item, + sym_function_item, + sym_function_signature_item, + sym_let_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [604] = 27, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(53), 1, + anon_sym_extern, + ACTIONS(59), 1, + anon_sym_pub, + ACTIONS(818), 1, + anon_sym_impl, + ACTIONS(820), 1, + anon_sym_SEMI, + ACTIONS(822), 1, + anon_sym_trait, + ACTIONS(824), 1, + anon_sym_type, + ACTIONS(826), 1, + anon_sym_const, + ACTIONS(828), 1, + anon_sym_POUND, + ACTIONS(830), 1, + anon_sym_mod, + ACTIONS(832), 1, + anon_sym_struct, + ACTIONS(834), 1, + anon_sym_enum, + ACTIONS(836), 1, + anon_sym_let, + ACTIONS(838), 1, + anon_sym_use, + ACTIONS(840), 1, + anon_sym_COLON_COLON, + ACTIONS(844), 1, + anon_sym_default, + ACTIONS(846), 1, + sym_identifier, + ACTIONS(848), 1, + anon_sym_RBRACE, + STATE(543), 1, + sym_extern_type, + STATE(861), 1, + sym_visibility_modifier, + STATE(1211), 1, + sym_function, + STATE(1275), 1, + sym_extern, + STATE(1379), 1, sym_scoped_identifier, - STATE(1044), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - STATE(1138), 1, - sym_macro_invocation, - STATE(1432), 1, - sym__pattern, - ACTIONS(846), 2, - anon_sym_true, - anon_sym_false, - STATE(946), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1164), 2, - sym_parameter, - sym__type, - STATE(881), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(953), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(842), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29141,12 +29239,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [618] = 5, + sym_super, + STATE(231), 19, + sym_impl_item, + sym_trait_item, + sym_associated_type, + sym_associated_impl, + sym_const_item, + sym_macro_invocation, + sym_empty_statement, + sym_attribute_item, + sym_inner_attribute_item, + sym_mod_item, + sym_struct_item, + sym_enum_item, + sym_type_item, + sym_external_function_item, + sym_function_item, + sym_function_signature_item, + sym_let_declaration, + sym_use_declaration, + aux_sym_declaration_list_repeat1, + [718] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(856), 1, + ACTIONS(850), 1, anon_sym_else, - STATE(254), 1, + STATE(248), 1, sym_else_clause, ACTIONS(557), 24, anon_sym_RBRACE, @@ -29206,58 +29325,58 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [688] = 27, + [788] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(858), 1, + ACTIONS(852), 1, anon_sym_RBRACE, - ACTIONS(860), 1, + ACTIONS(854), 1, anon_sym_impl, - ACTIONS(863), 1, + ACTIONS(857), 1, anon_sym_SEMI, - ACTIONS(866), 1, + ACTIONS(860), 1, anon_sym_trait, - ACTIONS(869), 1, + ACTIONS(863), 1, anon_sym_type, - ACTIONS(872), 1, + ACTIONS(866), 1, anon_sym_const, - ACTIONS(875), 1, + ACTIONS(869), 1, anon_sym_POUND, - ACTIONS(878), 1, + ACTIONS(872), 1, anon_sym_mod, - ACTIONS(881), 1, + ACTIONS(875), 1, anon_sym_struct, - ACTIONS(884), 1, + ACTIONS(878), 1, anon_sym_enum, - ACTIONS(887), 1, + ACTIONS(881), 1, anon_sym_fn, - ACTIONS(890), 1, + ACTIONS(884), 1, anon_sym_let, - ACTIONS(893), 1, + ACTIONS(887), 1, anon_sym_use, - ACTIONS(896), 1, + ACTIONS(890), 1, anon_sym_COLON_COLON, - ACTIONS(902), 1, + ACTIONS(896), 1, anon_sym_default, - ACTIONS(905), 1, + ACTIONS(899), 1, anon_sym_extern, - ACTIONS(908), 1, + ACTIONS(902), 1, anon_sym_pub, - ACTIONS(911), 1, + ACTIONS(905), 1, sym_identifier, - STATE(566), 1, + STATE(543), 1, sym_extern_type, - STATE(858), 1, + STATE(861), 1, sym_visibility_modifier, - STATE(1160), 1, - sym_extern, - STATE(1207), 1, + STATE(1211), 1, sym_function, - STATE(1462), 1, + STATE(1275), 1, + sym_extern, + STATE(1379), 1, sym_scoped_identifier, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(899), 15, + ACTIONS(893), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29273,10 +29392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(230), 18, + STATE(231), 19, sym_impl_item, sym_trait_item, sym_associated_type, + sym_associated_impl, sym_const_item, sym_macro_invocation, sym_empty_statement, @@ -29292,76 +29412,78 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [801] = 33, + [902] = 34, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(908), 1, anon_sym_POUND, - ACTIONS(818), 1, + ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(822), 1, + ACTIONS(912), 1, + anon_sym_COMMA, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(824), 1, + ACTIONS(916), 1, anon_sym_LPAREN, - ACTIONS(832), 1, + ACTIONS(918), 1, + anon_sym__, + ACTIONS(920), 1, + anon_sym_RPAREN, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(838), 1, + ACTIONS(930), 1, anon_sym_default, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(848), 1, + ACTIONS(940), 1, anon_sym_ref, - ACTIONS(850), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(852), 1, + ACTIONS(944), 1, sym_mutable_specifier, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(914), 1, - anon_sym__, - ACTIONS(916), 1, - anon_sym_RPAREN, - STATE(338), 1, + STATE(341), 1, sym_attribute_item, - STATE(387), 1, + STATE(393), 1, sym_ref_specifier, STATE(871), 1, sym_generic_type, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(957), 1, + STATE(974), 1, sym_scoped_type_identifier, - STATE(1013), 1, + STATE(1047), 1, sym_scoped_identifier, - STATE(1044), 1, - sym_generic_type_with_turbofish, - STATE(1138), 1, + STATE(1117), 1, sym_macro_invocation, - STATE(1432), 1, + STATE(1118), 1, + sym_generic_type_with_turbofish, + STATE(1446), 1, sym__pattern, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(1355), 2, + STATE(1214), 2, sym_parameter, sym__type, - STATE(881), 4, + STATE(895), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(956), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -29369,7 +29491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(922), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29384,7 +29506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [926] = 27, + [1030] = 27, ACTIONS(3), 1, sym_line_comment, ACTIONS(31), 1, @@ -29393,49 +29515,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(59), 1, anon_sym_pub, - ACTIONS(918), 1, - anon_sym_RBRACE, - ACTIONS(920), 1, + ACTIONS(818), 1, anon_sym_impl, - ACTIONS(922), 1, + ACTIONS(820), 1, anon_sym_SEMI, - ACTIONS(924), 1, + ACTIONS(822), 1, anon_sym_trait, - ACTIONS(926), 1, + ACTIONS(824), 1, anon_sym_type, - ACTIONS(928), 1, + ACTIONS(826), 1, anon_sym_const, - ACTIONS(930), 1, + ACTIONS(828), 1, anon_sym_POUND, - ACTIONS(932), 1, + ACTIONS(830), 1, anon_sym_mod, - ACTIONS(934), 1, + ACTIONS(832), 1, anon_sym_struct, - ACTIONS(936), 1, + ACTIONS(834), 1, anon_sym_enum, - ACTIONS(938), 1, + ACTIONS(836), 1, anon_sym_let, - ACTIONS(940), 1, + ACTIONS(838), 1, anon_sym_use, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(844), 1, anon_sym_default, - ACTIONS(948), 1, + ACTIONS(846), 1, sym_identifier, - STATE(566), 1, + ACTIONS(948), 1, + anon_sym_RBRACE, + STATE(543), 1, sym_extern_type, - STATE(858), 1, + STATE(861), 1, sym_visibility_modifier, - STATE(1160), 1, - sym_extern, - STATE(1207), 1, + STATE(1211), 1, sym_function, - STATE(1462), 1, + STATE(1275), 1, + sym_extern, + STATE(1379), 1, sym_scoped_identifier, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(944), 15, + ACTIONS(842), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29451,10 +29573,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(230), 18, + STATE(228), 19, sym_impl_item, sym_trait_item, sym_associated_type, + sym_associated_impl, sym_const_item, sym_macro_invocation, sym_empty_statement, @@ -29470,69 +29593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [1039] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(525), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(527), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [1104] = 27, + [1144] = 27, ACTIONS(3), 1, sym_line_comment, ACTIONS(31), 1, @@ -29541,49 +29602,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(59), 1, anon_sym_pub, - ACTIONS(920), 1, + ACTIONS(818), 1, anon_sym_impl, - ACTIONS(922), 1, + ACTIONS(820), 1, anon_sym_SEMI, - ACTIONS(924), 1, + ACTIONS(822), 1, anon_sym_trait, - ACTIONS(926), 1, + ACTIONS(824), 1, anon_sym_type, - ACTIONS(928), 1, + ACTIONS(826), 1, anon_sym_const, - ACTIONS(930), 1, + ACTIONS(828), 1, anon_sym_POUND, - ACTIONS(932), 1, + ACTIONS(830), 1, anon_sym_mod, - ACTIONS(934), 1, + ACTIONS(832), 1, anon_sym_struct, - ACTIONS(936), 1, + ACTIONS(834), 1, anon_sym_enum, - ACTIONS(938), 1, + ACTIONS(836), 1, anon_sym_let, - ACTIONS(940), 1, + ACTIONS(838), 1, anon_sym_use, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(844), 1, anon_sym_default, - ACTIONS(948), 1, + ACTIONS(846), 1, sym_identifier, ACTIONS(950), 1, anon_sym_RBRACE, - STATE(566), 1, + STATE(543), 1, sym_extern_type, - STATE(858), 1, + STATE(861), 1, sym_visibility_modifier, - STATE(1160), 1, - sym_extern, - STATE(1207), 1, + STATE(1211), 1, sym_function, - STATE(1462), 1, + STATE(1275), 1, + sym_extern, + STATE(1379), 1, sym_scoped_identifier, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(944), 15, + ACTIONS(842), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29599,10 +29660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(232), 18, + STATE(229), 19, sym_impl_item, sym_trait_item, sym_associated_type, + sym_associated_impl, sym_const_item, sym_macro_invocation, sym_empty_statement, @@ -29618,10 +29680,10 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [1217] = 3, + [1258] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(541), 17, + ACTIONS(505), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29639,7 +29701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(543), 40, + ACTIONS(507), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -29680,76 +29742,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1282] = 33, + [1323] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, - anon_sym_POUND, - ACTIONS(818), 1, - anon_sym_LBRACK, - ACTIONS(822), 1, + ACTIONS(533), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(824), 1, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(832), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(834), 1, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(535), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [1388] = 33, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(908), 1, + anon_sym_POUND, + ACTIONS(910), 1, + anon_sym_LBRACK, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(916), 1, + anon_sym_LPAREN, + ACTIONS(924), 1, + anon_sym_DASH, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(838), 1, + ACTIONS(930), 1, anon_sym_default, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(848), 1, + ACTIONS(940), 1, anon_sym_ref, - ACTIONS(850), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(852), 1, + ACTIONS(944), 1, sym_mutable_specifier, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(914), 1, - anon_sym__, ACTIONS(952), 1, + anon_sym__, + ACTIONS(954), 1, anon_sym_RPAREN, - STATE(338), 1, + STATE(339), 1, sym_attribute_item, - STATE(387), 1, + STATE(393), 1, sym_ref_specifier, STATE(871), 1, sym_generic_type, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(957), 1, + STATE(974), 1, sym_scoped_type_identifier, - STATE(1013), 1, + STATE(1047), 1, sym_scoped_identifier, - STATE(1044), 1, - sym_generic_type_with_turbofish, - STATE(1138), 1, + STATE(1117), 1, sym_macro_invocation, - STATE(1432), 1, + STATE(1118), 1, + sym_generic_type_with_turbofish, + STATE(1446), 1, sym__pattern, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(1355), 2, + STATE(1405), 2, sym_parameter, sym__type, - STATE(881), 4, + STATE(895), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(956), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -29757,7 +29881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(922), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29772,38 +29896,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [1407] = 3, + [1513] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(541), 24, - anon_sym_RBRACE, + ACTIONS(908), 1, anon_sym_POUND, + ACTIONS(910), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(914), 1, anon_sym_COLON_COLON, + ACTIONS(916), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(924), 1, + anon_sym_DASH, + ACTIONS(926), 1, + anon_sym_PIPE, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(930), 1, + anon_sym_default, + ACTIONS(932), 1, + sym_numeric_literal, + ACTIONS(934), 1, aux_sym_string_literal_token1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(543), 33, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(940), 1, + anon_sym_ref, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, + sym_mutable_specifier, + ACTIONS(946), 1, + sym_super, + ACTIONS(952), 1, anon_sym__, + ACTIONS(956), 1, + anon_sym_RPAREN, + STATE(339), 1, + sym_attribute_item, + STATE(393), 1, + sym_ref_specifier, + STATE(871), 1, + sym_generic_type, + STATE(935), 1, + sym_negative_literal, + STATE(974), 1, + sym_scoped_type_identifier, + STATE(1047), 1, + sym_scoped_identifier, + STATE(1117), 1, + sym_macro_invocation, + STATE(1118), 1, + sym_generic_type_with_turbofish, + STATE(1446), 1, + sym__pattern, + ACTIONS(938), 2, + anon_sym_true, + anon_sym_false, + STATE(951), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1405), 2, + sym_parameter, + sym__type, + STATE(895), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(956), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(922), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29818,26 +29988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_else, - sym_identifier, - sym_mutable_specifier, - sym_super, - [1472] = 3, + [1638] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(549), 24, + ACTIONS(525), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29862,7 +30016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(551), 33, + ACTIONS(527), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -29896,10 +30050,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [1537] = 3, + [1703] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(525), 24, + ACTIONS(505), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -29924,7 +30078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(527), 33, + ACTIONS(507), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -29958,188 +30112,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [1602] = 27, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(31), 1, - anon_sym_fn, - ACTIONS(53), 1, - anon_sym_extern, - ACTIONS(59), 1, - anon_sym_pub, - ACTIONS(920), 1, - anon_sym_impl, - ACTIONS(922), 1, - anon_sym_SEMI, - ACTIONS(924), 1, - anon_sym_trait, - ACTIONS(926), 1, - anon_sym_type, - ACTIONS(928), 1, - anon_sym_const, - ACTIONS(930), 1, - anon_sym_POUND, - ACTIONS(932), 1, - anon_sym_mod, - ACTIONS(934), 1, - anon_sym_struct, - ACTIONS(936), 1, - anon_sym_enum, - ACTIONS(938), 1, - anon_sym_let, - ACTIONS(940), 1, - anon_sym_use, - ACTIONS(942), 1, - anon_sym_COLON_COLON, - ACTIONS(946), 1, - anon_sym_default, - ACTIONS(948), 1, - sym_identifier, - ACTIONS(954), 1, - anon_sym_RBRACE, - STATE(566), 1, - sym_extern_type, - STATE(858), 1, - sym_visibility_modifier, - STATE(1160), 1, - sym_extern, - STATE(1207), 1, - sym_function, - STATE(1462), 1, - sym_scoped_identifier, - STATE(1533), 1, - sym_generic_type_with_turbofish, - ACTIONS(944), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - STATE(243), 18, - sym_impl_item, - sym_trait_item, - sym_associated_type, - sym_const_item, - sym_macro_invocation, - sym_empty_statement, - sym_attribute_item, - sym_inner_attribute_item, - sym_mod_item, - sym_struct_item, - sym_enum_item, - sym_type_item, - sym_external_function_item, - sym_function_item, - sym_function_signature_item, - sym_let_declaration, - sym_use_declaration, - aux_sym_declaration_list_repeat1, - [1715] = 33, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(816), 1, - anon_sym_POUND, - ACTIONS(818), 1, - anon_sym_LBRACK, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(832), 1, - anon_sym_DASH, - ACTIONS(834), 1, - anon_sym_PIPE, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(838), 1, - anon_sym_default, - ACTIONS(840), 1, - sym_numeric_literal, - ACTIONS(842), 1, - aux_sym_string_literal_token1, - ACTIONS(844), 1, - sym_shortstring_literal, - ACTIONS(848), 1, - anon_sym_ref, - ACTIONS(850), 1, - sym_identifier, - ACTIONS(852), 1, - sym_mutable_specifier, - ACTIONS(854), 1, - sym_super, - ACTIONS(914), 1, - anon_sym__, - ACTIONS(956), 1, - anon_sym_RPAREN, - STATE(338), 1, - sym_attribute_item, - STATE(387), 1, - sym_ref_specifier, - STATE(871), 1, - sym_generic_type, - STATE(945), 1, - sym_negative_literal, - STATE(957), 1, - sym_scoped_type_identifier, - STATE(1013), 1, - sym_scoped_identifier, - STATE(1044), 1, - sym_generic_type_with_turbofish, - STATE(1138), 1, - sym_macro_invocation, - STATE(1432), 1, - sym__pattern, - ACTIONS(846), 2, - anon_sym_true, - anon_sym_false, - STATE(946), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1355), 2, - sym_parameter, - sym__type, - STATE(881), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(953), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(830), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [1840] = 3, + [1768] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(549), 17, + ACTIONS(525), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30157,7 +30133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(551), 40, + ACTIONS(527), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -30198,96 +30174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [1905] = 27, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(31), 1, - anon_sym_fn, - ACTIONS(53), 1, - anon_sym_extern, - ACTIONS(59), 1, - anon_sym_pub, - ACTIONS(920), 1, - anon_sym_impl, - ACTIONS(922), 1, - anon_sym_SEMI, - ACTIONS(924), 1, - anon_sym_trait, - ACTIONS(926), 1, - anon_sym_type, - ACTIONS(928), 1, - anon_sym_const, - ACTIONS(930), 1, - anon_sym_POUND, - ACTIONS(932), 1, - anon_sym_mod, - ACTIONS(934), 1, - anon_sym_struct, - ACTIONS(936), 1, - anon_sym_enum, - ACTIONS(938), 1, - anon_sym_let, - ACTIONS(940), 1, - anon_sym_use, - ACTIONS(942), 1, - anon_sym_COLON_COLON, - ACTIONS(946), 1, - anon_sym_default, - ACTIONS(948), 1, - sym_identifier, - ACTIONS(958), 1, - anon_sym_RBRACE, - STATE(566), 1, - sym_extern_type, - STATE(858), 1, - sym_visibility_modifier, - STATE(1160), 1, - sym_extern, - STATE(1207), 1, - sym_function, - STATE(1462), 1, - sym_scoped_identifier, - STATE(1533), 1, - sym_generic_type_with_turbofish, - ACTIONS(944), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - STATE(230), 18, - sym_impl_item, - sym_trait_item, - sym_associated_type, - sym_const_item, - sym_macro_invocation, - sym_empty_statement, - sym_attribute_item, - sym_inner_attribute_item, - sym_mod_item, - sym_struct_item, - sym_enum_item, - sym_type_item, - sym_external_function_item, - sym_function_item, - sym_function_signature_item, - sym_let_declaration, - sym_use_declaration, - aux_sym_declaration_list_repeat1, - [2018] = 3, + [1833] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(521), 24, + ACTIONS(533), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30312,7 +30202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(523), 32, + ACTIONS(535), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30342,77 +30232,80 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_else, sym_identifier, sym_mutable_specifier, sym_super, - [2082] = 32, + [1898] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(816), 1, + ACTIONS(908), 1, anon_sym_POUND, - ACTIONS(818), 1, + ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(824), 1, + ACTIONS(916), 1, anon_sym_LPAREN, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(838), 1, + ACTIONS(930), 1, anon_sym_default, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(848), 1, + ACTIONS(940), 1, anon_sym_ref, - ACTIONS(850), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(852), 1, + ACTIONS(944), 1, sym_mutable_specifier, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(914), 1, + ACTIONS(952), 1, anon_sym__, - STATE(338), 1, + ACTIONS(958), 1, + anon_sym_RPAREN, + STATE(339), 1, sym_attribute_item, - STATE(387), 1, + STATE(393), 1, sym_ref_specifier, STATE(871), 1, sym_generic_type, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(957), 1, + STATE(974), 1, sym_scoped_type_identifier, - STATE(1013), 1, + STATE(1047), 1, sym_scoped_identifier, - STATE(1044), 1, - sym_generic_type_with_turbofish, - STATE(1138), 1, + STATE(1117), 1, sym_macro_invocation, - STATE(1432), 1, + STATE(1118), 1, + sym_generic_type_with_turbofish, + STATE(1446), 1, sym__pattern, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(1355), 2, + STATE(1405), 2, sym_parameter, sym__type, - STATE(881), 4, + STATE(895), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(956), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -30420,7 +30313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(922), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30435,10 +30328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [2204] = 3, + [2023] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(525), 24, + ACTIONS(553), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30463,7 +30356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(527), 32, + ACTIONS(555), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30496,10 +30389,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2268] = 3, + [2087] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(549), 24, + ACTIONS(521), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30524,7 +30417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(551), 32, + ACTIONS(523), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30557,10 +30450,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2332] = 3, + [2151] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(541), 24, + ACTIONS(513), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30585,7 +30478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(543), 32, + ACTIONS(515), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30618,10 +30511,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2396] = 3, + [2215] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(513), 24, + ACTIONS(533), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30646,7 +30539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(515), 32, + ACTIONS(535), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30679,10 +30572,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2460] = 3, + [2279] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(533), 24, + ACTIONS(529), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30707,7 +30600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(535), 32, + ACTIONS(531), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30740,28 +30633,16 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2524] = 5, + [2343] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(960), 6, + ACTIONS(509), 24, + anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(579), 8, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - ACTIONS(575), 18, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -30778,7 +30659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(962), 24, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(511), 32, + anon_sym_EQ, + anon_sym_STAR, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -30794,8 +30679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, sym_numeric_literal, anon_sym_true, @@ -30803,10 +30694,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2592] = 3, + [2407] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(517), 24, + ACTIONS(545), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30831,7 +30722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(519), 32, + ACTIONS(547), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30864,10 +30755,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2656] = 3, + [2471] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(505), 24, + ACTIONS(541), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30892,7 +30783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(507), 32, + ACTIONS(543), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30925,16 +30816,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2720] = 3, + [2535] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(509), 24, - anon_sym_RBRACE, + ACTIONS(960), 6, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(577), 8, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + ACTIONS(579), 18, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -30951,11 +30854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(511), 32, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(962), 24, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -30971,13 +30870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_default, sym_numeric_literal, @@ -30986,28 +30879,16 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2784] = 5, + [2603] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(964), 6, + ACTIONS(517), 24, + anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(579), 8, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - ACTIONS(575), 18, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -31024,7 +30905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(966), 24, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(519), 32, + anon_sym_EQ, + anon_sym_STAR, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -31040,7 +30925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_default, sym_numeric_literal, @@ -31049,10 +30940,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2852] = 3, + [2667] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(545), 24, + ACTIONS(505), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -31077,7 +30968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(547), 32, + ACTIONS(507), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -31110,16 +31001,28 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2916] = 3, + [2731] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(537), 24, - anon_sym_RBRACE, + ACTIONS(964), 6, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(577), 8, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + ACTIONS(579), 18, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -31136,11 +31039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(539), 32, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(966), 24, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -31156,13 +31055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_default, sym_numeric_literal, @@ -31171,36 +31064,82 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2980] = 3, + [2799] = 32, ACTIONS(3), 1, sym_line_comment, - ACTIONS(968), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, + ACTIONS(908), 1, anon_sym_POUND, + ACTIONS(910), 1, anon_sym_LBRACK, + ACTIONS(914), 1, anon_sym_COLON_COLON, - anon_sym_STAR, + ACTIONS(916), 1, anon_sym_LPAREN, + ACTIONS(924), 1, anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(926), 1, + anon_sym_PIPE, + ACTIONS(928), 1, anon_sym_AT, + ACTIONS(930), 1, + anon_sym_default, + ACTIONS(932), 1, + sym_numeric_literal, + ACTIONS(934), 1, aux_sym_string_literal_token1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(970), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(940), 1, + anon_sym_ref, + ACTIONS(942), 1, + sym_identifier, + ACTIONS(944), 1, + sym_mutable_specifier, + ACTIONS(946), 1, + sym_super, + ACTIONS(952), 1, + anon_sym__, + STATE(339), 1, + sym_attribute_item, + STATE(393), 1, + sym_ref_specifier, + STATE(871), 1, + sym_generic_type, + STATE(935), 1, + sym_negative_literal, + STATE(974), 1, + sym_scoped_type_identifier, + STATE(1047), 1, + sym_scoped_identifier, + STATE(1117), 1, + sym_macro_invocation, + STATE(1118), 1, + sym_generic_type_with_turbofish, + STATE(1446), 1, + sym__pattern, + ACTIONS(938), 2, + anon_sym_true, + anon_sym_false, + STATE(951), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1405), 2, + sym_parameter, + sym__type, + STATE(895), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(956), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(922), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -31215,26 +31154,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + [2921] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(525), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(527), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [3043] = 3, + [2985] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(972), 15, + ACTIONS(968), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31250,7 +31234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(974), 40, + ACTIONS(970), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31291,10 +31275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3106] = 3, + [3048] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(976), 15, + ACTIONS(972), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31310,7 +31294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(978), 40, + ACTIONS(974), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31351,10 +31335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3169] = 3, + [3111] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(980), 15, + ACTIONS(976), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31370,7 +31354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(982), 40, + ACTIONS(978), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31411,10 +31395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3232] = 3, + [3174] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(984), 15, + ACTIONS(980), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31430,7 +31414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(986), 40, + ACTIONS(982), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31471,10 +31455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3295] = 3, + [3237] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(988), 15, + ACTIONS(984), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31490,7 +31474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(990), 40, + ACTIONS(986), 40, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31531,7 +31515,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3358] = 3, + [3300] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(988), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(990), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [3363] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(992), 15, @@ -31591,7 +31635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3421] = 3, + [3426] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(996), 15, @@ -31651,7 +31695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3484] = 3, + [3489] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1000), 15, @@ -31711,7 +31755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3547] = 3, + [3552] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1004), 15, @@ -31771,7 +31815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3610] = 3, + [3615] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1008), 15, @@ -31831,7 +31875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3673] = 3, + [3678] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1012), 15, @@ -31891,7 +31935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3736] = 3, + [3741] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1016), 15, @@ -31951,7 +31995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3799] = 3, + [3804] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1020), 15, @@ -32011,7 +32055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3862] = 3, + [3867] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1024), 15, @@ -32071,7 +32115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3925] = 3, + [3930] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1028), 15, @@ -32131,7 +32175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [3988] = 3, + [3993] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1032), 15, @@ -32191,7 +32235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4051] = 3, + [4056] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1036), 15, @@ -32251,7 +32295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4114] = 3, + [4119] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1040), 15, @@ -32311,7 +32355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4177] = 3, + [4182] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1044), 15, @@ -32371,7 +32415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4240] = 3, + [4245] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1048), 15, @@ -32431,7 +32475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4303] = 3, + [4308] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1052), 15, @@ -32491,7 +32535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4366] = 3, + [4371] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1056), 15, @@ -32551,7 +32595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4429] = 3, + [4434] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1060), 15, @@ -32611,7 +32655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4492] = 3, + [4497] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1064), 15, @@ -32671,7 +32715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4555] = 3, + [4560] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1068), 15, @@ -32731,7 +32775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4618] = 3, + [4623] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1072), 15, @@ -32791,7 +32835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4681] = 3, + [4686] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1076), 15, @@ -32851,7 +32895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4744] = 3, + [4749] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1080), 15, @@ -32911,7 +32955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4807] = 3, + [4812] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1084), 15, @@ -32971,7 +33015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4870] = 3, + [4875] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1088), 15, @@ -33031,7 +33075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4933] = 3, + [4938] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1092), 15, @@ -33091,7 +33135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [4996] = 3, + [5001] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1096), 15, @@ -33151,7 +33195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5059] = 3, + [5064] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1100), 15, @@ -33211,7 +33255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5122] = 3, + [5127] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1104), 15, @@ -33271,7 +33315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5185] = 3, + [5190] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1108), 15, @@ -33331,7 +33375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5248] = 3, + [5253] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1112), 15, @@ -33391,7 +33435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5311] = 3, + [5316] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1116), 15, @@ -33451,7 +33495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5374] = 3, + [5379] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1120), 15, @@ -33511,7 +33555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5437] = 3, + [5442] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1124), 15, @@ -33571,7 +33615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5500] = 3, + [5505] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1128), 15, @@ -33631,7 +33675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5563] = 3, + [5568] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1132), 15, @@ -33691,7 +33735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5626] = 3, + [5631] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1136), 15, @@ -33751,7 +33795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5689] = 3, + [5694] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1140), 15, @@ -33811,7 +33855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5752] = 3, + [5757] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1144), 15, @@ -33871,7 +33915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5815] = 3, + [5820] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1148), 15, @@ -33931,7 +33975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5878] = 3, + [5883] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1152), 15, @@ -33991,7 +34035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [5941] = 3, + [5946] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1156), 15, @@ -34051,7 +34095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6004] = 3, + [6009] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1160), 15, @@ -34111,7 +34155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6067] = 3, + [6072] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1164), 15, @@ -34171,7 +34215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6130] = 3, + [6135] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1168), 15, @@ -34231,7 +34275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6193] = 3, + [6198] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1172), 15, @@ -34291,7 +34335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6256] = 3, + [6261] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1176), 15, @@ -34351,7 +34395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6319] = 3, + [6324] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1180), 15, @@ -34411,7 +34455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6382] = 3, + [6387] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1184), 15, @@ -34471,7 +34515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6445] = 3, + [6450] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1188), 15, @@ -34531,7 +34575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6508] = 3, + [6513] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1192), 15, @@ -34591,7 +34635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6571] = 3, + [6576] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1196), 15, @@ -34651,7 +34695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6634] = 3, + [6639] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1200), 15, @@ -34711,7 +34755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6697] = 3, + [6702] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1204), 15, @@ -34771,7 +34815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6760] = 3, + [6765] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1208), 15, @@ -34831,7 +34875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6823] = 3, + [6828] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1212), 15, @@ -34891,7 +34935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6886] = 3, + [6891] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1216), 15, @@ -34951,7 +34995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [6949] = 3, + [6954] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1220), 15, @@ -35011,7 +35055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7012] = 3, + [7017] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1224), 15, @@ -35071,7 +35115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7075] = 3, + [7080] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1228), 15, @@ -35131,7 +35175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7138] = 3, + [7143] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1232), 15, @@ -35191,7 +35235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7201] = 3, + [7206] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1236), 15, @@ -35251,7 +35295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7264] = 3, + [7269] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1240), 15, @@ -35311,7 +35355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7327] = 3, + [7332] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1244), 15, @@ -35371,7 +35415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7390] = 3, + [7395] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1248), 15, @@ -35431,7 +35475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7453] = 3, + [7458] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1252), 15, @@ -35491,7 +35535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7516] = 3, + [7521] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1256), 15, @@ -35551,7 +35595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7579] = 3, + [7584] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1260), 15, @@ -35611,7 +35655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7642] = 3, + [7647] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1264), 15, @@ -35671,7 +35715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7705] = 3, + [7710] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1268), 15, @@ -35731,7 +35775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7768] = 3, + [7773] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1272), 15, @@ -35791,7 +35835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7831] = 3, + [7836] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1276), 15, @@ -35851,7 +35895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7894] = 3, + [7899] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1280), 15, @@ -35911,69 +35955,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [7957] = 30, + [7962] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1284), 1, + ACTIONS(1284), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(1286), 1, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, - ACTIONS(1288), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1286), 40, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [8025] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1288), 1, + anon_sym_RBRACE, + ACTIONS(1290), 1, + anon_sym_POUND, + ACTIONS(1292), 1, + anon_sym_LBRACK, ACTIONS(1294), 1, - anon_sym__, + anon_sym_COLON_COLON, + ACTIONS(1296), 1, + anon_sym_LPAREN, ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1306), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, - sym_shortstring_literal, ACTIONS(1312), 1, + sym_shortstring_literal, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1318), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1320), 1, sym_super, - STATE(988), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(1157), 1, + STATE(1160), 1, + sym__pattern, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1332), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, + STATE(1475), 1, sym_match_pattern, - STATE(1579), 1, + STATE(1498), 1, sym_last_match_arm, - ACTIONS(1310), 2, + STATE(1559), 1, + sym_generic_type, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(342), 2, + STATE(348), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, + STATE(352), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -35982,7 +36086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -35997,70 +36101,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8073] = 30, + [8141] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(824), 1, + ACTIONS(916), 1, anon_sym_LPAREN, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(838), 1, + ACTIONS(930), 1, anon_sym_default, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(848), 1, + ACTIONS(940), 1, anon_sym_ref, - ACTIONS(850), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(852), 1, + ACTIONS(944), 1, sym_mutable_specifier, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1318), 1, + ACTIONS(1322), 1, anon_sym__, - STATE(387), 1, + STATE(393), 1, sym_ref_specifier, STATE(871), 1, sym_generic_type, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(957), 1, + STATE(974), 1, sym_scoped_type_identifier, - STATE(1013), 1, + STATE(1047), 1, sym_scoped_identifier, - STATE(1044), 1, - sym_generic_type_with_turbofish, - STATE(1138), 1, + STATE(1117), 1, sym_macro_invocation, - STATE(1432), 1, + STATE(1118), 1, + sym_generic_type_with_turbofish, + STATE(1446), 1, sym__pattern, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(1415), 2, + STATE(1376), 2, sym_parameter, sym__type, - STATE(881), 4, + STATE(895), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(956), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36068,7 +36172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(922), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36083,69 +36187,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8189] = 30, + [8257] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1290), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1292), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1294), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1296), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1306), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, - sym_shortstring_literal, ACTIONS(1312), 1, + sym_shortstring_literal, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1318), 1, sym_mutable_specifier, - ACTIONS(1316), 1, - sym_super, ACTIONS(1320), 1, + sym_super, + ACTIONS(1324), 1, anon_sym_RBRACE, - STATE(988), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(1157), 1, + STATE(1160), 1, + sym__pattern, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1332), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, + STATE(1475), 1, sym_match_pattern, - STATE(1593), 1, + STATE(1559), 1, + sym_generic_type, + STATE(1599), 1, sym_last_match_arm, - ACTIONS(1310), 2, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(347), 2, + STATE(345), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, + STATE(352), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36154,7 +36258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36169,70 +36273,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8305] = 30, + [8373] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(824), 1, + ACTIONS(916), 1, anon_sym_LPAREN, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(838), 1, + ACTIONS(930), 1, anon_sym_default, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(848), 1, + ACTIONS(940), 1, anon_sym_ref, - ACTIONS(850), 1, + ACTIONS(942), 1, sym_identifier, - ACTIONS(852), 1, + ACTIONS(944), 1, sym_mutable_specifier, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1322), 1, + ACTIONS(1326), 1, anon_sym__, - STATE(387), 1, + STATE(393), 1, sym_ref_specifier, STATE(871), 1, sym_generic_type, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(957), 1, + STATE(974), 1, sym_scoped_type_identifier, - STATE(1013), 1, + STATE(1047), 1, sym_scoped_identifier, - STATE(1044), 1, - sym_generic_type_with_turbofish, - STATE(1138), 1, + STATE(1117), 1, sym_macro_invocation, - STATE(1432), 1, + STATE(1118), 1, + sym_generic_type_with_turbofish, + STATE(1446), 1, sym__pattern, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(1315), 2, + STATE(1228), 2, sym_parameter, sym__type, - STATE(881), 4, + STATE(895), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(956), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36240,7 +36344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(830), 14, + ACTIONS(922), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36255,69 +36359,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8421] = 30, + [8489] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1290), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1292), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1294), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1296), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1306), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, - sym_shortstring_literal, ACTIONS(1312), 1, + sym_shortstring_literal, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1318), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1320), 1, sym_super, - ACTIONS(1324), 1, + ACTIONS(1328), 1, anon_sym_RBRACE, - STATE(988), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(1157), 1, + STATE(1160), 1, + sym__pattern, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1332), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1499), 1, + STATE(1475), 1, + sym_match_pattern, + STATE(1477), 1, sym_last_match_arm, - STATE(1548), 1, - sym_generic_type, STATE(1559), 1, - sym_match_pattern, - ACTIONS(1310), 2, + sym_generic_type, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(344), 2, + STATE(349), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, + STATE(352), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36326,7 +36430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36341,68 +36445,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8537] = 29, + [8605] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, - anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, - anon_sym_COLON_COLON, - ACTIONS(1292), 1, - anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, - ACTIONS(1298), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(1302), 1, - anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1312), 1, + ACTIONS(1330), 1, + anon_sym_COMMA, + ACTIONS(1332), 1, + anon_sym_COLON_COLON, + ACTIONS(1334), 1, + anon_sym_LPAREN, + ACTIONS(1336), 1, + anon_sym__, + ACTIONS(1338), 1, + anon_sym_RPAREN, + ACTIONS(1342), 1, + anon_sym_default, + ACTIONS(1344), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_super, - STATE(988), 1, - sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(871), 1, + sym_generic_type, + STATE(935), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(974), 1, + sym_scoped_type_identifier, + STATE(984), 1, + sym_scoped_identifier, + STATE(1065), 1, sym_generic_type_with_turbofish, - STATE(1535), 1, - sym_last_match_arm, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, - sym_match_pattern, - ACTIONS(1310), 2, + STATE(1128), 1, + sym__pattern, + STATE(1169), 1, + sym__type, + STATE(1258), 1, + sym_macro_invocation, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(349), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1224), 8, - sym_macro_invocation, + STATE(895), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(956), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36410,7 +36515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1340), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36425,69 +36530,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8650] = 30, + [8720] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1326), 1, + ACTIONS(1330), 1, anon_sym_COMMA, - ACTIONS(1328), 1, + ACTIONS(1332), 1, anon_sym_COLON_COLON, - ACTIONS(1330), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1334), 1, - anon_sym_RPAREN, - ACTIONS(1338), 1, + ACTIONS(1342), 1, anon_sym_default, - ACTIONS(1340), 1, + ACTIONS(1344), 1, sym_identifier, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1344), 1, + ACTIONS(1348), 1, sym_super, + ACTIONS(1350), 1, + anon_sym_RPAREN, STATE(871), 1, sym_generic_type, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(957), 1, + STATE(974), 1, sym_scoped_type_identifier, - STATE(977), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1051), 1, + STATE(1065), 1, sym_generic_type_with_turbofish, - STATE(1091), 1, + STATE(1128), 1, sym__pattern, - STATE(1148), 1, - sym_macro_invocation, - STATE(1240), 1, + STATE(1169), 1, sym__type, - ACTIONS(846), 2, + STATE(1258), 1, + sym_macro_invocation, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(881), 4, + STATE(895), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(956), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36495,7 +36600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1336), 14, + ACTIONS(1340), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36510,67 +36615,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8765] = 29, + [8835] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1290), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1292), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1294), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1296), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1306), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, - sym_shortstring_literal, ACTIONS(1312), 1, + sym_shortstring_literal, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1318), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1320), 1, sym_super, - STATE(988), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(1157), 1, + STATE(1160), 1, + sym__pattern, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1332), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1498), 1, - sym_last_match_arm, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, + STATE(1475), 1, sym_match_pattern, - ACTIONS(1310), 2, + STATE(1559), 1, + sym_generic_type, + STATE(1574), 1, + sym_last_match_arm, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(349), 2, + STATE(350), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, + STATE(352), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36579,7 +36684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36594,69 +36699,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8878] = 30, + [8948] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1326), 1, + ACTIONS(1330), 1, anon_sym_COMMA, - ACTIONS(1328), 1, + ACTIONS(1332), 1, anon_sym_COLON_COLON, - ACTIONS(1330), 1, + ACTIONS(1334), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1338), 1, + ACTIONS(1342), 1, anon_sym_default, - ACTIONS(1340), 1, + ACTIONS(1344), 1, sym_identifier, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1344), 1, + ACTIONS(1348), 1, sym_super, - ACTIONS(1346), 1, + ACTIONS(1352), 1, anon_sym_RPAREN, STATE(871), 1, sym_generic_type, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(957), 1, + STATE(974), 1, sym_scoped_type_identifier, - STATE(977), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1051), 1, + STATE(1065), 1, sym_generic_type_with_turbofish, - STATE(1091), 1, + STATE(1128), 1, sym__pattern, - STATE(1148), 1, - sym_macro_invocation, - STATE(1240), 1, + STATE(1169), 1, sym__type, - ACTIONS(846), 2, + STATE(1258), 1, + sym_macro_invocation, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(881), 4, + STATE(895), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(956), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36664,7 +36769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1336), 14, + ACTIONS(1340), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36679,69 +36784,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8993] = 30, + [9063] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1348), 1, + ACTIONS(1354), 1, anon_sym_RBRACK, - ACTIONS(1350), 1, + ACTIONS(1356), 1, anon_sym_COMMA, - ACTIONS(1352), 1, + ACTIONS(1358), 1, anon_sym_COLON_COLON, - ACTIONS(1354), 1, + ACTIONS(1360), 1, anon_sym_LPAREN, - ACTIONS(1358), 1, + ACTIONS(1364), 1, anon_sym_default, - ACTIONS(1360), 1, + ACTIONS(1366), 1, sym_identifier, - ACTIONS(1362), 1, + ACTIONS(1368), 1, sym_super, STATE(871), 1, sym_generic_type, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(957), 1, - sym_scoped_type_identifier, STATE(974), 1, + sym_scoped_type_identifier, + STATE(994), 1, sym_scoped_identifier, - STATE(1043), 1, - sym__pattern, - STATE(1083), 1, - sym_macro_invocation, - STATE(1094), 1, + STATE(1126), 1, sym_generic_type_with_turbofish, - STATE(1367), 1, + STATE(1127), 1, + sym_macro_invocation, + STATE(1129), 1, + sym__pattern, + STATE(1459), 1, sym__type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(881), 4, + STATE(895), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(953), 7, + STATE(956), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36749,7 +36854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1356), 14, + ACTIONS(1362), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36764,67 +36869,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9108] = 29, + [9178] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1290), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1292), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1294), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1296), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1306), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, - sym_shortstring_literal, ACTIONS(1312), 1, + sym_shortstring_literal, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1318), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1320), 1, sym_super, - STATE(988), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(1157), 1, + STATE(1160), 1, + sym__pattern, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1332), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, - sym_generic_type, - STATE(1559), 1, + STATE(1475), 1, sym_match_pattern, - STATE(1562), 1, + STATE(1496), 1, sym_last_match_arm, - ACTIONS(1310), 2, + STATE(1559), 1, + sym_generic_type, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(349), 2, + STATE(350), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(350), 3, + STATE(352), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36833,7 +36938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36848,69 +36953,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9221] = 30, + [9291] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(818), 1, + ACTIONS(1290), 1, + anon_sym_POUND, + ACTIONS(1292), 1, anon_sym_LBRACK, - ACTIONS(832), 1, + ACTIONS(1294), 1, + anon_sym_COLON_COLON, + ACTIONS(1296), 1, + anon_sym_LPAREN, + ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(840), 1, + ACTIONS(1306), 1, + anon_sym_default, + ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(1312), 1, sym_shortstring_literal, - ACTIONS(1326), 1, - anon_sym_COMMA, - ACTIONS(1328), 1, - anon_sym_COLON_COLON, - ACTIONS(1330), 1, - anon_sym_LPAREN, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1338), 1, - anon_sym_default, - ACTIONS(1340), 1, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1342), 1, + ACTIONS(1318), 1, sym_mutable_specifier, - ACTIONS(1344), 1, + ACTIONS(1320), 1, sym_super, - ACTIONS(1364), 1, - anon_sym_RPAREN, - STATE(871), 1, - sym_generic_type, - STATE(945), 1, - sym_negative_literal, - STATE(957), 1, - sym_scoped_type_identifier, - STATE(977), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(1051), 1, - sym_generic_type_with_turbofish, - STATE(1091), 1, + STATE(1160), 1, sym__pattern, - STATE(1148), 1, - sym_macro_invocation, - STATE(1240), 1, - sym__type, - ACTIONS(846), 2, + STATE(1259), 1, + sym_scoped_type_identifier, + STATE(1332), 1, + sym_negative_literal, + STATE(1412), 1, + sym_generic_type_with_turbofish, + STATE(1475), 1, + sym_match_pattern, + STATE(1528), 1, + sym_last_match_arm, + STATE(1559), 1, + sym_generic_type, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(350), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(881), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(953), 7, + STATE(352), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1294), 8, + sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36918,7 +37022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1336), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36933,65 +37037,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9336] = 28, + [9404] = 28, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1366), 1, + ACTIONS(1370), 1, anon_sym_POUND, - ACTIONS(1369), 1, + ACTIONS(1373), 1, anon_sym_LBRACK, - ACTIONS(1372), 1, + ACTIONS(1376), 1, anon_sym_COLON_COLON, - ACTIONS(1375), 1, + ACTIONS(1379), 1, anon_sym_LPAREN, - ACTIONS(1378), 1, + ACTIONS(1382), 1, anon_sym__, - ACTIONS(1384), 1, + ACTIONS(1388), 1, anon_sym_DASH, - ACTIONS(1387), 1, + ACTIONS(1391), 1, anon_sym_PIPE, - ACTIONS(1390), 1, + ACTIONS(1394), 1, anon_sym_default, - ACTIONS(1393), 1, + ACTIONS(1397), 1, sym_numeric_literal, - ACTIONS(1396), 1, + ACTIONS(1400), 1, aux_sym_string_literal_token1, - ACTIONS(1399), 1, + ACTIONS(1403), 1, sym_shortstring_literal, - ACTIONS(1405), 1, + ACTIONS(1409), 1, sym_identifier, - ACTIONS(1408), 1, + ACTIONS(1412), 1, sym_mutable_specifier, - ACTIONS(1411), 1, + ACTIONS(1415), 1, sym_super, - STATE(988), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(1157), 1, + STATE(1160), 1, + sym__pattern, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1332), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1513), 1, - sym_match_pattern, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(1402), 2, + STATE(1567), 1, + sym_match_pattern, + ACTIONS(1406), 2, anon_sym_true, anon_sym_false, - STATE(349), 2, + STATE(350), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1190), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, STATE(351), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37000,7 +37104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1381), 14, + ACTIONS(1385), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37015,62 +37119,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9446] = 27, + [9514] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1290), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1292), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1294), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1296), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1306), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, - sym_shortstring_literal, ACTIONS(1312), 1, + sym_shortstring_literal, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1318), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1320), 1, sym_super, - STATE(988), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(1157), 1, + STATE(1160), 1, + sym__pattern, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1332), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1534), 1, - sym_match_pattern, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(1310), 2, + STATE(1590), 1, + sym_match_pattern, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(1190), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(516), 3, + STATE(494), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37079,7 +37183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37094,62 +37198,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9552] = 27, + [9620] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1286), 1, + ACTIONS(1290), 1, anon_sym_POUND, - ACTIONS(1288), 1, + ACTIONS(1292), 1, anon_sym_LBRACK, - ACTIONS(1290), 1, + ACTIONS(1294), 1, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + ACTIONS(1296), 1, anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1302), 1, + ACTIONS(1306), 1, anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, - sym_shortstring_literal, ACTIONS(1312), 1, + sym_shortstring_literal, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1318), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1320), 1, sym_super, - STATE(988), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(1157), 1, + STATE(1160), 1, + sym__pattern, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1184), 1, + STATE(1332), 1, sym_negative_literal, - STATE(1221), 1, - sym__pattern, - STATE(1408), 1, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, - sym_generic_type, - STATE(1571), 1, + STATE(1530), 1, sym_match_pattern, - ACTIONS(1310), 2, + STATE(1559), 1, + sym_generic_type, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(1190), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(516), 3, + STATE(494), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1224), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37158,7 +37262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37173,58 +37277,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9658] = 26, + [9726] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1348), 1, - anon_sym_RBRACK, - ACTIONS(1350), 1, - anon_sym_COMMA, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1426), 1, + anon_sym_RPAREN, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1043), 1, + STATE(1132), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37233,7 +37337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37248,58 +37352,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9759] = 26, + [9827] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1428), 1, + ACTIONS(1436), 1, anon_sym_COMMA, - ACTIONS(1430), 1, + ACTIONS(1438), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1132), 1, + STATE(1130), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37308,7 +37412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37323,58 +37427,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9860] = 26, + [9928] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1432), 1, + ACTIONS(1440), 1, + anon_sym_RBRACK, + ACTIONS(1442), 1, anon_sym_COMMA, - ACTIONS(1434), 1, - anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1126), 1, + STATE(1075), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37383,7 +37487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37398,58 +37502,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9961] = 26, + [10029] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1436), 1, - anon_sym_RBRACK, - ACTIONS(1438), 1, + ACTIONS(1444), 1, anon_sym_COMMA, - STATE(866), 1, + ACTIONS(1446), 1, + anon_sym_RPAREN, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1075), 1, + STATE(1050), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37458,7 +37562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37473,58 +37577,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10062] = 26, + [10130] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1440), 1, + ACTIONS(1448), 1, anon_sym_COMMA, - ACTIONS(1442), 1, + ACTIONS(1450), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1071), 1, + STATE(1052), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37533,7 +37637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37548,58 +37652,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10163] = 26, + [10231] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1444), 1, + ACTIONS(1452), 1, anon_sym_COMMA, - ACTIONS(1446), 1, + ACTIONS(1454), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1048), 1, + STATE(1053), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37608,7 +37712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37623,58 +37727,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10264] = 26, + [10332] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1330), 1, + anon_sym_COMMA, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1448), 1, - anon_sym_COMMA, - ACTIONS(1450), 1, + ACTIONS(1456), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1052), 1, + STATE(1128), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37683,7 +37787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37698,58 +37802,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10365] = 26, + [10433] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1326), 1, - anon_sym_COMMA, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1354), 1, + anon_sym_RBRACK, + ACTIONS(1356), 1, + anon_sym_COMMA, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1452), 1, - anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1091), 1, + STATE(1129), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37758,7 +37862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37773,56 +37877,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10466] = 25, + [10534] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1454), 1, + ACTIONS(1458), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37831,7 +37935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37846,56 +37950,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10564] = 25, + [10632] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1456), 1, - anon_sym_RBRACK, - STATE(866), 1, + ACTIONS(1460), 1, + anon_sym_RPAREN, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37904,7 +38008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37919,56 +38023,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10662] = 25, + [10730] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1458), 1, + ACTIONS(1462), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37977,7 +38081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37992,56 +38096,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10760] = 25, + [10828] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1460), 1, - anon_sym_RPAREN, - STATE(866), 1, + ACTIONS(1464), 1, + anon_sym_RBRACK, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38050,7 +38154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38065,56 +38169,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10858] = 25, + [10926] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1462), 1, + ACTIONS(1466), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38123,7 +38227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38138,56 +38242,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10956] = 25, + [11024] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1464), 1, - anon_sym_RPAREN, - STATE(866), 1, + ACTIONS(1468), 1, + anon_sym_RBRACK, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38196,7 +38300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38211,56 +38315,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11054] = 25, + [11122] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1466), 1, + ACTIONS(1470), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38269,7 +38373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38284,56 +38388,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11152] = 25, + [11220] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1468), 1, + ACTIONS(1472), 1, anon_sym_RBRACK, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38342,7 +38446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38357,56 +38461,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11250] = 25, + [11318] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1470), 1, - anon_sym_RPAREN, - STATE(866), 1, + ACTIONS(1474), 1, + anon_sym_RBRACK, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38415,7 +38519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38430,56 +38534,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11348] = 25, + [11416] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1472), 1, + ACTIONS(1476), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38488,7 +38592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38503,56 +38607,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11446] = 25, + [11514] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1474), 1, + ACTIONS(1478), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38561,7 +38665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38576,56 +38680,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11544] = 25, + [11612] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1476), 1, - anon_sym_RBRACK, - STATE(866), 1, + ACTIONS(1480), 1, + anon_sym_RPAREN, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38634,7 +38738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38649,56 +38753,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11642] = 25, + [11710] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1478), 1, + ACTIONS(1482), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38707,7 +38811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38722,56 +38826,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11740] = 25, + [11808] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1480), 1, + ACTIONS(1484), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38780,7 +38884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38795,56 +38899,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11838] = 25, + [11906] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1482), 1, + ACTIONS(1486), 1, anon_sym_RPAREN, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38853,7 +38957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38868,56 +38972,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11936] = 25, + [12004] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1484), 1, - anon_sym_RBRACK, - STATE(866), 1, + ACTIONS(1488), 1, + anon_sym_RPAREN, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38926,7 +39030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38941,54 +39045,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12034] = 24, + [12102] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(1292), 1, + anon_sym_LBRACK, + ACTIONS(1294), 1, + anon_sym_COLON_COLON, + ACTIONS(1296), 1, + anon_sym_LPAREN, + ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(1306), 1, + anon_sym_default, + ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(1312), 1, sym_shortstring_literal, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - ACTIONS(1418), 1, - anon_sym_LPAREN, - ACTIONS(1422), 1, - anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1426), 1, - sym_super, - ACTIONS(1486), 1, + ACTIONS(1318), 1, sym_mutable_specifier, - STATE(866), 1, + ACTIONS(1320), 1, + sym_super, + STATE(981), 1, sym_scoped_identifier, - STATE(945), 1, - sym_negative_literal, - STATE(1101), 1, - sym__pattern, - STATE(1145), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1300), 1, + sym__pattern, + STATE(1332), 1, + sym_negative_literal, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38997,7 +39101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39012,54 +39116,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12129] = 24, + [12197] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1288), 1, - anon_sym_LBRACK, - ACTIONS(1290), 1, - anon_sym_COLON_COLON, - ACTIONS(1292), 1, - anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, - ACTIONS(1298), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(1302), 1, - anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1312), 1, - sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1336), 1, + anon_sym__, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1418), 1, + anon_sym_LBRACK, + ACTIONS(1422), 1, + anon_sym_COLON_COLON, + ACTIONS(1424), 1, + anon_sym_LPAREN, + ACTIONS(1430), 1, + anon_sym_default, + ACTIONS(1432), 1, + sym_identifier, + ACTIONS(1434), 1, sym_super, - STATE(988), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(935), 1, sym_negative_literal, - STATE(1245), 1, + STATE(945), 1, sym__pattern, - STATE(1408), 1, + STATE(1183), 1, + sym_scoped_type_identifier, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(1310), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1190), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(1224), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39068,7 +39172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39083,54 +39187,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12224] = 24, + [12292] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(952), 1, + STATE(1095), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39139,7 +39243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39154,54 +39258,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12319] = 24, + [12387] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1288), 1, + ACTIONS(611), 1, + anon_sym_POUND, + STATE(380), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(617), 13, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LBRACK, - ACTIONS(1290), 1, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(1292), 1, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, - ACTIONS(1298), 1, anon_sym_DASH, - ACTIONS(1300), 1, - anon_sym_PIPE, - ACTIONS(1302), 1, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1490), 29, + anon_sym_COLON, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, anon_sym_default, - ACTIONS(1304), 1, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_while, sym_numeric_literal, - ACTIONS(1306), 1, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [12444] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(924), 1, + anon_sym_DASH, + ACTIONS(926), 1, + anon_sym_PIPE, + ACTIONS(932), 1, + sym_numeric_literal, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1312), 1, - sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1336), 1, + anon_sym__, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1418), 1, + anon_sym_LBRACK, + ACTIONS(1422), 1, + anon_sym_COLON_COLON, + ACTIONS(1424), 1, + anon_sym_LPAREN, + ACTIONS(1430), 1, + anon_sym_default, + ACTIONS(1432), 1, + sym_identifier, + ACTIONS(1434), 1, sym_super, - STATE(988), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1173), 1, - sym__pattern, - STATE(1184), 1, + STATE(935), 1, sym_negative_literal, - STATE(1408), 1, + STATE(941), 1, + sym__pattern, + STATE(1183), 1, + sym_scoped_type_identifier, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(1310), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1190), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(1224), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39210,7 +39366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39225,54 +39381,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12414] = 24, + [12539] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1047), 1, + STATE(1070), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39281,7 +39437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39296,54 +39452,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12509] = 24, + [12634] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(928), 1, + sym__pattern, + STATE(935), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1259), 1, - sym__pattern, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39352,7 +39508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39367,54 +39523,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12604] = 24, + [12729] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1145), 1, - sym_scoped_type_identifier, - STATE(1227), 1, + STATE(1108), 1, sym__pattern, - STATE(1395), 1, + STATE(1183), 1, + sym_scoped_type_identifier, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39423,7 +39579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39438,54 +39594,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12699] = 24, + [12824] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, STATE(935), 1, - sym__pattern, - STATE(945), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1263), 1, + sym__pattern, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39494,7 +39650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39509,54 +39665,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12794] = 24, + [12919] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1145), 1, - sym_scoped_type_identifier, - STATE(1341), 1, + STATE(1161), 1, sym__pattern, - STATE(1395), 1, + STATE(1183), 1, + sym_scoped_type_identifier, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39565,7 +39721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39580,106 +39736,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12889] = 5, + [13014] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(611), 1, - anon_sym_POUND, - STATE(385), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(617), 13, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(1292), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(1294), 1, anon_sym_COLON_COLON, - anon_sym_STAR, + ACTIONS(1296), 1, anon_sym_LPAREN, + ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1488), 29, - anon_sym_COLON, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + ACTIONS(1304), 1, + anon_sym_PIPE, + ACTIONS(1306), 1, anon_sym_default, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_while, + ACTIONS(1308), 1, sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [12946] = 24, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(832), 1, - anon_sym_DASH, - ACTIONS(834), 1, - anon_sym_PIPE, - ACTIONS(840), 1, - sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(1312), 1, sym_shortstring_literal, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - ACTIONS(1418), 1, - anon_sym_LPAREN, - ACTIONS(1422), 1, - anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1318), 1, + sym_mutable_specifier, + ACTIONS(1320), 1, sym_super, - STATE(866), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(929), 1, + STATE(1179), 1, sym__pattern, - STATE(945), 1, - sym_negative_literal, - STATE(1145), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1332), 1, + sym_negative_literal, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39688,7 +39792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39703,54 +39807,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13041] = 24, + [13109] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(1292), 1, + anon_sym_LBRACK, + ACTIONS(1294), 1, + anon_sym_COLON_COLON, + ACTIONS(1296), 1, + anon_sym_LPAREN, + ACTIONS(1298), 1, + anon_sym__, + ACTIONS(1302), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(1306), 1, + anon_sym_default, + ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(1310), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(1312), 1, sym_shortstring_literal, - ACTIONS(1332), 1, - anon_sym__, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - ACTIONS(1418), 1, - anon_sym_LPAREN, - ACTIONS(1422), 1, - anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1316), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1318), 1, + sym_mutable_specifier, + ACTIONS(1320), 1, sym_super, - STATE(866), 1, + STATE(981), 1, sym_scoped_identifier, - STATE(945), 1, - sym_negative_literal, - STATE(1145), 1, - sym_scoped_type_identifier, - STATE(1349), 1, + STATE(1193), 1, sym__pattern, - STATE(1395), 1, + STATE(1259), 1, + sym_scoped_type_identifier, + STATE(1332), 1, + sym_negative_literal, + STATE(1412), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(1314), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(1288), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(1294), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39759,7 +39863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1300), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39774,54 +39878,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13136] = 24, + [13204] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - ACTIONS(1490), 1, + ACTIONS(1492), 1, sym_mutable_specifier, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1133), 1, + STATE(1146), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39830,7 +39934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39845,54 +39949,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13231] = 24, + [13299] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, - sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + ACTIONS(1494), 1, + sym_mutable_specifier, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1065), 1, + STATE(1103), 1, sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39901,7 +40005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39916,54 +40020,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13326] = 24, + [13394] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1288), 1, - anon_sym_LBRACK, - ACTIONS(1290), 1, - anon_sym_COLON_COLON, - ACTIONS(1292), 1, - anon_sym_LPAREN, - ACTIONS(1294), 1, - anon_sym__, - ACTIONS(1298), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(1300), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(1302), 1, - anon_sym_default, - ACTIONS(1304), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(1306), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(1308), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1312), 1, - sym_identifier, - ACTIONS(1314), 1, + ACTIONS(1336), 1, + anon_sym__, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1316), 1, + ACTIONS(1418), 1, + anon_sym_LBRACK, + ACTIONS(1422), 1, + anon_sym_COLON_COLON, + ACTIONS(1424), 1, + anon_sym_LPAREN, + ACTIONS(1430), 1, + anon_sym_default, + ACTIONS(1432), 1, + sym_identifier, + ACTIONS(1434), 1, sym_super, - STATE(988), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(1157), 1, - sym_scoped_type_identifier, - STATE(1184), 1, + STATE(935), 1, sym_negative_literal, - STATE(1223), 1, - sym__pattern, - STATE(1408), 1, + STATE(1183), 1, + sym_scoped_type_identifier, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1440), 1, + sym__pattern, + STATE(1559), 1, sym_generic_type, - ACTIONS(1310), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1190), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(1224), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39972,7 +40076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1296), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39987,54 +40091,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13421] = 24, + [13489] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1381), 1, - sym__pattern, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1400), 1, + sym__pattern, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40043,7 +40147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40058,54 +40162,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13516] = 24, + [13584] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1076), 1, - sym__pattern, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1437), 1, + sym__pattern, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40114,7 +40218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40129,54 +40233,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13611] = 24, + [13679] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(834), 1, + ACTIONS(926), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(844), 1, + ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1332), 1, + ACTIONS(1336), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1346), 1, sym_mutable_specifier, - ACTIONS(1414), 1, + ACTIONS(1418), 1, anon_sym_LBRACK, - ACTIONS(1416), 1, + ACTIONS(1422), 1, anon_sym_COLON_COLON, - ACTIONS(1418), 1, + ACTIONS(1424), 1, anon_sym_LPAREN, - ACTIONS(1422), 1, + ACTIONS(1430), 1, anon_sym_default, - ACTIONS(1424), 1, + ACTIONS(1432), 1, sym_identifier, - ACTIONS(1426), 1, + ACTIONS(1434), 1, sym_super, - STATE(866), 1, + STATE(864), 1, sym_scoped_identifier, - STATE(945), 1, + STATE(935), 1, sym_negative_literal, - STATE(1145), 1, + STATE(1183), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(1390), 1, sym__pattern, - STATE(1395), 1, + STATE(1393), 1, sym_generic_type_with_turbofish, - STATE(1548), 1, + STATE(1559), 1, sym_generic_type, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(946), 2, + STATE(951), 2, sym_string_literal, sym_boolean_literal, - STATE(953), 8, + STATE(956), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40185,7 +40289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1420), 14, + ACTIONS(1428), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40200,61 +40304,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13706] = 23, + [13774] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1496), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1504), 1, anon_sym_GT, - ACTIONS(1502), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1510), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1512), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1387), 3, + STATE(1396), 3, sym__type, sym__literal, sym_block, - STATE(881), 5, + STATE(1411), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40269,61 +40373,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13798] = 23, + [13866] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1496), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1510), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1512), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1512), 1, + ACTIONS(1516), 1, anon_sym_GT, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1387), 3, + STATE(1396), 3, sym__type, sym__literal, sym_block, - STATE(881), 5, + STATE(1411), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40338,61 +40442,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13890] = 23, + [13958] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1496), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1510), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1512), 1, sym_shortstring_literal, - ACTIONS(1510), 1, - sym_identifier, ACTIONS(1514), 1, + sym_identifier, + ACTIONS(1518), 1, anon_sym_GT, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1387), 3, + STATE(1396), 3, sym__type, sym__literal, sym_block, - STATE(881), 5, + STATE(1411), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40407,61 +40511,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13982] = 23, + [14050] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1496), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1510), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1512), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1516), 1, + ACTIONS(1520), 1, anon_sym_GT, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1387), 3, + STATE(1396), 3, sym__type, sym__literal, sym_block, - STATE(881), 5, + STATE(1411), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40476,61 +40580,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14074] = 23, + [14142] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1496), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1510), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1512), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1518), 1, + ACTIONS(1522), 1, anon_sym_GT, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1387), 3, + STATE(1396), 3, sym__type, sym__literal, sym_block, - STATE(881), 5, + STATE(1411), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40545,61 +40649,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14166] = 23, + [14234] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1496), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1510), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1512), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1514), 1, sym_identifier, - ACTIONS(1520), 1, + ACTIONS(1524), 1, anon_sym_GT, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1387), 3, + STATE(1396), 3, sym__type, sym__literal, sym_block, - STATE(881), 5, + STATE(1411), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40614,107 +40718,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14258] = 3, + [14326] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 14, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(924), 1, + anon_sym_DASH, + ACTIONS(934), 1, + aux_sym_string_literal_token1, + ACTIONS(946), 1, + sym_super, + ACTIONS(1496), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_POUND, + ACTIONS(1498), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_STAR, + ACTIONS(1500), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(1506), 1, anon_sym_AT, - aux_sym_string_literal_token1, + ACTIONS(1508), 1, + anon_sym_default, + ACTIONS(1510), 1, + sym_numeric_literal, + ACTIONS(1512), 1, sym_shortstring_literal, - ACTIONS(1218), 29, - anon_sym_COLON, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [14309] = 22, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(832), 1, - anon_sym_DASH, - ACTIONS(842), 1, - aux_sym_string_literal_token1, - ACTIONS(854), 1, - sym_super, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, - anon_sym_default, - ACTIONS(1506), 1, - sym_numeric_literal, - ACTIONS(1508), 1, - sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1214), 3, + STATE(1198), 3, sym__type, sym__literal, sym_block, - STATE(1372), 3, + STATE(1411), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40729,59 +40785,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14398] = 22, + [14415] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1496), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1510), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1512), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1372), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(1387), 3, + STATE(1396), 3, sym__type, sym__literal, sym_block, - STATE(881), 5, + STATE(1411), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40796,59 +40852,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14487] = 22, + [14504] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(832), 1, + ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(842), 1, + ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1492), 1, + ACTIONS(1496), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1510), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1512), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1153), 3, + STATE(1213), 3, sym__type, sym__literal, sym_block, - STATE(1372), 3, + STATE(1411), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40863,59 +40919,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14576] = 22, + [14593] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1252), 14, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(832), 1, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_DASH, - ACTIONS(842), 1, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, - ACTIONS(854), 1, + sym_shortstring_literal, + ACTIONS(1254), 29, + anon_sym_COLON, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_while, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, sym_super, - ACTIONS(1492), 1, + [14644] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(924), 1, + anon_sym_DASH, + ACTIONS(934), 1, + aux_sym_string_literal_token1, + ACTIONS(946), 1, + sym_super, + ACTIONS(1496), 1, anon_sym_LBRACE, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1506), 1, + ACTIONS(1510), 1, sym_numeric_literal, - ACTIONS(1508), 1, + ACTIONS(1512), 1, sym_shortstring_literal, - ACTIONS(1510), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(846), 2, + ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(1313), 3, + STATE(1321), 3, sym__type, sym__literal, sym_block, - STATE(1372), 3, + STATE(1411), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40930,10 +41034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14665] = 3, + [14733] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(743), 12, + ACTIONS(739), 12, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, @@ -40946,7 +41050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1522), 28, + ACTIONS(1526), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40975,10 +41079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ref, sym_identifier, sym_super, - [14713] = 3, + [14781] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 11, + ACTIONS(1530), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -40990,7 +41094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1524), 26, + ACTIONS(1528), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41017,10 +41121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14758] = 3, + [14826] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 11, + ACTIONS(1534), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41032,7 +41136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1528), 26, + ACTIONS(1532), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41059,56 +41163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14803] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1532), 1, - anon_sym_LBRACE, - ACTIONS(1534), 1, - anon_sym_BANG, - ACTIONS(1536), 1, - anon_sym_COLON_COLON, - STATE(442), 1, - sym_field_initializer_list, - ACTIONS(579), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(575), 23, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [14856] = 3, + [14871] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1540), 10, + ACTIONS(1538), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41119,7 +41177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1538), 27, + ACTIONS(1536), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41147,12 +41205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_nopanic, - [14901] = 3, + [14916] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 11, + ACTIONS(1542), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41162,15 +41219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1542), 26, + ACTIONS(1540), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_implicits, anon_sym_COLON_COLON, - anon_sym_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41189,10 +41246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14946] = 3, + anon_sym_nopanic, + [14961] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1548), 10, + ACTIONS(1544), 1, + anon_sym_LBRACE, + ACTIONS(1546), 1, + anon_sym_BANG, + ACTIONS(1548), 1, + anon_sym_COLON_COLON, + STATE(445), 1, + sym_field_initializer_list, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41203,15 +41269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1546), 27, - anon_sym_LBRACE, + ACTIONS(579), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41230,8 +41293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_nopanic, - [14991] = 3, + [15014] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1552), 10, @@ -41273,7 +41335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_nopanic, - [15036] = 3, + [15059] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1556), 11, @@ -41315,12 +41377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15081] = 4, + [15104] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1558), 1, - anon_sym_LBRACE, - ACTIONS(1530), 11, + ACTIONS(1560), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41332,13 +41392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1528), 24, + ACTIONS(1558), 26, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41357,15 +41419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15127] = 5, + [15149] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1560), 1, - anon_sym_else, - STATE(69), 1, - sym_else_clause, - ACTIONS(559), 10, + ACTIONS(1562), 1, + anon_sym_LBRACE, + ACTIONS(1556), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41375,13 +41436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(557), 24, - anon_sym_LBRACE, + ACTIONS(1554), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41400,12 +41461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15175] = 4, + [15195] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1562), 1, + ACTIONS(1564), 1, anon_sym_LBRACE, - ACTIONS(1556), 11, + ACTIONS(1560), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41417,7 +41478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1554), 24, + ACTIONS(1558), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41442,14 +41503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15221] = 4, + [15241] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1564), 1, - anon_sym_LBRACE, - ACTIONS(1526), 11, + ACTIONS(1566), 1, + anon_sym_else, + STATE(75), 1, + sym_else_clause, + ACTIONS(559), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41459,13 +41521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1524), 24, + ACTIONS(557), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41484,12 +41546,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15267] = 4, + [15289] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1566), 1, + ACTIONS(1568), 1, anon_sym_LBRACE, - ACTIONS(1544), 11, + ACTIONS(1534), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41501,7 +41563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1542), 24, + ACTIONS(1532), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41526,14 +41588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15313] = 4, + [15335] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1568), 2, + ACTIONS(1570), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(1530), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41543,12 +41605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 23, + ACTIONS(1528), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41567,65 +41630,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15358] = 18, + [15381] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, - anon_sym_default, - ACTIONS(1580), 1, - anon_sym_nopanic, - ACTIONS(1582), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(975), 1, - sym__type, - STATE(1342), 1, - sym_nopanic, - STATE(1364), 1, - sym_scoped_identifier, - ACTIONS(1574), 2, + ACTIONS(1572), 2, anon_sym_LBRACE, - anon_sym_SEMI, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [15431] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(543), 10, + anon_sym_COLON_COLON, + ACTIONS(1576), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41636,8 +41647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(541), 25, - anon_sym_LBRACE, + ACTIONS(1574), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41661,15 +41671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_else, - [15474] = 5, + [15426] = 8, ACTIONS(3), 1, sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, ACTIONS(1588), 1, - anon_sym_BANG, - ACTIONS(1590), 1, - anon_sym_COLON_COLON, - ACTIONS(1586), 10, + anon_sym_QMARK, + STATE(467), 1, + sym_arguments, + ACTIONS(1580), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41680,13 +41695,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1584), 23, + ACTIONS(1578), 20, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -41702,22 +41716,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [15521] = 8, + [15479] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1592), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_default, + ACTIONS(1596), 1, + anon_sym_nopanic, ACTIONS(1598), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(982), 1, + sym__type, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1433), 1, + sym_nopanic, + ACTIONS(1590), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [15552] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, + anon_sym_LBRACK, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1594), 10, + ACTIONS(1592), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_default, + ACTIONS(1596), 1, + anon_sym_nopanic, + ACTIONS(1598), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(993), 1, + sym__type, + STATE(1364), 1, + sym_nopanic, + STATE(1366), 1, + sym_scoped_identifier, + ACTIONS(1600), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [15625] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1602), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1576), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41728,12 +41843,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1592), 20, - anon_sym_LBRACE, + ACTIONS(1574), 23, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -41749,10 +41865,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [15574] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [15670] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, + anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1592), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_default, + ACTIONS(1596), 1, + anon_sym_nopanic, + ACTIONS(1598), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(991), 1, + sym__type, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1372), 1, + sym_nopanic, + ACTIONS(1604), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [15743] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(551), 10, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + STATE(467), 1, + sym_arguments, + ACTIONS(1608), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41763,14 +41946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(549), 25, + ACTIONS(1606), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -41786,23 +41967,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_else, - [15617] = 8, + [15796] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1606), 10, + ACTIONS(1612), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41813,7 +41991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1604), 20, + ACTIONS(1610), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41834,20 +42012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [15670] = 8, + [15849] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1532), 1, + ACTIONS(1544), 1, anon_sym_LBRACE, - ACTIONS(1534), 1, + ACTIONS(1546), 1, anon_sym_BANG, - ACTIONS(1536), 1, + ACTIONS(1548), 1, anon_sym_COLON_COLON, - ACTIONS(1608), 1, + ACTIONS(1614), 1, anon_sym_COLON, - STATE(442), 1, + STATE(445), 1, sym_field_initializer_list, - ACTIONS(579), 10, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41858,7 +42036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 20, + ACTIONS(579), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -41879,10 +42057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15723] = 3, + [15902] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1612), 10, + ACTIONS(1620), 1, + anon_sym_BANG, + ACTIONS(1622), 1, + anon_sym_COLON_COLON, + ACTIONS(1618), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41893,14 +42075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 25, - anon_sym_LBRACE, + ACTIONS(1616), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41919,20 +42099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15766] = 8, + [15949] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1616), 10, + ACTIONS(1546), 1, + anon_sym_BANG, + ACTIONS(1624), 1, + anon_sym_COLON_COLON, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41943,12 +42117,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 20, - anon_sym_LBRACE, + ACTIONS(579), 23, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -41964,12 +42139,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [15819] = 4, + anon_sym_DOT, + anon_sym_QMARK, + [15996] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1618), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(579), 10, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, + anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1592), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_default, + ACTIONS(1596), 1, + anon_sym_nopanic, + ACTIONS(1598), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(990), 1, + sym__type, + STATE(1366), 1, + sym_scoped_identifier, + STATE(1398), 1, + sym_nopanic, + ACTIONS(1626), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [16069] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1630), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41980,13 +42210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 24, + ACTIONS(1628), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -42005,10 +42236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15864] = 3, + [16112] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(527), 10, + ACTIONS(507), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42019,7 +42250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(525), 25, + ACTIONS(505), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42045,10 +42276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_else, - [15907] = 3, + [16155] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1622), 10, + ACTIONS(1632), 1, + anon_sym_COLON_COLON, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42059,14 +42292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1620), 25, + ACTIONS(579), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -42085,14 +42317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15950] = 5, + [16200] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 1, - anon_sym_BANG, - ACTIONS(1624), 1, - anon_sym_COLON_COLON, - ACTIONS(579), 10, + ACTIONS(535), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42103,7 +42331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 23, + ACTIONS(533), 25, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -42127,75 +42356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15997] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, - anon_sym_default, - ACTIONS(1580), 1, - anon_sym_nopanic, - ACTIONS(1582), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(985), 1, - sym__type, - STATE(1364), 1, - sym_scoped_identifier, - STATE(1386), 1, - sym_nopanic, - ACTIONS(1626), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [16070] = 8, + anon_sym_else, + [16243] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1630), 10, + ACTIONS(527), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42206,12 +42371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1628), 20, + ACTIONS(525), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -42227,68 +42394,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16123] = 18, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_else, + [16286] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, - anon_sym_default, - ACTIONS(1580), 1, - anon_sym_nopanic, - ACTIONS(1582), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(989), 1, - sym__type, - STATE(1364), 1, - sym_scoped_identifier, - STATE(1398), 1, - sym_nopanic, - ACTIONS(1632), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [16196] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1634), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + STATE(467), 1, + sym_arguments, + ACTIONS(1636), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42299,13 +42421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 23, + ACTIONS(1634), 20, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -42321,64 +42442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [16241] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, - anon_sym_default, - ACTIONS(1580), 1, - anon_sym_nopanic, - ACTIONS(1582), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(978), 1, - sym__type, - STATE(1364), 1, - sym_scoped_identifier, - STATE(1433), 1, - sym_nopanic, - ACTIONS(1636), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [16314] = 3, + [16339] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1640), 10, @@ -42392,13 +42456,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1638), 24, + ACTIONS(1638), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -42417,10 +42482,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16356] = 3, + [16382] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1644), 10, + ACTIONS(1642), 1, + anon_sym_COLON_COLON, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42431,8 +42498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1642), 24, - anon_sym_LBRACE, + ACTIONS(579), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -42456,32 +42522,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16398] = 9, + [16426] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - STATE(469), 1, + ACTIONS(1648), 1, + anon_sym_AMP, + STATE(467), 1, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 7, + ACTIONS(1612), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 19, + ACTIONS(1610), 17, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, @@ -42490,8 +42561,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42501,47 +42570,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16452] = 14, + [16486] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1616), 3, + ACTIONS(483), 10, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1614), 16, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(481), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42551,10 +42607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16516] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [16528] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1660), 10, + ACTIONS(495), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42565,7 +42623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1658), 24, + ACTIONS(493), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42590,10 +42648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16558] = 3, + [16570] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1664), 10, + ACTIONS(1654), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42604,7 +42662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1662), 24, + ACTIONS(1652), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42629,10 +42687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16600] = 3, + [16612] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1668), 10, + ACTIONS(1658), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42643,7 +42701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1666), 24, + ACTIONS(1656), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42668,10 +42726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16642] = 3, + [16654] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1572), 10, + ACTIONS(1662), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42682,7 +42740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 24, + ACTIONS(1660), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42707,50 +42765,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16684] = 18, + [16696] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1672), 1, + ACTIONS(1666), 1, anon_sym_EQ, - ACTIONS(1676), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1670), 10, + ACTIONS(1664), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, @@ -42761,95 +42819,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [16756] = 10, + [16768] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1616), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1648), 1, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1614), 19, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1670), 1, anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, + ACTIONS(1682), 1, + anon_sym_EQ, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [16812] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1684), 10, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1644), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1682), 24, - anon_sym_LBRACE, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1680), 10, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [16854] = 3, + [16840] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1688), 10, + ACTIONS(1686), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42860,7 +42887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1686), 24, + ACTIONS(1684), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42885,10 +42912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16896] = 3, + [16882] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1692), 10, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42899,7 +42926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 24, + ACTIONS(579), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42924,64 +42951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16938] = 18, + [16924] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1696), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1694), 10, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [17010] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1700), 10, + ACTIONS(1691), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42992,7 +42965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1698), 24, + ACTIONS(1688), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43017,10 +42990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17052] = 3, + [16966] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1704), 10, + ACTIONS(1696), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43031,7 +43004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1702), 24, + ACTIONS(1694), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43056,63 +43029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17094] = 17, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1616), 1, - anon_sym_EQ, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1614), 11, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [17164] = 3, + [17008] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1708), 10, + ACTIONS(1700), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43123,7 +43043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1706), 24, + ACTIONS(1698), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43148,10 +43068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17206] = 3, + [17050] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1712), 10, + ACTIONS(1704), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43162,7 +43082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1710), 24, + ACTIONS(1702), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43187,10 +43107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17248] = 3, + [17092] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1716), 10, + ACTIONS(1708), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43201,7 +43121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1714), 24, + ACTIONS(1706), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43226,10 +43146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17290] = 3, + [17134] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1720), 10, + ACTIONS(1712), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43240,7 +43160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1718), 24, + ACTIONS(1710), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43265,10 +43185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17332] = 3, + [17176] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(496), 10, + ACTIONS(1716), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43279,7 +43199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(494), 24, + ACTIONS(1714), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43304,10 +43224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17374] = 3, + [17218] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1724), 10, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43318,7 +43238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1722), 24, + ACTIONS(579), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43343,64 +43263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17416] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1728), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1726), 10, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [17488] = 3, + [17260] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1732), 10, + ACTIONS(1720), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43411,7 +43277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1730), 24, + ACTIONS(1718), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43436,10 +43302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17530] = 3, + [17302] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1736), 10, + ACTIONS(1724), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43450,7 +43316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1734), 24, + ACTIONS(1722), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43475,62 +43341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17572] = 16, + [17344] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1616), 1, - anon_sym_EQ, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1614), 12, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [17640] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(579), 10, + ACTIONS(1728), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43541,7 +43355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 24, + ACTIONS(1726), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43566,46 +43380,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17682] = 13, + [17386] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1732), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1646), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 16, + ACTIONS(1730), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43615,10 +43417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17744] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [17428] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(579), 10, + ACTIONS(1736), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43629,7 +43433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 24, + ACTIONS(1734), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43654,7 +43458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17786] = 3, + [17470] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1740), 10, @@ -43693,10 +43497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17828] = 3, + [17512] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1744), 10, + ACTIONS(491), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43707,7 +43511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1742), 24, + ACTIONS(489), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43732,10 +43536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17870] = 3, + [17554] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1748), 10, + ACTIONS(1744), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43746,7 +43550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 24, + ACTIONS(1742), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43771,10 +43575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17912] = 3, + [17596] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1753), 10, + ACTIONS(1748), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43785,7 +43589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1750), 24, + ACTIONS(1746), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43810,10 +43614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17954] = 3, + [17638] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1758), 10, + ACTIONS(1752), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43824,7 +43628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1756), 24, + ACTIONS(1750), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43849,10 +43653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17996] = 3, + [17680] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(472), 10, + ACTIONS(1756), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43863,7 +43667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(470), 24, + ACTIONS(1754), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43888,49 +43692,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18038] = 3, + [17722] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1762), 10, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1760), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1760), 24, - anon_sym_LBRACE, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1758), 10, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [18080] = 3, + [17794] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1766), 10, + ACTIONS(1764), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43941,7 +43760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1764), 24, + ACTIONS(1762), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43966,12 +43785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18122] = 4, + [17836] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1768), 1, - anon_sym_COLON_COLON, - ACTIONS(579), 10, + ACTIONS(1768), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43982,7 +43799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 23, + ACTIONS(1766), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -44006,64 +43824,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18166] = 18, + [17878] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1612), 1, + anon_sym_EQ, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1772), 1, - anon_sym_EQ, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1770), 10, + ACTIONS(1610), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [18238] = 3, + [17948] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(484), 10, + ACTIONS(1772), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44074,7 +43891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(482), 24, + ACTIONS(1770), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44099,28 +43916,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18280] = 3, + [17990] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1776), 10, - anon_sym_EQ, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + STATE(467), 1, + sym_arguments, + ACTIONS(1644), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1612), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1774), 24, - anon_sym_LBRACE, + ACTIONS(1610), 19, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -44136,12 +43961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [18322] = 3, + [18044] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1780), 10, + ACTIONS(1776), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44152,7 +43975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1778), 24, + ACTIONS(1774), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44177,34 +44000,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18364] = 3, + [18086] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1784), 10, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1612), 1, anon_sym_EQ, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1610), 12, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [18154] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1612), 4, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1610), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18216] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1644), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1612), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1782), 24, - anon_sym_LBRACE, + ACTIONS(1610), 17, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44214,12 +44148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [18406] = 3, + [18274] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1788), 10, + ACTIONS(1576), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44230,7 +44162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1786), 24, + ACTIONS(1574), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44255,44 +44187,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18448] = 11, + [18316] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1780), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1778), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1600), 1, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(1602), 1, anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, + [18358] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1784), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1646), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1782), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [18400] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1788), 10, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 17, + ACTIONS(1786), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44302,7 +44302,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18506] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [18442] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1792), 10, @@ -44341,10 +44343,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18548] = 3, + [18484] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1796), 10, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1796), 1, + anon_sym_EQ, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1794), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [18556] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1800), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44355,7 +44411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1794), 24, + ACTIONS(1798), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44380,37 +44436,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18590] = 12, + [18598] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - STATE(469), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1646), 3, + ACTIONS(1612), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1610), 16, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18662] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 4, + ACTIONS(1612), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 17, + ACTIONS(1610), 19, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, @@ -44419,6 +44521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44428,15 +44532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18650] = 3, + [18718] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1192), 4, + ACTIONS(1264), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1194), 29, + ACTIONS(1266), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44466,15 +44570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18691] = 3, + [18759] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(992), 4, + ACTIONS(1088), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(994), 29, + ACTIONS(1090), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44504,15 +44608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18732] = 3, + [18800] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1152), 4, + ACTIONS(1256), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1154), 29, + ACTIONS(1258), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44542,15 +44646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18773] = 3, + [18841] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1016), 4, + ACTIONS(1276), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1018), 29, + ACTIONS(1278), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44580,15 +44684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18814] = 3, + [18882] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1140), 4, + ACTIONS(1272), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1142), 29, + ACTIONS(1274), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44618,114 +44722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18855] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1798), 1, - anon_sym_LBRACE, - ACTIONS(1800), 1, - anon_sym_BANG, - ACTIONS(1802), 1, - anon_sym_COLON_COLON, - STATE(785), 1, - sym_field_initializer_list, - ACTIONS(579), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(575), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [18904] = 22, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(694), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1804), 1, - anon_sym_SEMI, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1808), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - STATE(1304), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [18983] = 3, + [18923] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 4, + ACTIONS(1284), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1218), 29, + ACTIONS(1286), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44755,25 +44760,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19024] = 3, + [18964] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(988), 4, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1802), 1, anon_sym_POUND, + STATE(494), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + ACTIONS(1805), 7, + anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(990), 29, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1807), 22, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -44789,19 +44794,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, anon_sym_default, - anon_sym_extern, - anon_sym_pub, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, sym_identifier, + sym_mutable_specifier, sym_super, - [19065] = 3, + [19009] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1024), 4, + ACTIONS(1240), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1026), 29, + ACTIONS(1242), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44831,15 +44838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19106] = 3, + [19050] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1160), 4, + ACTIONS(1232), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1162), 29, + ACTIONS(1234), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44869,15 +44876,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19147] = 3, + [19091] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1272), 4, + ACTIONS(1080), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1274), 29, + ACTIONS(1082), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44907,15 +44914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19188] = 3, + [19132] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1148), 4, + ACTIONS(1052), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1150), 29, + ACTIONS(1054), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44945,15 +44952,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19229] = 3, + [19173] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1068), 4, + ACTIONS(676), 1, + anon_sym_RBRACK, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1809), 1, + anon_sym_SEMI, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1813), 1, + anon_sym_COMMA, + STATE(467), 1, + sym_arguments, + STATE(1153), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [19252] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1172), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1070), 29, + ACTIONS(1174), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44983,15 +45047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19270] = 3, + [19293] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 4, + ACTIONS(1048), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1258), 29, + ACTIONS(1050), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45021,15 +45085,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19311] = 3, + [19334] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1184), 4, + ACTIONS(688), 1, + anon_sym_RBRACK, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1817), 1, + anon_sym_SEMI, + ACTIONS(1819), 1, + anon_sym_COMMA, + STATE(467), 1, + sym_arguments, + STATE(1310), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [19413] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1004), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1186), 29, + ACTIONS(1006), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45059,15 +45180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19352] = 3, + [19454] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 4, + ACTIONS(1156), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1198), 29, + ACTIONS(1158), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45097,15 +45218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19393] = 3, + [19495] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1040), 4, + ACTIONS(1032), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1042), 29, + ACTIONS(1034), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45135,15 +45256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19434] = 3, + [19536] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1132), 4, + ACTIONS(1260), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1134), 29, + ACTIONS(1262), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45173,15 +45294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19475] = 3, + [19577] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1116), 4, + ACTIONS(1224), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1118), 29, + ACTIONS(1226), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45211,15 +45332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19516] = 3, + [19618] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1180), 4, + ACTIONS(1216), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1182), 29, + ACTIONS(1218), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45249,15 +45370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19557] = 3, + [19659] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1076), 4, + ACTIONS(1208), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1078), 29, + ACTIONS(1210), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45287,7 +45408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19598] = 3, + [19700] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1164), 4, @@ -45325,15 +45446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19639] = 3, + [19741] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1072), 4, + ACTIONS(1128), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1074), 29, + ACTIONS(1130), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45363,15 +45484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19680] = 3, + [19782] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1236), 4, + ACTIONS(1144), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1238), 29, + ACTIONS(1146), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45401,15 +45522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19721] = 3, + [19823] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1048), 4, + ACTIONS(1132), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1050), 29, + ACTIONS(1134), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45439,15 +45560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19762] = 3, + [19864] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 4, + ACTIONS(1124), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1254), 29, + ACTIONS(1126), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45477,15 +45598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19803] = 3, + [19905] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(980), 4, + ACTIONS(1028), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(982), 29, + ACTIONS(1030), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45515,15 +45636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19844] = 3, + [19946] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1188), 4, + ACTIONS(1152), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1190), 29, + ACTIONS(1154), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45553,25 +45674,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19885] = 5, + [19987] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1812), 1, + ACTIONS(1024), 4, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_POUND, - STATE(516), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - ACTIONS(1815), 7, - anon_sym_LBRACK, anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1817), 22, - anon_sym__, + ACTIONS(1026), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -45587,21 +45708,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, + anon_sym_extern, + anon_sym_pub, sym_identifier, - sym_mutable_specifier, sym_super, - [19930] = 3, + [20028] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1084), 4, + ACTIONS(684), 1, + anon_sym_RBRACK, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1821), 1, + anon_sym_SEMI, + ACTIONS(1823), 1, + anon_sym_COMMA, + STATE(467), 1, + sym_arguments, + STATE(1257), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [20107] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(968), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1086), 29, + ACTIONS(970), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45631,15 +45807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19971] = 3, + [20148] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1060), 4, + ACTIONS(1112), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1062), 29, + ACTIONS(1114), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45669,15 +45845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20012] = 3, + [20189] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1268), 4, + ACTIONS(988), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1270), 29, + ACTIONS(990), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45707,15 +45883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20053] = 3, + [20230] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1248), 4, + ACTIONS(1020), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1250), 29, + ACTIONS(1022), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45745,15 +45921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20094] = 3, + [20271] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1088), 4, + ACTIONS(1068), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1090), 29, + ACTIONS(1070), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45783,15 +45959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20135] = 3, + [20312] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1208), 4, + ACTIONS(1016), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1210), 29, + ACTIONS(1018), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45821,15 +45997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20176] = 3, + [20353] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1200), 4, + ACTIONS(1092), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1202), 29, + ACTIONS(1094), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45859,15 +46035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20217] = 3, + [20394] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1080), 4, + ACTIONS(1148), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1082), 29, + ACTIONS(1150), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45897,15 +46073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20258] = 3, + [20435] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1124), 4, + ACTIONS(1120), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1126), 29, + ACTIONS(1122), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45935,15 +46111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20299] = 3, + [20476] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(972), 4, + ACTIONS(1056), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(974), 29, + ACTIONS(1058), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45973,15 +46149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20340] = 3, + [20517] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(976), 4, + ACTIONS(1012), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(978), 29, + ACTIONS(1014), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46011,72 +46187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20381] = 22, + [20558] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(676), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1819), 1, - anon_sym_SEMI, - ACTIONS(1821), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - STATE(1206), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [20460] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1128), 4, + ACTIONS(1008), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1130), 29, + ACTIONS(1010), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46106,15 +46225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20501] = 3, + [20599] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1260), 4, + ACTIONS(1060), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1262), 29, + ACTIONS(1062), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46144,15 +46263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20542] = 3, + [20640] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1096), 4, + ACTIONS(1252), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1098), 29, + ACTIONS(1254), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46182,15 +46301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20583] = 3, + [20681] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1156), 4, + ACTIONS(1044), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1158), 29, + ACTIONS(1046), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46220,15 +46339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20624] = 3, + [20722] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1220), 4, + ACTIONS(1084), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1222), 29, + ACTIONS(1086), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46258,72 +46377,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20665] = 22, + [20763] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(684), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1823), 1, + ACTIONS(1076), 4, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1825), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - STATE(1253), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [20744] = 3, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1078), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [20804] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1264), 4, + ACTIONS(1108), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1266), 29, + ACTIONS(1110), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46353,15 +46453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20785] = 3, + [20845] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1120), 4, + ACTIONS(1176), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1122), 29, + ACTIONS(1178), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46391,15 +46491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20826] = 3, + [20886] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1204), 4, + ACTIONS(1180), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1206), 29, + ACTIONS(1182), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46429,15 +46529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20867] = 3, + [20927] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1144), 4, + ACTIONS(1228), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1146), 29, + ACTIONS(1230), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46467,15 +46567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20908] = 3, + [20968] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1112), 4, + ACTIONS(1244), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1114), 29, + ACTIONS(1246), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46505,15 +46605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20949] = 3, + [21009] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1008), 4, + ACTIONS(1072), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1010), 29, + ACTIONS(1074), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46543,15 +46643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20990] = 3, + [21050] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1172), 4, + ACTIONS(1280), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1174), 29, + ACTIONS(1282), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46581,15 +46681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21031] = 3, + [21091] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1280), 4, + ACTIONS(976), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1282), 29, + ACTIONS(978), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46619,15 +46719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21072] = 3, + [21132] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1176), 4, + ACTIONS(1248), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1178), 29, + ACTIONS(1250), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46657,72 +46757,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21113] = 22, + [21173] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(706), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1827), 1, + ACTIONS(1040), 4, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1829), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - STATE(1192), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [21192] = 3, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1042), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [21214] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1056), 4, + ACTIONS(1036), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1058), 29, + ACTIONS(1038), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46752,15 +46833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21233] = 3, + [21255] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1224), 4, + ACTIONS(1000), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1226), 29, + ACTIONS(1002), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46790,15 +46871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21274] = 3, + [21296] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 4, + ACTIONS(1220), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1214), 29, + ACTIONS(1222), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46828,53 +46909,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21315] = 3, + [21337] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1168), 4, - anon_sym_RBRACE, + ACTIONS(704), 1, + anon_sym_RBRACK, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1825), 1, anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - ACTIONS(1170), 29, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - anon_sym_extern, - anon_sym_pub, - sym_identifier, - sym_super, - [21356] = 3, + ACTIONS(1827), 1, + anon_sym_COMMA, + STATE(467), 1, + sym_arguments, + STATE(1260), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [21416] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1136), 4, + ACTIONS(1204), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1138), 29, + ACTIONS(1206), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46904,15 +47004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21397] = 3, + [21457] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1228), 4, + ACTIONS(1064), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1230), 29, + ACTIONS(1066), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46942,15 +47042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21438] = 3, + [21498] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1108), 4, + ACTIONS(980), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1110), 29, + ACTIONS(982), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46980,15 +47080,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21479] = 3, + [21539] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(968), 4, + ACTIONS(984), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(970), 29, + ACTIONS(986), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47018,15 +47118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21520] = 3, + [21580] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1092), 4, + ACTIONS(992), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1094), 29, + ACTIONS(994), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47056,15 +47156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21561] = 3, + [21621] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1052), 4, + ACTIONS(1096), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1054), 29, + ACTIONS(1098), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47094,15 +47194,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21602] = 3, + [21662] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1044), 4, + ACTIONS(1829), 1, + anon_sym_LBRACE, + ACTIONS(1831), 1, + anon_sym_BANG, + ACTIONS(1833), 1, + anon_sym_COLON_COLON, + STATE(798), 1, + sym_field_initializer_list, + ACTIONS(577), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(579), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [21711] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1104), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1046), 29, + ACTIONS(1106), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47132,15 +47274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21643] = 3, + [21752] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1036), 4, + ACTIONS(1184), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1038), 29, + ACTIONS(1186), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47170,15 +47312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21684] = 3, + [21793] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1240), 4, + ACTIONS(1136), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1242), 29, + ACTIONS(1138), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47208,15 +47350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21725] = 3, + [21834] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1032), 4, + ACTIONS(1236), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1034), 29, + ACTIONS(1238), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47246,15 +47388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21766] = 3, + [21875] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1028), 4, + ACTIONS(1188), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1030), 29, + ACTIONS(1190), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47284,15 +47426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21807] = 3, + [21916] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1020), 4, + ACTIONS(972), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1022), 29, + ACTIONS(974), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47322,15 +47464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21848] = 3, + [21957] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1012), 4, + ACTIONS(1168), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1014), 29, + ACTIONS(1170), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47360,15 +47502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21889] = 3, + [21998] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1244), 4, + ACTIONS(1212), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1246), 29, + ACTIONS(1214), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47398,15 +47540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21930] = 3, + [22039] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1064), 4, + ACTIONS(1140), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1066), 29, + ACTIONS(1142), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47436,15 +47578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21971] = 3, + [22080] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1276), 4, + ACTIONS(1268), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1278), 29, + ACTIONS(1270), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47474,15 +47616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22012] = 3, + [22121] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(984), 4, + ACTIONS(1100), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(986), 29, + ACTIONS(1102), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47512,15 +47654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22053] = 3, + [22162] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1100), 4, + ACTIONS(1200), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1102), 29, + ACTIONS(1202), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47550,15 +47692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22094] = 3, + [22203] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(996), 4, + ACTIONS(1196), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(998), 29, + ACTIONS(1198), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47588,15 +47730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22135] = 3, + [22244] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1104), 4, + ACTIONS(1116), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1106), 29, + ACTIONS(1118), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47626,15 +47768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22176] = 3, + [22285] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1000), 4, + ACTIONS(1192), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1002), 29, + ACTIONS(1194), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47664,15 +47806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22217] = 3, + [22326] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1004), 4, + ACTIONS(1160), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1006), 29, + ACTIONS(1162), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47702,17 +47844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22258] = 6, + [22367] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 1, - anon_sym_BANG, - ACTIONS(1831), 1, - anon_sym_COLON_COLON, - STATE(442), 1, - sym_field_initializer_list, - ACTIONS(579), 10, + ACTIONS(1570), 1, + anon_sym_LBRACE, + ACTIONS(1530), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -47722,9 +47861,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, - anon_sym_LBRACE, + ACTIONS(1528), 20, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -47741,43 +47880,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [22304] = 16, + [22409] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1833), 1, - anon_sym_RPAREN, ACTIONS(1835), 1, - anon_sym_default, + anon_sym_impl, ACTIONS(1837), 1, + anon_sym_const, + ACTIONS(1839), 1, + anon_sym_POUND, + ACTIONS(1841), 1, + anon_sym_COLON_COLON, + ACTIONS(1845), 1, + anon_sym_GT, + ACTIONS(1849), 1, + anon_sym_default, + ACTIONS(1851), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(1327), 1, sym_generic_type, - STATE(894), 1, + STATE(1338), 1, + sym_generic_type_with_turbofish, + STATE(1344), 1, sym_scoped_type_identifier, - STATE(998), 1, - sym__type, - STATE(1404), 1, + STATE(1623), 1, sym_scoped_identifier, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(668), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1443), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1843), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -47792,14 +47931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [22370] = 4, + sym_super, + [22475] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1566), 1, - anon_sym_LBRACE, - ACTIONS(1544), 11, - anon_sym_EQ, + ACTIONS(1546), 1, anon_sym_BANG, + ACTIONS(1853), 1, + anon_sym_COLON_COLON, + STATE(445), 1, + sym_field_initializer_list, + ACTIONS(577), 10, + anon_sym_EQ, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -47809,9 +47952,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1542), 20, + ACTIONS(579), 19, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -47828,124 +47971,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK, - [22412] = 21, + [22521] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(599), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1839), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - STATE(469), 1, + ACTIONS(1857), 1, + anon_sym_RPAREN, + STATE(467), 1, sym_arguments, - STATE(1279), 1, + STATE(1149), 1, aux_sym_arguments_repeat1, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [22488] = 21, + [22597] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(690), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, + ACTIONS(599), 1, + anon_sym_RPAREN, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1841), 1, + ACTIONS(1859), 1, anon_sym_COMMA, - STATE(469), 1, + STATE(467), 1, sym_arguments, - STATE(1332), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, + STATE(1284), 1, + aux_sym_arguments_repeat1, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [22564] = 4, + [22673] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1835), 1, + anon_sym_impl, + ACTIONS(1837), 1, + anon_sym_const, + ACTIONS(1839), 1, + anon_sym_POUND, + ACTIONS(1841), 1, + anon_sym_COLON_COLON, + ACTIONS(1849), 1, + anon_sym_default, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1861), 1, + anon_sym_GT, + STATE(1327), 1, + sym_generic_type, + STATE(1338), 1, + sym_generic_type_with_turbofish, + STATE(1344), 1, + sym_scoped_type_identifier, + STATE(1623), 1, + sym_scoped_identifier, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(668), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1443), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1843), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [22739] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(1564), 1, anon_sym_LBRACE, - ACTIONS(1526), 11, + ACTIONS(1560), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -47957,7 +48149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1524), 20, + ACTIONS(1558), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -47978,62 +48170,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [22606] = 21, + [22781] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1835), 1, + anon_sym_impl, + ACTIONS(1837), 1, + anon_sym_const, + ACTIONS(1839), 1, + anon_sym_POUND, + ACTIONS(1841), 1, + anon_sym_COLON_COLON, + ACTIONS(1849), 1, + anon_sym_default, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1863), 1, + anon_sym_GT, + STATE(1327), 1, + sym_generic_type, + STATE(1338), 1, + sym_generic_type_with_turbofish, + STATE(1344), 1, + sym_scoped_type_identifier, + STATE(1623), 1, + sym_scoped_identifier, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(668), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1443), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1843), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [22847] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1865), 1, + anon_sym_RPAREN, + ACTIONS(1867), 1, + anon_sym_default, + ACTIONS(1869), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(1169), 1, + sym__type, + STATE(1362), 1, + sym_scoped_identifier, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [22913] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, + anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1867), 1, + anon_sym_default, + ACTIONS(1869), 1, + sym_identifier, + ACTIONS(1871), 1, + anon_sym_RPAREN, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(1024), 1, + sym__type, + STATE(1362), 1, + sym_scoped_identifier, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [22979] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(696), 1, + anon_sym_RBRACK, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1873), 1, + anon_sym_COMMA, + STATE(467), 1, + sym_arguments, + STATE(1307), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23055] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1843), 1, + ACTIONS(1875), 1, anon_sym_COMMA, - ACTIONS(1845), 1, + ACTIONS(1877), 1, anon_sym_RPAREN, - STATE(469), 1, + STATE(467), 1, sym_arguments, - STATE(1325), 1, + STATE(1316), 1, aux_sym_arguments_repeat1, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [22682] = 4, + [23131] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(1562), 1, @@ -48071,41 +48468,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [22724] = 16, + [23173] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(706), 1, + anon_sym_RBRACK, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1879), 1, + anon_sym_COMMA, + STATE(467), 1, + sym_arguments, + STATE(1216), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23249] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1568), 1, + anon_sym_LBRACE, + ACTIONS(1534), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1532), 20, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [23291] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(595), 1, + anon_sym_RPAREN, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1881), 1, + anon_sym_COMMA, + STATE(467), 1, + sym_arguments, + STATE(1282), 1, + aux_sym_arguments_repeat1, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23367] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, + ACTIONS(1835), 1, anon_sym_impl, - ACTIONS(1849), 1, + ACTIONS(1837), 1, anon_sym_const, - ACTIONS(1851), 1, + ACTIONS(1839), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1841), 1, anon_sym_COLON_COLON, - ACTIONS(1857), 1, - anon_sym_GT, - ACTIONS(1861), 1, + ACTIONS(1849), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1851), 1, sym_identifier, - STATE(1256), 1, + ACTIONS(1883), 1, + anon_sym_GT, + STATE(1327), 1, sym_generic_type, - STATE(1266), 1, + STATE(1338), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(1344), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1623), 1, sym_scoped_identifier, - ACTIONS(1859), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(662), 2, + STATE(668), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, + STATE(1443), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1855), 15, + ACTIONS(1843), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48121,41 +48666,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [22790] = 16, + [23433] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, + anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1869), 1, sym_identifier, - ACTIONS(1865), 1, - anon_sym_GT, - STATE(1256), 1, + ACTIONS(1885), 1, + anon_sym_RPAREN, + STATE(871), 1, sym_generic_type, - STATE(1266), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1024), 1, + sym__type, + STATE(1362), 1, sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(662), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48170,97 +48716,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [22856] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_RPAREN, - STATE(469), 1, - sym_arguments, - STATE(1233), 1, - aux_sym_arguments_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [22932] = 16, + [23499] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, + ACTIONS(1835), 1, anon_sym_impl, - ACTIONS(1849), 1, + ACTIONS(1837), 1, anon_sym_const, - ACTIONS(1851), 1, + ACTIONS(1839), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1841), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(1849), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1851), 1, sym_identifier, - ACTIONS(1871), 1, + ACTIONS(1887), 1, anon_sym_GT, - STATE(1256), 1, + STATE(1327), 1, sym_generic_type, - STATE(1266), 1, + STATE(1338), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(1344), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1623), 1, sym_scoped_identifier, - ACTIONS(1859), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(662), 2, + STATE(668), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, + STATE(1443), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1855), 15, + ACTIONS(1843), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48276,41 +48766,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [22998] = 16, + [23565] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, + ACTIONS(1835), 1, anon_sym_impl, - ACTIONS(1849), 1, + ACTIONS(1837), 1, anon_sym_const, - ACTIONS(1851), 1, + ACTIONS(1839), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1841), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(1849), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1851), 1, sym_identifier, - ACTIONS(1873), 1, + ACTIONS(1889), 1, anon_sym_GT, - STATE(1256), 1, + STATE(1327), 1, sym_generic_type, - STATE(1266), 1, + STATE(1338), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(1344), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1623), 1, sym_scoped_identifier, - ACTIONS(1859), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(662), 2, + STATE(668), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, + STATE(1443), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1855), 15, + ACTIONS(1843), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48326,41 +48816,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [23064] = 16, + [23631] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, + ACTIONS(1835), 1, anon_sym_impl, - ACTIONS(1849), 1, + ACTIONS(1837), 1, anon_sym_const, - ACTIONS(1851), 1, + ACTIONS(1839), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1841), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(1849), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1851), 1, sym_identifier, - ACTIONS(1875), 1, + ACTIONS(1891), 1, anon_sym_GT, - STATE(1256), 1, + STATE(1327), 1, sym_generic_type, - STATE(1266), 1, + STATE(1338), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(1344), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1623), 1, sym_scoped_identifier, - ACTIONS(1859), 2, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(662), 2, + STATE(668), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, + STATE(1443), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1855), 15, + ACTIONS(1843), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48376,42 +48866,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [23130] = 16, + [23697] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - ACTIONS(1877), 1, - anon_sym_RPAREN, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1240), 1, + STATE(1208), 1, sym__type, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48426,41 +48914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23196] = 16, + [23760] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, + ACTIONS(1893), 1, + anon_sym_RBRACE, + ACTIONS(1895), 8, anon_sym_POUND, - ACTIONS(1853), 1, + anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1861), 1, - anon_sym_default, - ACTIONS(1863), 1, - sym_identifier, - ACTIONS(1879), 1, - anon_sym_GT, - STATE(1256), 1, - sym_generic_type, - STATE(1266), 1, - sym_generic_type_with_turbofish, - STATE(1445), 1, - sym_scoped_type_identifier, - STATE(1503), 1, - sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_DASH, - STATE(662), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1897), 22, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48475,173 +48944,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [23262] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, - anon_sym_COLON_COLON, - ACTIONS(1861), 1, anon_sym_default, - ACTIONS(1863), 1, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(1881), 1, - anon_sym_GT, - STATE(1256), 1, - sym_generic_type, - STATE(1266), 1, - sym_generic_type_with_turbofish, - STATE(1445), 1, - sym_scoped_type_identifier, - STATE(1503), 1, - sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(662), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, + sym_mutable_specifier, sym_super, - [23328] = 21, + [23801] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(688), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1899), 1, + anon_sym_else, + STATE(802), 1, + sym_else_clause, + ACTIONS(559), 10, anon_sym_EQ, - ACTIONS(1883), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - STATE(1268), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [23404] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(593), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(557), 19, anon_sym_LBRACK, - ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1885), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - STATE(1166), 1, - aux_sym_arguments_repeat1, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [23480] = 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [23844] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1558), 1, - anon_sym_LBRACE, - ACTIONS(1530), 11, + ACTIONS(1556), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -48653,7 +49004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1528), 20, + ACTIONS(1554), 20, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -48672,144 +49024,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK, - [23522] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_default, - ACTIONS(1837), 1, - sym_identifier, - ACTIONS(1887), 1, - anon_sym_RPAREN, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(998), 1, - sym__type, - STATE(1404), 1, - sym_scoped_identifier, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [23588] = 19, + [23883] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - STATE(469), 1, + ACTIONS(1901), 1, + anon_sym_RBRACE, + ACTIONS(1903), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1889), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [23659] = 15, + [23956] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1506), 1, + anon_sym_AT, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1264), 1, - sym__type, - STATE(1404), 1, + STATE(1370), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1457), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48824,99 +49126,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23722] = 4, + [24019] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1891), 1, - anon_sym_RBRACE, - ACTIONS(1893), 8, - anon_sym_POUND, - anon_sym_LBRACK, + ACTIONS(1602), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - anon_sym_LPAREN, + ACTIONS(1576), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1895), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [23763] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, + ACTIONS(1574), 19, anon_sym_LBRACK, - ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, - anon_sym_default, - ACTIONS(1582), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(883), 1, - sym__type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(1364), 1, - sym_scoped_identifier, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [23826] = 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [24060] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1897), 1, - anon_sym_BANG, - ACTIONS(1899), 1, + ACTIONS(1572), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(1586), 10, + ACTIONS(1576), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -48927,7 +49180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1584), 19, + ACTIONS(1574), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -48947,40 +49200,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [23869] = 15, + [24101] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(1544), 1, + STATE(1459), 1, sym__type, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48995,40 +49248,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23932] = 15, + [24164] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1592), 1, + anon_sym_AT, + ACTIONS(1594), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1598), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1251), 1, + STATE(1013), 1, sym__type, - STATE(1404), 1, + STATE(1366), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49043,144 +49296,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23995] = 15, + [24227] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, - anon_sym_default, - ACTIONS(1582), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(1020), 1, - sym__type, - STATE(1364), 1, - sym_scoped_identifier, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [24058] = 20, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_SEMI, + ACTIONS(1905), 1, + anon_sym_RBRACE, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24300] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(211), 1, + ACTIONS(193), 1, anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1901), 1, + ACTIONS(1903), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24131] = 15, + [24373] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1835), 1, + anon_sym_impl, + ACTIONS(1837), 1, + anon_sym_const, + ACTIONS(1839), 1, + anon_sym_POUND, + ACTIONS(1841), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1849), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1851), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(1327), 1, sym_generic_type, - STATE(984), 1, + STATE(1338), 1, + sym_generic_type_with_turbofish, + STATE(1344), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1623), 1, sym_scoped_identifier, - STATE(1383), 1, - sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(668), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1443), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1843), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, anon_sym_i16, anon_sym_u32, anon_sym_i32, @@ -49192,40 +49449,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24194] = 15, + sym_super, + [24436] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_SEMI, + ACTIONS(1907), 1, + anon_sym_RBRACE, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24509] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(201), 1, + anon_sym_RBRACE, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_SEMI, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24582] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(1557), 1, + STATE(1408), 1, sym__type, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49240,40 +49604,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24257] = 15, + [24645] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1278), 1, - sym__type, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1404), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49288,146 +49652,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24320] = 20, + [24708] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(726), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(197), 1, + anon_sym_RBRACE, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, ACTIONS(1903), 1, - anon_sym_COMMA, - STATE(469), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24393] = 20, + [24781] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(718), 1, + anon_sym_RPAREN, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1909), 1, + anon_sym_COMMA, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [24854] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1905), 1, + ACTIONS(1903), 1, + anon_sym_SEMI, + ACTIONS(1911), 1, anon_sym_RBRACE, - ACTIONS(1907), 1, - anon_sym_COMMA, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24466] = 15, + [24927] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1506), 1, + anon_sym_AT, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1351), 1, sym__type, - STATE(1404), 1, + STATE(1370), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49442,40 +49859,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24529] = 15, + [24990] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1369), 1, + STATE(1314), 1, sym__type, - STATE(881), 5, + STATE(1362), 1, + sym_scoped_identifier, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49490,40 +49907,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24592] = 15, + [25053] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(1596), 1, + STATE(1600), 1, sym__type, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49538,70 +49955,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24655] = 15, + [25116] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1542), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1540), 21, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(836), 1, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [25155] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1368), 1, - sym__type, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1584), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [24718] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1909), 1, - anon_sym_RBRACE, - ACTIONS(1911), 8, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1913), 22, - anon_sym__, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49616,47 +50039,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [24759] = 15, + [25218] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1506), 1, + anon_sym_AT, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1331), 1, - sym__type, - STATE(1404), 1, + STATE(1370), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1386), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49671,92 +50087,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24822] = 19, + [25281] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1913), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25352] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, ACTIONS(1915), 2, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24893] = 15, + [25423] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1917), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25494] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(883), 1, - sym__type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1533), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49771,78 +50291,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24956] = 5, + [25557] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1800), 1, - anon_sym_BANG, - ACTIONS(1917), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(579), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(575), 19, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, anon_sym_LBRACK, + ACTIONS(1500), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [24999] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1339), 1, + STATE(1292), 1, sym__type, - STATE(1366), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49857,76 +50339,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25062] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1530), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1528), 20, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [25101] = 15, + [25620] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1363), 1, - sym__type, - STATE(1366), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1601), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49941,76 +50387,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25164] = 3, + [25683] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1835), 1, + anon_sym_impl, + ACTIONS(1837), 1, + anon_sym_const, + ACTIONS(1839), 1, + anon_sym_POUND, + ACTIONS(1841), 1, + anon_sym_COLON_COLON, + ACTIONS(1849), 1, + anon_sym_default, + ACTIONS(1919), 1, + sym_identifier, + STATE(1056), 1, + sym_generic_type, + STATE(1057), 1, + sym_generic_type_with_turbofish, + STATE(1344), 1, + sym_scoped_type_identifier, + STATE(1623), 1, + sym_scoped_identifier, + ACTIONS(1847), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1528), 20, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [25203] = 15, + STATE(642), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1329), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1843), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [25746] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(1583), 1, + STATE(1585), 1, sym__type, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50025,40 +50483,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25266] = 15, + [25809] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1921), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25880] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1923), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25951] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1506), 1, + anon_sym_AT, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1297), 1, - sym__type, - STATE(1404), 1, + STATE(1370), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1381), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50073,118 +50635,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25329] = 19, + [26014] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - STATE(469), 1, + ACTIONS(1903), 1, + anon_sym_SEMI, + ACTIONS(1925), 1, + anon_sym_RBRACE, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1919), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25400] = 19, + [26087] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(221), 1, + anon_sym_RBRACE, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_SEMI, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26160] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, + anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1867), 1, + anon_sym_default, + ACTIONS(1869), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(1301), 1, + sym__type, + STATE(1362), 1, + sym_scoped_identifier, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [26223] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1921), 2, - anon_sym_RBRACE, + ACTIONS(1927), 2, anon_sym_COMMA, - ACTIONS(1646), 3, + anon_sym_RPAREN, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25471] = 5, + [26294] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 1, + ACTIONS(1620), 1, anon_sym_BANG, - ACTIONS(1923), 1, + ACTIONS(1929), 1, anon_sym_COLON_COLON, - ACTIONS(579), 10, + ACTIONS(1618), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -50195,7 +50859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, + ACTIONS(1616), 19, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_LPAREN, @@ -50215,237 +50879,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [25514] = 5, + [26337] = 19, ACTIONS(3), 1, sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, ACTIONS(1588), 1, - anon_sym_BANG, - ACTIONS(1925), 1, - anon_sym_COLON_COLON, - ACTIONS(1586), 10, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1931), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1644), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1584), 19, - anon_sym_LBRACE, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26408] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, anon_sym_LBRACK, + ACTIONS(1584), 1, anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_SEMI, + ACTIONS(1933), 1, + anon_sym_RBRACE, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [25557] = 20, + [26481] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1927), 1, - anon_sym_COMMA, - ACTIONS(1929), 1, - anon_sym_RPAREN, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1935), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25630] = 20, + [26552] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(219), 1, + anon_sym_RBRACE, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1901), 1, + ACTIONS(1903), 1, anon_sym_SEMI, - ACTIONS(1931), 1, - anon_sym_RBRACE, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25703] = 20, + [26625] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1933), 1, - anon_sym_LBRACE, - ACTIONS(1935), 1, - anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - STATE(80), 1, - sym_match_block, - STATE(469), 1, + ACTIONS(1811), 1, + anon_sym_EQ, + STATE(467), 1, sym_arguments, - ACTIONS(1939), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1937), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1955), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25776] = 15, + [26696] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, - anon_sym_default, - ACTIONS(1510), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1941), 1, + anon_sym_EQ, + ACTIONS(1949), 1, + anon_sym_CARET, + ACTIONS(1951), 1, + anon_sym_AMP, + ACTIONS(1953), 1, + anon_sym_PIPE, + ACTIONS(1955), 1, + anon_sym_AMP_AMP, + ACTIONS(1957), 1, + anon_sym_PIPE_PIPE, + STATE(79), 1, + sym_match_block, + STATE(467), 1, + sym_arguments, + ACTIONS(1945), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1959), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1943), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1963), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1961), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26769] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1835), 1, + anon_sym_impl, + ACTIONS(1837), 1, + anon_sym_const, + ACTIONS(1839), 1, + anon_sym_POUND, + ACTIONS(1841), 1, + anon_sym_COLON_COLON, + ACTIONS(1849), 1, + anon_sym_default, + ACTIONS(1965), 1, + sym_identifier, + STATE(1121), 1, + sym_generic_type_with_turbofish, + STATE(1122), 1, sym_generic_type, - STATE(984), 1, + STATE(1344), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1623), 1, sym_scoped_identifier, - STATE(1444), 1, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(825), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1203), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1843), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [26832] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, + anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1592), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_default, + ACTIONS(1598), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(884), 1, sym__type, - STATE(881), 5, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_scoped_identifier, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50460,40 +51290,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25839] = 15, + [26895] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1967), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26966] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, STATE(1494), 1, sym__type, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50508,40 +51390,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25902] = 15, + [27029] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1169), 1, + STATE(1181), 1, sym__type, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50556,301 +51438,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25965] = 19, + [27092] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1959), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26036] = 20, + ACTIONS(1867), 1, + anon_sym_default, + ACTIONS(1869), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(1362), 1, + sym_scoped_identifier, + STATE(1569), 1, + sym__type, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27155] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(85), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(1969), 1, + anon_sym_RBRACE, + ACTIONS(1971), 1, + anon_sym_COMMA, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26109] = 19, + [27228] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1538), 10, anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1961), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1646), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26180] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1536), 21, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1963), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26251] = 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [27267] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(716), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1867), 1, + anon_sym_default, + ACTIONS(1869), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(1362), 1, + sym_scoped_identifier, + STATE(1551), 1, + sym__type, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27330] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(211), 1, + anon_sym_RBRACE, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, ACTIONS(1903), 1, - anon_sym_COMMA, - STATE(469), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26324] = 15, + [27403] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, + anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1863), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(1256), 1, + STATE(871), 1, sym_generic_type, - STATE(1266), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1256), 1, + sym__type, + STATE(1362), 1, sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(662), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1400), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50865,147 +51724,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [26387] = 20, + [27466] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1560), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1558), 20, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + [27505] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1965), 1, - anon_sym_RBRACE, - STATE(469), 1, + ACTIONS(1909), 1, + anon_sym_COMMA, + ACTIONS(1973), 1, + anon_sym_RPAREN, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26460] = 20, + [27578] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(217), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1975), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26533] = 15, + [27649] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1506), 1, + anon_sym_AT, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1209), 1, - sym__type, - STATE(1404), 1, + STATE(1370), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1388), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51020,40 +51913,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26596] = 15, + [27712] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(1490), 1, + STATE(1568), 1, sym__type, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51068,210 +51961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26659] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1967), 1, - anon_sym_RBRACE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26732] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1969), 1, - anon_sym_else, - STATE(775), 1, - sym_else_clause, - ACTIONS(559), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(557), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [26775] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1971), 1, - anon_sym_RBRACE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26848] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(99), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26921] = 4, + [27775] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1634), 2, - anon_sym_LBRACE, + ACTIONS(1831), 1, + anon_sym_BANG, + ACTIONS(1977), 1, anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -51282,7 +51979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 19, + ACTIONS(579), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -51302,13 +51999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [26962] = 4, + [27818] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1568), 2, - anon_sym_LBRACE, + ACTIONS(1546), 1, + anon_sym_BANG, + ACTIONS(1979), 1, anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -51319,7 +52017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 19, + ACTIONS(579), 19, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -51337,95 +52036,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [27003] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1973), 1, - anon_sym_RBRACE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [27076] = 15, + [27861] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1255), 1, + STATE(1024), 1, sym__type, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51440,40 +52085,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27139] = 15, + [27924] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1506), 1, + anon_sym_AT, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1370), 1, sym_scoped_identifier, - STATE(1531), 1, + STATE(1385), 1, sym__type, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51488,40 +52133,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27202] = 15, + [27987] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1370), 1, sym_scoped_identifier, STATE(1384), 1, sym__type, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51536,39 +52181,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27265] = 15, + [28050] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, + anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1506), 1, + anon_sym_AT, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1975), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(1106), 1, + STATE(871), 1, sym_generic_type, - STATE(1109), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(884), 1, + sym__type, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1370), 1, sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(669), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1222), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51583,41 +52229,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [27328] = 15, + [28113] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(984), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1463), 1, + STATE(1283), 1, sym__type, - STATE(881), 5, + STATE(1362), 1, + sym_scoped_identifier, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51632,194 +52277,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27391] = 20, + [28176] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(792), 1, + anon_sym_RPAREN, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1977), 1, - anon_sym_RBRACE, - STATE(469), 1, + ACTIONS(1909), 1, + anon_sym_COMMA, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27464] = 20, + [28249] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(221), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1552), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1550), 21, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27537] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [28288] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1981), 1, + anon_sym_BANG, + ACTIONS(1983), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, + ACTIONS(1618), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1616), 19, anon_sym_LBRACK, - ACTIONS(1496), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, - anon_sym_default, - ACTIONS(1510), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1464), 1, - sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [27600] = 15, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [28331] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(1835), 1, + anon_sym_impl, + ACTIONS(1837), 1, + anon_sym_const, + ACTIONS(1839), 1, + anon_sym_POUND, + ACTIONS(1841), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, + ACTIONS(1849), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1985), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, + STATE(1207), 1, sym_generic_type, - STATE(984), 1, + STATE(1210), 1, + sym_generic_type_with_turbofish, + STATE(1344), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1623), 1, sym_scoped_identifier, - STATE(1465), 1, - sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1847), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(825), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1383), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1843), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51834,375 +52451,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27663] = 20, + sym_super, + [28394] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1560), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1558), 20, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(1979), 1, - anon_sym_RBRACE, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27736] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1935), 1, - anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, - anon_sym_AMP, - ACTIONS(1947), 1, - anon_sym_PIPE, - ACTIONS(1949), 1, - anon_sym_AMP_AMP, - ACTIONS(1951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1981), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_match_block, - STATE(469), 1, - sym_arguments, - ACTIONS(1939), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1937), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1957), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1955), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [27809] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(87), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1602), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + [28433] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1556), 11, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, + anon_sym_BANG, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [27882] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1554), 20, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_COMMA, - ACTIONS(1983), 1, - anon_sym_RPAREN, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27955] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1985), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [28026] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, - anon_sym_POUND, - ACTIONS(1853), 1, - anon_sym_COLON_COLON, - ACTIONS(1861), 1, - anon_sym_default, - ACTIONS(1987), 1, - sym_identifier, - STATE(1162), 1, - sym_generic_type, - STATE(1316), 1, - sym_generic_type_with_turbofish, - STATE(1445), 1, - sym_scoped_type_identifier, - STATE(1503), 1, - sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(821), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1352), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [28089] = 19, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [28472] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(722), 1, + anon_sym_RPAREN, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - STATE(469), 1, + ACTIONS(1909), 1, + anon_sym_COMMA, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1989), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28160] = 3, + [28545] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1548), 10, + ACTIONS(1530), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -52212,8 +52592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1546), 21, - anon_sym_LBRACE, + ACTIONS(1528), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -52234,11 +52613,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28199] = 3, + [28584] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1540), 10, + ACTIONS(1534), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -52248,8 +52628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1538), 21, - anon_sym_LBRACE, + ACTIONS(1532), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -52270,40 +52649,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28238] = 15, + [28623] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1576), 1, + ACTIONS(1506), 1, anon_sym_AT, - ACTIONS(1578), 1, + ACTIONS(1508), 1, anon_sym_default, - ACTIONS(1582), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1037), 1, - sym__type, - STATE(1364), 1, + STATE(1370), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1464), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52318,127 +52697,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28301] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1552), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1550), 21, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [28340] = 19, + [28686] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - STATE(469), 1, + ACTIONS(1903), 1, + anon_sym_SEMI, + ACTIONS(1987), 1, + anon_sym_RBRACE, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1991), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28411] = 15, + [28759] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1847), 1, - anon_sym_impl, - ACTIONS(1849), 1, - anon_sym_const, - ACTIONS(1851), 1, + ACTIONS(1989), 1, + anon_sym_RBRACE, + ACTIONS(1991), 8, anon_sym_POUND, - ACTIONS(1853), 1, + anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1861), 1, - anon_sym_default, - ACTIONS(1993), 1, - sym_identifier, - STATE(1072), 1, - sym_generic_type_with_turbofish, - STATE(1073), 1, - sym_generic_type, - STATE(1445), 1, - sym_scoped_type_identifier, - STATE(1503), 1, - sym_scoped_identifier, - ACTIONS(1859), 2, - anon_sym_PLUS, + anon_sym_LPAREN, anon_sym_DASH, - STATE(821), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1263), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1855), 15, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1993), 22, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52453,77 +52780,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, sym_super, - [28474] = 3, + [28800] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1554), 20, + ACTIONS(1582), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1584), 1, anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_SEMI, + ACTIONS(1995), 1, + anon_sym_RBRACE, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [28513] = 15, + [28873] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(998), 1, + STATE(1336), 1, sym__type, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52538,424 +52888,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28576] = 3, + [28936] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1524), 20, + ACTIONS(1582), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1584), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(1586), 1, anon_sym_DOT, - anon_sym_EQ_GT, + ACTIONS(1588), 1, anon_sym_QMARK, - [28615] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1544), 11, + ACTIONS(1941), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1949), 1, + anon_sym_CARET, + ACTIONS(1951), 1, anon_sym_AMP, + ACTIONS(1953), 1, anon_sym_PIPE, - ACTIONS(1542), 20, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_CARET, + ACTIONS(1955), 1, anon_sym_AMP_AMP, + ACTIONS(1957), 1, anon_sym_PIPE_PIPE, + ACTIONS(1997), 1, + anon_sym_LBRACE, + STATE(250), 1, + sym_match_block, + STATE(467), 1, + sym_arguments, + ACTIONS(1945), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1943), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1963), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1961), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [28654] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1502), 1, - anon_sym_AT, - ACTIONS(1504), 1, - anon_sym_default, - ACTIONS(1510), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(984), 1, - sym_scoped_type_identifier, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1380), 1, - sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [28717] = 20, + [29009] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(724), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(1999), 1, + anon_sym_RBRACE, + ACTIONS(2001), 1, anon_sym_COMMA, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28790] = 20, + [29082] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1941), 1, + anon_sym_EQ, + ACTIONS(1949), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1953), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1955), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1957), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1995), 1, - anon_sym_RBRACE, - ACTIONS(1997), 1, - anon_sym_COMMA, - STATE(469), 1, + ACTIONS(2003), 1, + anon_sym_LBRACE, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + STATE(777), 1, + sym_match_block, + ACTIONS(1945), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1961), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28863] = 20, + [29155] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(2005), 1, anon_sym_COMMA, - ACTIONS(1999), 1, + ACTIONS(2007), 1, anon_sym_RPAREN, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28936] = 20, + [29228] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(219), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1530), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1528), 20, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29009] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [29267] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(928), 1, + anon_sym_AT, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1867), 1, + anon_sym_default, + ACTIONS(1869), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(884), 1, + sym__type, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(1362), 1, + sym_scoped_identifier, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29330] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(199), 1, + anon_sym_RBRACE, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - STATE(469), 1, + ACTIONS(1903), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2001), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29080] = 15, + [29403] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1367), 1, - sym__type, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1596), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52970,40 +53285,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29143] = 15, + [29466] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(883), 1, - sym__type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(881), 5, + STATE(1378), 1, + sym__type, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53018,146 +53333,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29206] = 20, + [29529] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - ACTIONS(2003), 1, - anon_sym_RBRACE, - STATE(469), 1, + ACTIONS(2009), 1, + anon_sym_COMMA, + ACTIONS(2011), 1, + anon_sym_RPAREN, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29279] = 20, + [29602] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1506), 1, + anon_sym_AT, + ACTIONS(1508), 1, + anon_sym_default, + ACTIONS(1514), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, + sym_scoped_type_identifier, + STATE(1370), 1, + sym_scoped_identifier, + STATE(1431), 1, + sym__type, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29665] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(205), 1, + anon_sym_RBRACE, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1935), 1, - anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(2005), 1, - anon_sym_LBRACE, - STATE(469), 1, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1903), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - STATE(805), 1, - sym_match_block, - ACTIONS(1939), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1955), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29352] = 15, + [29738] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1592), 1, + anon_sym_AT, + ACTIONS(1594), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1598), 1, sym_identifier, - STATE(862), 1, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(1024), 1, + sym__type, + STATE(1366), 1, + sym_scoped_identifier, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29801] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, + anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1506), 1, + anon_sym_AT, + ACTIONS(1508), 1, + anon_sym_default, + ACTIONS(1514), 1, + sym_identifier, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(995), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1370), 1, sym_scoped_identifier, - STATE(1421), 1, + STATE(1374), 1, sym__type, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53172,63 +53583,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29415] = 20, + [29864] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(914), 1, + anon_sym_COLON_COLON, + ACTIONS(946), 1, + sym_super, + ACTIONS(1498), 1, anon_sym_LBRACK, + ACTIONS(1500), 1, + anon_sym_LPAREN, + ACTIONS(1592), 1, + anon_sym_AT, + ACTIONS(1594), 1, + anon_sym_default, ACTIONS(1598), 1, + sym_identifier, + STATE(871), 1, + sym_generic_type, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, + sym_scoped_type_identifier, + STATE(1029), 1, + sym__type, + STATE(1366), 1, + sym_scoped_identifier, + STATE(895), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1502), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29927] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(794), 1, + anon_sym_RPAREN, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(2007), 1, + ACTIONS(1909), 1, anon_sym_COMMA, - ACTIONS(2009), 1, - anon_sym_RPAREN, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29488] = 3, + [30000] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 8, + ACTIONS(1252), 8, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -53237,7 +53696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1218), 23, + ACTIONS(1254), 23, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -53261,93 +53720,76 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [29527] = 20, + [30039] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(720), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1534), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1532), 20, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29600] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [30078] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(822), 1, + ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(836), 1, + ACTIONS(928), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(946), 1, sym_super, - ACTIONS(1494), 1, + ACTIONS(1498), 1, anon_sym_LBRACK, - ACTIONS(1496), 1, + ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1835), 1, + ACTIONS(1867), 1, anon_sym_default, - ACTIONS(1837), 1, + ACTIONS(1869), 1, sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, STATE(871), 1, sym_generic_type, - STATE(894), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(892), 1, sym_scoped_type_identifier, - STATE(1404), 1, + STATE(1362), 1, sym_scoped_identifier, - STATE(1405), 1, + STATE(1373), 1, sym__type, - STATE(881), 5, + STATE(895), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1498), 14, + ACTIONS(1502), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53362,233 +53804,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29663] = 3, + [30141] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1524), 20, - anon_sym_LBRACE, + ACTIONS(1582), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1584), 1, anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1909), 1, + anon_sym_COMMA, + ACTIONS(2013), 1, + anon_sym_RPAREN, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [29702] = 20, + [30214] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(83), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2015), 1, + anon_sym_RBRACK, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29775] = 3, + [30284] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 11, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1612), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, + ACTIONS(1949), 1, + anon_sym_CARET, + ACTIONS(1951), 1, + anon_sym_AMP, + ACTIONS(1953), 1, + anon_sym_PIPE, + STATE(467), 1, + sym_arguments, + ACTIONS(1945), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1554), 20, + ACTIONS(1959), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1943), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1963), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1610), 8, anon_sym_LBRACE, + 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, + [30348] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1584), 1, anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2017), 1, + anon_sym_SEMI, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [29814] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(836), 1, - anon_sym_AT, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1835), 1, - anon_sym_default, - ACTIONS(1837), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(1404), 1, - sym_scoped_identifier, - STATE(1580), 1, - sym__type, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [29877] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(822), 1, - anon_sym_COLON_COLON, - ACTIONS(854), 1, - sym_super, - ACTIONS(1494), 1, - anon_sym_LBRACK, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1576), 1, - anon_sym_AT, - ACTIONS(1578), 1, - anon_sym_default, - ACTIONS(1582), 1, - sym_identifier, - STATE(862), 1, - sym_generic_type_with_turbofish, - STATE(871), 1, - sym_generic_type, - STATE(894), 1, - sym_scoped_type_identifier, - STATE(998), 1, - sym__type, - STATE(1364), 1, - sym_scoped_identifier, - STATE(881), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1498), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [29940] = 3, + [30418] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 11, + ACTIONS(507), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -53598,10 +54021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1542), 20, - anon_sym_LBRACE, + ACTIONS(505), 20, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -53618,13 +54039,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [29979] = 4, + anon_sym_else, + [30456] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2011), 1, - anon_sym_COLON_COLON, - ACTIONS(579), 10, + ACTIONS(527), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -53635,8 +54056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, - anon_sym_LBRACE, + ACTIONS(525), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -53654,80 +54074,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [30019] = 13, + anon_sym_else, + [30494] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, - anon_sym_LBRACK, - ACTIONS(2017), 1, - anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, - anon_sym_DOT, - ACTIONS(2029), 1, - anon_sym_QMARK, - STATE(792), 1, - sym_arguments, - ACTIONS(2019), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2015), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1616), 4, + ACTIONS(1602), 1, + anon_sym_COLON_COLON, + ACTIONS(1576), 10, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1614), 12, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30077] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - STATE(469), 1, - sym_arguments, - ACTIONS(1941), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1937), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 15, + ACTIONS(1574), 19, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -53742,280 +54111,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30129] = 17, + anon_sym_DOT, + anon_sym_QMARK, + [30534] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1616), 1, - anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - STATE(469), 1, - sym_arguments, - ACTIONS(1939), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1937), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1957), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1614), 7, - anon_sym_LBRACE, + ACTIONS(1676), 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, - [30195] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1616), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, - anon_sym_AMP, - ACTIONS(1947), 1, - anon_sym_PIPE, - STATE(469), 1, + ACTIONS(2019), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - ACTIONS(1939), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1614), 8, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30259] = 13, + [30604] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1648), 1, anon_sym_AMP, - STATE(469), 1, - sym_arguments, - ACTIONS(1941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1937), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1616), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1614), 12, - anon_sym_LBRACE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, + ACTIONS(1676), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30317] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - STATE(469), 1, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2021), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - ACTIONS(1941), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1614), 13, - anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30371] = 12, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1945), 1, - anon_sym_AMP, - STATE(469), 1, - sym_arguments, - ACTIONS(1941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1937), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1616), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1614), 13, - anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30427] = 9, + [30674] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - STATE(469), 1, + STATE(787), 1, sym_arguments, - ACTIONS(1937), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1616), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1614), 15, - anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30477] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(527), 10, + ACTIONS(1580), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54026,9 +54239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(525), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1578), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54043,201 +54254,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_else, - [30515] = 14, + [30722] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - STATE(469), 1, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2031), 1, + anon_sym_RBRACK, + STATE(467), 1, sym_arguments, - ACTIONS(1941), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1616), 3, - anon_sym_EQ, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1937), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1614), 12, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [30575] = 19, + [30792] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1935), 1, - anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(2031), 1, - anon_sym_LBRACE, - STATE(469), 1, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2033), 1, + anon_sym_COMMA, + STATE(467), 1, sym_arguments, - ACTIONS(1939), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1955), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30645] = 8, + [30862] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, ACTIONS(2027), 1, anon_sym_DOT, ACTIONS(2029), 1, anon_sym_QMARK, - STATE(792), 1, - sym_arguments, - ACTIONS(1616), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1614), 15, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30693] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1696), 1, + ACTIONS(2035), 1, anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(2043), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(2045), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(2047), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - STATE(469), 1, + ACTIONS(2059), 1, + anon_sym_EQ_GT, + STATE(787), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(2039), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(2057), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1694), 6, - anon_sym_LBRACE, + ACTIONS(2055), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30761] = 3, + [30932] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 8, + ACTIONS(1991), 8, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -54246,7 +54420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1218), 22, + ACTIONS(1993), 22, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -54269,143 +54443,198 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [30799] = 4, + [30970] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1572), 10, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1682), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1949), 1, + anon_sym_CARET, + ACTIONS(1951), 1, + anon_sym_AMP, + ACTIONS(1953), 1, + anon_sym_PIPE, + ACTIONS(1955), 1, + anon_sym_AMP_AMP, + ACTIONS(1957), 1, + anon_sym_PIPE_PIPE, + STATE(467), 1, + sym_arguments, + ACTIONS(1945), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1959), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1943), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1570), 19, + ACTIONS(1963), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1680), 6, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [30839] = 4, + [31038] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1634), 1, - anon_sym_COLON_COLON, - ACTIONS(1572), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1570), 19, - anon_sym_LBRACE, + ACTIONS(1582), 1, anon_sym_LBRACK, + ACTIONS(1584), 1, anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2061), 1, + anon_sym_COMMA, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [30879] = 19, + [31108] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1666), 1, + anon_sym_EQ, + ACTIONS(1949), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1953), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1955), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1957), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2033), 1, - anon_sym_RBRACK, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1945), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1664), 6, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30949] = 8, + [31176] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(1895), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(2017), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_DOT, - ACTIONS(2029), 1, - anon_sym_QMARK, - STATE(792), 1, - sym_arguments, - ACTIONS(1630), 10, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1897), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [31214] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2063), 1, + anon_sym_COLON_COLON, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54416,7 +54645,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1628), 15, + ACTIONS(579), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54431,166 +54662,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30997] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, anon_sym_DOT, - ACTIONS(1602), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2035), 1, - anon_sym_RBRACK, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [31067] = 19, + [31254] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(2037), 1, - anon_sym_RBRACK, - STATE(469), 1, + ACTIONS(2065), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31137] = 19, + [31324] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(2039), 1, + ACTIONS(2067), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31207] = 4, + [31394] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2041), 1, + ACTIONS(1572), 1, anon_sym_COLON_COLON, - ACTIONS(579), 10, + ACTIONS(1576), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54601,7 +54783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, + ACTIONS(1574), 19, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -54619,12 +54802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK, - [31247] = 3, + [31434] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1893), 8, + ACTIONS(1252), 8, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -54633,7 +54815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1895), 22, + ACTIONS(1254), 22, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -54656,195 +54838,258 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [31285] = 18, + [31472] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1772), 1, + ACTIONS(1941), 1, anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(1949), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1953), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1955), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1957), 1, anon_sym_PIPE_PIPE, - STATE(469), 1, + ACTIONS(2069), 1, + anon_sym_LBRACE, + STATE(467), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(1945), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1770), 6, - anon_sym_LBRACE, + ACTIONS(1961), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31353] = 18, + [31542] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(2071), 1, + anon_sym_COLON_COLON, + ACTIONS(577), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(579), 19, anon_sym_LBRACK, - ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(1602), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(1672), 1, - anon_sym_EQ, - ACTIONS(1943), 1, - anon_sym_CARET, - ACTIONS(1945), 1, + [31582] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - STATE(469), 1, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2073), 1, + anon_sym_RBRACK, + STATE(467), 1, sym_arguments, - ACTIONS(1939), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1670), 6, - anon_sym_LBRACE, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31421] = 18, + [31652] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1728), 1, + ACTIONS(1760), 1, anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(1949), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(1953), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(1955), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(1957), 1, anon_sym_PIPE_PIPE, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(1945), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(1963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1726), 6, + ACTIONS(1758), 6, anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31489] = 4, + [31720] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2043), 1, - anon_sym_COLON_COLON, - ACTIONS(579), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(575), 19, + ACTIONS(1582), 1, anon_sym_LBRACK, + ACTIONS(1584), 1, anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2075), 1, + anon_sym_SEMI, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [31529] = 3, + [31790] = 8, ACTIONS(3), 1, sym_line_comment, + ACTIONS(2023), 1, + anon_sym_LBRACK, + ACTIONS(2025), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(787), 1, + sym_arguments, ACTIONS(1612), 10, anon_sym_EQ, anon_sym_STAR, @@ -54856,10 +55101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 20, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, + ACTIONS(1610), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54874,32 +55116,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [31567] = 3, + [31838] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1622), 10, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1949), 1, + anon_sym_CARET, + ACTIONS(1951), 1, + anon_sym_AMP, + ACTIONS(1953), 1, + anon_sym_PIPE, + STATE(467), 1, + sym_arguments, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1959), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1612), 3, anon_sym_EQ, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1943), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1620), 20, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_CARET, + ACTIONS(1610), 12, + anon_sym_LBRACE, 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, @@ -54909,34 +55163,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [31605] = 8, + [31898] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1606), 10, - anon_sym_EQ, + ACTIONS(1943), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1612), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1604), 15, + ACTIONS(1610), 15, + anon_sym_LBRACE, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54951,505 +55204,493 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31653] = 19, + [31948] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2045), 1, - anon_sym_RBRACK, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1612), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1610), 13, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31723] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32004] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2047), 1, - anon_sym_RBRACK, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1612), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1610), 13, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31793] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32058] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(2049), 1, + ACTIONS(2077), 1, anon_sym_RBRACK, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31863] = 19, + [32128] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(2051), 1, + ACTIONS(2079), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31933] = 19, + [32198] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1949), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2053), 1, - anon_sym_SEMI, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1612), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1610), 12, + anon_sym_LBRACE, + 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, - [32003] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32256] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(2055), 1, - anon_sym_RBRACK, - STATE(469), 1, + ACTIONS(2081), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32073] = 19, + [32326] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(535), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(533), 20, anon_sym_LBRACK, - ACTIONS(1598), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2057), 1, - anon_sym_COMMA, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32143] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_else, + [32364] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(551), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(549), 20, + ACTIONS(1582), 1, anon_sym_LBRACK, + ACTIONS(1584), 1, anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, anon_sym_AMP_AMP, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2083), 1, + anon_sym_SEMI, + STATE(467), 1, + sym_arguments, + ACTIONS(1646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_else, - [32181] = 19, + [32434] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(2059), 1, + ACTIONS(2085), 1, anon_sym_COMMA, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32251] = 19, + [32504] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(1909), 1, anon_sym_COMMA, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32321] = 3, + [32574] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(543), 10, + ACTIONS(2023), 1, + anon_sym_LBRACK, + ACTIONS(2025), 1, + anon_sym_LPAREN, + ACTIONS(2027), 1, + anon_sym_DOT, + ACTIONS(2029), 1, + anon_sym_QMARK, + STATE(787), 1, + sym_arguments, + ACTIONS(1636), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -55460,9 +55701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(541), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1634), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55477,492 +55716,539 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_else, - [32359] = 19, + [32622] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1612), 1, + anon_sym_EQ, + ACTIONS(1949), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1953), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1955), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2061), 1, - anon_sym_RBRACK, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1945), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1610), 7, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32429] = 18, + [32688] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1772), 1, - anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(1100), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(2017), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1102), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [32726] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1682), 1, + anon_sym_EQ, ACTIONS(2023), 1, - anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(2025), 1, + anon_sym_LPAREN, ACTIONS(2027), 1, anon_sym_DOT, ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(2043), 1, + anon_sym_CARET, + ACTIONS(2045), 1, + anon_sym_AMP, + ACTIONS(2047), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - STATE(792), 1, + STATE(787), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2039), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(2057), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1770), 6, + ACTIONS(1680), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_EQ_GT, - [32497] = 19, + [32794] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(2035), 1, + anon_sym_EQ, + ACTIONS(2043), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(2045), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(2047), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2073), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2069), 1, + anon_sym_EQ_GT, + STATE(787), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(2039), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(2057), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(2055), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32567] = 19, + [32864] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(2065), 1, - anon_sym_PIPE, - ACTIONS(2067), 1, - anon_sym_AMP_AMP, - ACTIONS(2069), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2075), 1, - anon_sym_EQ, - ACTIONS(2079), 1, - anon_sym_EQ_GT, - STATE(792), 1, + STATE(467), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2077), 5, + ACTIONS(1612), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1610), 15, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32637] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [32916] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(2081), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2087), 1, + anon_sym_RBRACK, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32707] = 19, + [32986] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1666), 1, + anon_sym_EQ, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(2043), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(2045), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(2047), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2083), 1, - anon_sym_COMMA, - STATE(469), 1, + STATE(787), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(2039), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(2057), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1664), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32777] = 19, + anon_sym_EQ_GT, + [33054] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + STATE(787), 1, + sym_arguments, + ACTIONS(1608), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - ACTIONS(1654), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1606), 15, + anon_sym_CARET, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2085), 1, - anon_sym_SEMI, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + anon_sym_EQ_GT, + [33102] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2089), 1, + anon_sym_COLON_COLON, + ACTIONS(577), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(579), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32847] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [33142] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(2087), 1, + ACTIONS(1903), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32917] = 18, + [33212] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1728), 1, + ACTIONS(1796), 1, anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, ACTIONS(2027), 1, anon_sym_DOT, ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(2043), 1, + anon_sym_CARET, + ACTIONS(2045), 1, + anon_sym_AMP, + ACTIONS(2047), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - STATE(792), 1, + STATE(787), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2039), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(2057), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1726), 6, + ACTIONS(1794), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_EQ_GT, - [32985] = 8, + [33280] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, ACTIONS(2027), 1, anon_sym_DOT, ACTIONS(2029), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(787), 1, sym_arguments, - ACTIONS(1594), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2037), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1612), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1592), 15, + ACTIONS(1610), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55978,379 +56264,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [33033] = 19, + [33332] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1796), 1, + anon_sym_EQ, + ACTIONS(1949), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1953), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1955), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1957), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2089), 1, - anon_sym_SEMI, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1945), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1794), 6, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33103] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1096), 8, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1098), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [33141] = 18, + [33400] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1672), 1, - anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - STATE(792), 1, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2091), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1670), 6, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_GT, - [33209] = 19, + [33470] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + ACTIONS(1941), 1, + anon_sym_EQ, + ACTIONS(1949), 1, anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1953), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1955), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1957), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2091), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2059), 1, + anon_sym_LBRACE, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1945), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1959), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1943), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1963), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1961), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33279] = 19, + [33540] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1630), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1628), 20, anon_sym_LBRACK, - ACTIONS(1598), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2093), 1, - anon_sym_SEMI, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33349] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2013), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [33578] = 17, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1612), 1, + anon_sym_EQ, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, ACTIONS(2027), 1, anon_sym_DOT, ACTIONS(2029), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(2043), 1, + anon_sym_CARET, + ACTIONS(2045), 1, + anon_sym_AMP, + ACTIONS(2047), 1, + anon_sym_PIPE, + ACTIONS(2049), 1, + anon_sym_AMP_AMP, + STATE(787), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2039), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2015), 3, + ACTIONS(2053), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1614), 15, - anon_sym_CARET, - anon_sym_AMP_AMP, + ACTIONS(2057), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1610), 7, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_EQ_GT, - [33401] = 19, + [33644] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_SEMI, - STATE(469), 1, + ACTIONS(2093), 1, + anon_sym_COMMA, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33471] = 17, + [33714] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1616), 1, + ACTIONS(1612), 1, anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, ACTIONS(2027), 1, anon_sym_DOT, ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(2043), 1, + anon_sym_CARET, + ACTIONS(2045), 1, + anon_sym_AMP, + ACTIONS(2047), 1, anon_sym_PIPE, - ACTIONS(2067), 1, - anon_sym_AMP_AMP, - STATE(792), 1, + STATE(787), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2039), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(2057), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1614), 7, + ACTIONS(1610), 8, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -56358,46 +56599,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_EQ_GT, - [33537] = 16, + [33778] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1616), 1, + ACTIONS(1640), 10, anon_sym_EQ, - ACTIONS(2013), 1, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1638), 20, anon_sym_LBRACK, - ACTIONS(2017), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(2021), 1, anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [33816] = 13, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(2023), 1, - anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(2025), 1, + anon_sym_LPAREN, ACTIONS(2027), 1, anon_sym_DOT, ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(2065), 1, - anon_sym_PIPE, - STATE(792), 1, + ACTIONS(2043), 1, + anon_sym_CARET, + ACTIONS(2045), 1, + anon_sym_AMP, + STATE(787), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1614), 8, + ACTIONS(1612), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1610), 12, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56405,183 +56674,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_EQ_GT, - [33601] = 19, + [33874] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, ACTIONS(2095), 1, - anon_sym_SEMI, - STATE(469), 1, + anon_sym_RBRACK, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33671] = 19, + [33944] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(1650), 1, + STATE(787), 1, + sym_arguments, + ACTIONS(2041), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2053), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2037), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1612), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1610), 13, anon_sym_CARET, - ACTIONS(1652), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [33998] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1582), 1, + anon_sym_LBRACK, + ACTIONS(1584), 1, + anon_sym_LPAREN, + ACTIONS(1586), 1, + anon_sym_DOT, + ACTIONS(1588), 1, + anon_sym_QMARK, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, ACTIONS(2097), 1, - anon_sym_COMMA, - STATE(469), 1, + anon_sym_RBRACK, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33741] = 11, + [34068] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2099), 1, + anon_sym_RBRACK, + STATE(467), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2015), 3, + ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1614), 13, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1678), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [33795] = 12, + [34138] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, - ACTIONS(2023), 1, - anon_sym_AMP, ACTIONS(2027), 1, anon_sym_DOT, ACTIONS(2029), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(2045), 1, + anon_sym_AMP, + STATE(787), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2015), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 4, + ACTIONS(1612), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(1614), 13, + ACTIONS(1610), 13, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56595,24 +56919,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [33851] = 9, + [34194] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, ACTIONS(2027), 1, anon_sym_DOT, ACTIONS(2029), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(787), 1, sym_arguments, - ACTIONS(2015), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1616), 7, + ACTIONS(1612), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56620,7 +56944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1614), 15, + ACTIONS(1610), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56636,91 +56960,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [33901] = 19, + [34244] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, - anon_sym_LBRACK, - ACTIONS(1598), 1, - anon_sym_LPAREN, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1602), 1, - anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, - anon_sym_EQ, - ACTIONS(2099), 1, - anon_sym_RBRACK, - STATE(469), 1, - sym_arguments, - ACTIONS(1648), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1674), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1810), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [33971] = 14, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, ACTIONS(2027), 1, anon_sym_DOT, ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(2043), 1, + anon_sym_CARET, + ACTIONS(2045), 1, + anon_sym_AMP, + ACTIONS(2047), 1, anon_sym_PIPE, - STATE(792), 1, + STATE(787), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1616), 3, + ACTIONS(1612), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1614), 12, + ACTIONS(1610), 12, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56733,248 +57006,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [34031] = 19, + [34304] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1760), 1, + anon_sym_EQ, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(2025), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(2027), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(2029), 1, anon_sym_QMARK, - ACTIONS(1935), 1, - anon_sym_EQ, - ACTIONS(1943), 1, + ACTIONS(2043), 1, anon_sym_CARET, - ACTIONS(1945), 1, + ACTIONS(2045), 1, anon_sym_AMP, - ACTIONS(1947), 1, + ACTIONS(2047), 1, anon_sym_PIPE, - ACTIONS(1949), 1, + ACTIONS(2049), 1, anon_sym_AMP_AMP, - ACTIONS(1951), 1, + ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - ACTIONS(2079), 1, - anon_sym_LBRACE, - STATE(469), 1, + STATE(787), 1, sym_arguments, - ACTIONS(1939), 2, + ACTIONS(2039), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1941), 2, + ACTIONS(2041), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1953), 2, + ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1937), 3, + ACTIONS(2037), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1957), 4, + ACTIONS(2057), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1955), 5, + ACTIONS(1758), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34101] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1911), 8, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1913), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [34139] = 19, + anon_sym_EQ_GT, + [34372] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2013), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(2031), 1, - anon_sym_EQ_GT, - ACTIONS(2065), 1, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(2075), 1, + ACTIONS(1811), 1, anon_sym_EQ, - STATE(792), 1, + ACTIONS(2101), 1, + anon_sym_RBRACK, + STATE(467), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2077), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34209] = 18, + [34442] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(2013), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(2017), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(2021), 1, - anon_sym_CARET, - ACTIONS(2023), 1, - anon_sym_AMP, - ACTIONS(2027), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(2065), 1, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(2067), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(2069), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - STATE(792), 1, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(2103), 1, + anon_sym_SEMI, + STATE(467), 1, sym_arguments, - ACTIONS(2019), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2025), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2063), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2015), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2071), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1694), 6, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_GT, - [34277] = 19, + [34512] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1596), 1, + ACTIONS(1582), 1, anon_sym_LBRACK, - ACTIONS(1598), 1, + ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1600), 1, + ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1602), 1, + ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_CARET, - ACTIONS(1652), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1654), 1, + ACTIONS(1670), 1, + anon_sym_CARET, + ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1676), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1806), 1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(2101), 1, + ACTIONS(2105), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(467), 1, sym_arguments, - ACTIONS(1648), 2, + ACTIONS(1646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1674), 2, + ACTIONS(1668), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1646), 3, + ACTIONS(1644), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 4, + ACTIONS(1678), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1810), 5, + ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34347] = 3, + [34582] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1644), 10, + ACTIONS(543), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56985,7 +57223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1642), 19, + ACTIONS(541), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57005,10 +57243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34384] = 3, + [34619] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1788), 10, + ACTIONS(1728), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57019,7 +57257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1786), 19, + ACTIONS(1726), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57039,10 +57277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34421] = 3, + [34656] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1684), 10, + ACTIONS(1740), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57053,7 +57291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1682), 19, + ACTIONS(1738), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57073,10 +57311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34458] = 3, + [34693] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(519), 10, + ACTIONS(1712), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57087,7 +57325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(517), 19, + ACTIONS(1710), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57107,10 +57345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34495] = 3, + [34730] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1736), 10, + ACTIONS(1772), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57121,7 +57359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1734), 19, + ACTIONS(1770), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57141,10 +57379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34532] = 3, + [34767] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(523), 10, + ACTIONS(547), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57155,7 +57393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(521), 19, + ACTIONS(545), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57175,10 +57413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34569] = 3, + [34804] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1732), 10, + ACTIONS(523), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57189,7 +57427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1730), 19, + ACTIONS(521), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57209,10 +57447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34606] = 3, + [34841] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(511), 10, + ACTIONS(491), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57223,7 +57461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(509), 19, + ACTIONS(489), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57243,10 +57481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34643] = 3, + [34878] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1704), 10, + ACTIONS(1744), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57257,7 +57495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1702), 19, + ACTIONS(1742), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57277,10 +57515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34680] = 3, + [34915] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1712), 10, + ACTIONS(511), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57291,7 +57529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1710), 19, + ACTIONS(509), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57311,10 +57549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34717] = 3, + [34952] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(472), 10, + ACTIONS(1716), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57325,7 +57563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(470), 19, + ACTIONS(1714), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57345,10 +57583,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34754] = 3, + [34989] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(484), 10, + ACTIONS(2107), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + anon_sym_RBRACE, + ACTIONS(2111), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + anon_sym_COLON_COLON, + ACTIONS(2115), 1, + anon_sym_STAR, + ACTIONS(2119), 1, + anon_sym_default, + ACTIONS(2121), 1, + sym_identifier, + STATE(1039), 1, + sym_scoped_identifier, + STATE(1546), 1, + sym_generic_type_with_turbofish, + STATE(1246), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2117), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [35044] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1654), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57359,7 +57640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(482), 19, + ACTIONS(1652), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57379,10 +57660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34791] = 3, + [35081] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(507), 10, + ACTIONS(1736), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57393,7 +57674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(505), 19, + ACTIONS(1734), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57413,10 +57694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34828] = 3, + [35118] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1758), 10, + ACTIONS(1788), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57427,7 +57708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1756), 19, + ACTIONS(1786), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57447,10 +57728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34865] = 3, + [35155] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1776), 10, + ACTIONS(1752), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57461,7 +57742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1774), 19, + ACTIONS(1750), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57481,10 +57762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34902] = 3, + [35192] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1692), 10, + ACTIONS(1784), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57495,7 +57776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1690), 19, + ACTIONS(1782), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57515,53 +57796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34939] = 12, + [35229] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_RBRACE, - ACTIONS(2107), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_COLON_COLON, - ACTIONS(2111), 1, - anon_sym_STAR, - ACTIONS(2115), 1, - anon_sym_default, - ACTIONS(2117), 1, - sym_identifier, - STATE(1005), 1, - sym_scoped_identifier, - STATE(1518), 1, - sym_generic_type_with_turbofish, - STATE(1281), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(2113), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [34994] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1660), 10, + ACTIONS(1724), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57572,7 +57810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1658), 19, + ACTIONS(1722), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57592,44 +57830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35031] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2119), 7, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(2121), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [35068] = 3, + [35266] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1708), 10, + ACTIONS(1780), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57640,7 +57844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1706), 19, + ACTIONS(1778), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57660,10 +57864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35105] = 3, + [35303] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1700), 10, + ACTIONS(1732), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57674,7 +57878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1698), 19, + ACTIONS(1730), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57694,10 +57898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35142] = 3, + [35340] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(515), 10, + ACTIONS(1576), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57708,7 +57912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(513), 19, + ACTIONS(1574), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57728,10 +57932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35179] = 3, + [35377] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1796), 10, + ACTIONS(1700), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57742,7 +57946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1794), 19, + ACTIONS(1698), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57762,10 +57966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35216] = 3, + [35414] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1784), 10, + ACTIONS(519), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57776,7 +57980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1782), 19, + ACTIONS(517), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57796,10 +58000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35253] = 3, + [35451] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1744), 10, + ACTIONS(1658), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57810,7 +58014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1742), 19, + ACTIONS(1656), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57830,10 +58034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35290] = 3, + [35488] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(496), 10, + ACTIONS(1800), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57844,7 +58048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(494), 19, + ACTIONS(1798), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57864,10 +58068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35327] = 3, + [35525] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1753), 10, + ACTIONS(495), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57878,7 +58082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1750), 19, + ACTIONS(493), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57898,10 +58102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35364] = 3, + [35562] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1640), 10, + ACTIONS(1662), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57912,7 +58116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1638), 19, + ACTIONS(1660), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57932,10 +58136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35401] = 3, + [35599] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1762), 10, + ACTIONS(1696), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57946,7 +58150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1760), 19, + ACTIONS(1694), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57966,10 +58170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35438] = 3, + [35636] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1724), 10, + ACTIONS(1708), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57980,7 +58184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1722), 19, + ACTIONS(1706), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58000,10 +58204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35475] = 3, + [35673] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(535), 10, + ACTIONS(483), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58014,7 +58218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(533), 19, + ACTIONS(481), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58034,10 +58238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35512] = 3, + [35710] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1716), 10, + ACTIONS(531), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58048,7 +58252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1714), 19, + ACTIONS(529), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58068,10 +58272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35549] = 3, + [35747] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1572), 10, + ACTIONS(515), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58082,7 +58286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1570), 19, + ACTIONS(513), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58102,10 +58306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35586] = 3, + [35784] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(579), 10, + ACTIONS(1776), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58116,7 +58320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, + ACTIONS(1774), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58136,10 +58340,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35623] = 3, + [35821] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1792), 10, + ACTIONS(2123), 7, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(2125), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [35858] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1768), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58150,7 +58388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1790), 19, + ACTIONS(1766), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58170,10 +58408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35660] = 3, + [35895] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1740), 10, + ACTIONS(555), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58184,7 +58422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1738), 19, + ACTIONS(553), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58204,10 +58442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35697] = 3, + [35932] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1748), 10, + ACTIONS(1756), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58218,7 +58456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 19, + ACTIONS(1754), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58238,10 +58476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35734] = 3, + [35969] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(547), 10, + ACTIONS(1764), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58252,7 +58490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(545), 19, + ACTIONS(1762), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58272,10 +58510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35771] = 3, + [36006] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(579), 10, + ACTIONS(1691), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58286,7 +58524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(575), 19, + ACTIONS(1688), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58306,10 +58544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35808] = 3, + [36043] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(539), 10, + ACTIONS(1720), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58320,7 +58558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(537), 19, + ACTIONS(1718), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58340,10 +58578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35845] = 3, + [36080] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1720), 10, + ACTIONS(1686), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58354,7 +58592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1718), 19, + ACTIONS(1684), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58374,10 +58612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35882] = 3, + [36117] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1688), 10, + ACTIONS(1792), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58388,7 +58626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1686), 19, + ACTIONS(1790), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58408,10 +58646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35919] = 3, + [36154] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1664), 10, + ACTIONS(1704), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58422,7 +58660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1662), 19, + ACTIONS(1702), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58442,10 +58680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35956] = 3, + [36191] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1668), 10, + ACTIONS(1748), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58456,7 +58694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1666), 19, + ACTIONS(1746), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58476,10 +58714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35993] = 3, + [36228] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1780), 10, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58490,7 +58728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1778), 19, + ACTIONS(579), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58510,10 +58748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36030] = 3, + [36265] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1766), 10, + ACTIONS(577), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58524,7 +58762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1764), 19, + ACTIONS(579), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58544,32 +58782,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36067] = 11, + [36302] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2107), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2113), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, - anon_sym_STAR, ACTIONS(2115), 1, + anon_sym_STAR, + ACTIONS(2119), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2121), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(2127), 1, anon_sym_RBRACE, - STATE(1005), 1, + STATE(1039), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1546), 1, sym_generic_type_with_turbofish, - STATE(1401), 5, + STATE(1425), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2117), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58585,32 +58823,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36119] = 11, + [36354] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2107), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2113), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, - anon_sym_STAR, ACTIONS(2115), 1, + anon_sym_STAR, + ACTIONS(2119), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2121), 1, sym_identifier, - ACTIONS(2125), 1, + ACTIONS(2129), 1, anon_sym_RBRACE, - STATE(1005), 1, + STATE(1039), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1546), 1, sym_generic_type_with_turbofish, - STATE(1401), 5, + STATE(1425), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2117), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58626,30 +58864,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36171] = 10, + [36406] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2107), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2113), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, + ACTIONS(2115), 1, anon_sym_STAR, + ACTIONS(2119), 1, + anon_sym_default, + ACTIONS(2121), 1, + sym_identifier, + STATE(1039), 1, + sym_scoped_identifier, + STATE(1546), 1, + sym_generic_type_with_turbofish, + STATE(1580), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2117), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36455] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2107), 1, + anon_sym_LBRACE, + ACTIONS(2113), 1, + anon_sym_COLON_COLON, ACTIONS(2115), 1, + anon_sym_STAR, + ACTIONS(2119), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2121), 1, sym_identifier, - STATE(1005), 1, + STATE(1039), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1546), 1, sym_generic_type_with_turbofish, - STATE(1401), 5, + STATE(1587), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2117), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58665,69 +58942,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36220] = 10, + [36504] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2107), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2113), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, - anon_sym_STAR, ACTIONS(2115), 1, - anon_sym_default, - ACTIONS(2117), 1, - sym_identifier, - STATE(1005), 1, - sym_scoped_identifier, - STATE(1518), 1, - sym_generic_type_with_turbofish, - STATE(1522), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(2113), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [36269] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2103), 1, - anon_sym_LBRACE, - ACTIONS(2109), 1, - anon_sym_COLON_COLON, - ACTIONS(2111), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2119), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2121), 1, sym_identifier, - STATE(1005), 1, + STATE(1039), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1546), 1, sym_generic_type_with_turbofish, - STATE(1575), 5, + STATE(1425), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2117), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58743,30 +58981,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36318] = 10, + [36553] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2107), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2113), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, - anon_sym_STAR, ACTIONS(2115), 1, + anon_sym_STAR, + ACTIONS(2119), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2121), 1, sym_identifier, - STATE(1005), 1, + STATE(1039), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1546), 1, sym_generic_type_with_turbofish, - STATE(1572), 5, + STATE(1549), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2117), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58782,30 +59020,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36367] = 10, + [36602] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2107), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(2113), 1, anon_sym_COLON_COLON, - ACTIONS(2111), 1, - anon_sym_STAR, ACTIONS(2115), 1, + anon_sym_STAR, + ACTIONS(2119), 1, anon_sym_default, - ACTIONS(2117), 1, + ACTIONS(2121), 1, sym_identifier, - STATE(1005), 1, + STATE(1039), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1546), 1, sym_generic_type_with_turbofish, - STATE(1519), 5, + STATE(1520), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2113), 15, + ACTIONS(2117), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58821,19 +59059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36416] = 5, + [36651] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2127), 1, + ACTIONS(2131), 1, anon_sym_POUND, - STATE(821), 2, + STATE(825), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, ACTIONS(617), 3, anon_sym_COLON_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1488), 19, + ACTIONS(1490), 19, anon_sym_impl, anon_sym_const, anon_sym_u8, @@ -58853,15 +59091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_identifier, sym_super, - [36453] = 3, + [36688] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 4, + ACTIONS(1252), 4, anon_sym_POUND, anon_sym_COLON_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1218), 19, + ACTIONS(1254), 19, anon_sym_impl, anon_sym_const, anon_sym_u8, @@ -58881,24 +59119,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_identifier, sym_super, - [36484] = 9, + [36719] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1853), 1, + ACTIONS(1841), 1, anon_sym_COLON_COLON, - ACTIONS(1861), 1, + ACTIONS(1849), 1, anon_sym_default, - ACTIONS(2130), 1, + ACTIONS(2134), 1, sym_identifier, - STATE(1258), 1, + STATE(1184), 1, sym_generic_type, - STATE(1260), 1, + STATE(1187), 1, sym_generic_type_with_turbofish, - STATE(1445), 1, + STATE(1344), 1, sym_scoped_type_identifier, - STATE(1503), 1, + STATE(1623), 1, sym_scoped_identifier, - ACTIONS(1855), 15, + ACTIONS(1843), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58914,22 +59152,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36526] = 8, + [36761] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1484), 1, + STATE(1480), 1, sym_attribute, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58945,22 +59183,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36565] = 8, + [36800] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1523), 1, + STATE(1507), 1, sym_attribute, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58976,22 +59214,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36604] = 8, + [36839] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1505), 1, - sym_attribute, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + STATE(1570), 1, + sym_attribute, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59007,22 +59245,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36643] = 8, + [36878] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - STATE(1592), 1, + STATE(1629), 1, sym_attribute, - ACTIONS(2132), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59038,22 +59276,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36682] = 8, + [36917] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1507), 1, + STATE(1501), 1, sym_attribute, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59069,22 +59307,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36721] = 8, + [36956] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1479), 1, + STATE(1522), 1, sym_attribute, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59100,22 +59338,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36760] = 8, + [36995] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1533), 1, - sym_generic_type_with_turbofish, - STATE(1536), 1, + STATE(1482), 1, sym_attribute, - ACTIONS(2132), 15, + STATE(1538), 1, + sym_generic_type_with_turbofish, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59131,22 +59369,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36799] = 8, + [37034] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1475), 1, + STATE(1497), 1, sym_attribute, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59162,22 +59400,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36838] = 8, + [37073] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1472), 1, + STATE(1476), 1, sym_attribute, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59193,22 +59431,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36877] = 8, + [37112] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1492), 1, + STATE(1512), 1, sym_attribute, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59224,22 +59462,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36916] = 8, + [37151] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(942), 1, + ACTIONS(840), 1, anon_sym_COLON_COLON, - ACTIONS(2134), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2136), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(968), 1, + STATE(967), 1, sym_scoped_identifier, - STATE(1502), 1, - sym_attribute, - STATE(1533), 1, + STATE(1538), 1, sym_generic_type_with_turbofish, - ACTIONS(2132), 15, + STATE(1540), 1, + sym_attribute, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59255,20 +59493,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36955] = 7, + [37190] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2138), 1, - anon_sym_COLON_COLON, ACTIONS(2142), 1, + anon_sym_COLON_COLON, + ACTIONS(2146), 1, anon_sym_default, - ACTIONS(2144), 1, + ACTIONS(2148), 1, sym_identifier, - STATE(1338), 1, + STATE(1361), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1546), 1, sym_generic_type_with_turbofish, - ACTIONS(2140), 15, + ACTIONS(2144), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59284,20 +59522,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36991] = 7, + [37226] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2138), 1, + ACTIONS(2142), 1, anon_sym_COLON_COLON, - ACTIONS(2148), 1, + ACTIONS(2152), 1, anon_sym_default, - ACTIONS(2150), 1, + ACTIONS(2154), 1, sym_identifier, - STATE(1375), 1, + STATE(1468), 1, sym_scoped_identifier, - STATE(1518), 1, + STATE(1546), 1, sym_generic_type_with_turbofish, - ACTIONS(2146), 15, + ACTIONS(2150), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59313,17 +59551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [37027] = 4, + [37262] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, + ACTIONS(1560), 1, anon_sym_COLON, - ACTIONS(1542), 4, + ACTIONS(1558), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2152), 11, + ACTIONS(2156), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59335,17 +59573,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37053] = 4, + [37288] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 1, + ACTIONS(1534), 1, anon_sym_COLON, - ACTIONS(1524), 4, + ACTIONS(1532), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2154), 11, + ACTIONS(2158), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59357,17 +59595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37079] = 4, + [37314] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 1, + ACTIONS(1530), 1, anon_sym_COLON, - ACTIONS(1554), 4, + ACTIONS(1528), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2156), 11, + ACTIONS(2160), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59379,17 +59617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37105] = 4, + [37340] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 1, + ACTIONS(1556), 1, anon_sym_COLON, - ACTIONS(1528), 4, + ACTIONS(1554), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2158), 11, + ACTIONS(2162), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59401,24 +59639,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37131] = 9, + [37366] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2160), 1, - anon_sym_LBRACE, ACTIONS(2164), 1, + anon_sym_LBRACE, + ACTIONS(2168), 1, anon_sym_COLON, - ACTIONS(2166), 1, + ACTIONS(2170), 1, anon_sym_BANG, - ACTIONS(2168), 1, + ACTIONS(2172), 1, anon_sym_COLON_COLON, - ACTIONS(2170), 1, + ACTIONS(2174), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - STATE(865), 1, + STATE(866), 1, sym_type_arguments, - ACTIONS(2162), 7, + ACTIONS(2166), 7, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59426,12 +59664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [37165] = 4, + [37400] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(1556), 1, anon_sym_COLON, - ACTIONS(2156), 2, + ACTIONS(2162), 2, anon_sym_LBRACE, anon_sym_LT2, ACTIONS(1554), 10, @@ -59445,7 +59683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37188] = 3, + [37423] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1556), 1, @@ -59463,15 +59701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37209] = 4, + [37444] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 1, + ACTIONS(1560), 1, anon_sym_COLON, - ACTIONS(2154), 2, + ACTIONS(2156), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1524), 10, + ACTIONS(1558), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59482,26 +59720,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37232] = 4, + [37467] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, + ACTIONS(1560), 1, anon_sym_COLON, - ACTIONS(2152), 2, + ACTIONS(1558), 12, anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(1542), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_BANG, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37255] = 3, + [37488] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1530), 1, @@ -59519,65 +59756,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37276] = 4, + [37509] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 1, + ACTIONS(1534), 1, anon_sym_COLON, - ACTIONS(2158), 2, + ACTIONS(1532), 12, anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(1528), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_BANG, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37299] = 3, + [37530] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, + ACTIONS(1534), 1, anon_sym_COLON, - ACTIONS(1542), 12, + ACTIONS(2158), 2, anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1532), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_BANG, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37320] = 3, + [37553] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1526), 1, + ACTIONS(1530), 1, anon_sym_COLON, - ACTIONS(1524), 12, + ACTIONS(2160), 2, anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1528), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_BANG, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37341] = 2, + [37576] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1568), 12, + ACTIONS(2178), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59590,10 +59828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37359] = 2, + [37594] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(478), 12, + ACTIONS(501), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59606,20 +59844,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [37377] = 7, + [37612] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(537), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_nopanic, + [37630] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2182), 1, anon_sym_COLON, - ACTIONS(2178), 1, + ACTIONS(2184), 1, anon_sym_BANG, - ACTIONS(2180), 1, + ACTIONS(2186), 1, anon_sym_COLON_COLON, - STATE(861), 1, + STATE(869), 1, sym_type_arguments, - ACTIONS(2174), 7, + ACTIONS(2180), 7, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59627,10 +59881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [37405] = 2, + [37658] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(486), 12, + ACTIONS(497), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59643,53 +59897,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [37423] = 2, + [37676] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(529), 12, + ACTIONS(2188), 1, + anon_sym_impl, + ACTIONS(2190), 1, + anon_sym_trait, + ACTIONS(2192), 1, + anon_sym_type, + ACTIONS(2194), 1, + anon_sym_const, + ACTIONS(2196), 1, + anon_sym_mod, + ACTIONS(2198), 1, + anon_sym_struct, + ACTIONS(2200), 1, + anon_sym_enum, + ACTIONS(2202), 1, + anon_sym_fn, + ACTIONS(2204), 1, + anon_sym_use, + ACTIONS(2206), 1, + anon_sym_extern, + STATE(1219), 1, + sym_extern, + STATE(1266), 1, + sym_function, + [37716] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1572), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT, - anon_sym_PIPE, anon_sym_nopanic, - [37441] = 13, + [37734] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2182), 1, + ACTIONS(2202), 1, + anon_sym_fn, + ACTIONS(2206), 1, + anon_sym_extern, + ACTIONS(2208), 1, anon_sym_impl, - ACTIONS(2184), 1, + ACTIONS(2210), 1, anon_sym_trait, - ACTIONS(2186), 1, + ACTIONS(2212), 1, anon_sym_type, - ACTIONS(2188), 1, + ACTIONS(2214), 1, anon_sym_const, - ACTIONS(2190), 1, + ACTIONS(2216), 1, anon_sym_mod, - ACTIONS(2192), 1, + ACTIONS(2218), 1, anon_sym_struct, - ACTIONS(2194), 1, + ACTIONS(2220), 1, anon_sym_enum, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(2198), 1, + ACTIONS(2222), 1, anon_sym_use, - ACTIONS(2200), 1, - anon_sym_extern, - STATE(1185), 1, - sym_function, - STATE(1198), 1, + STATE(1147), 1, sym_extern, - [37481] = 2, + STATE(1248), 1, + sym_function, + [37774] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1634), 12, + ACTIONS(1602), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59702,10 +59983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37499] = 2, + [37792] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 12, + ACTIONS(549), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59718,37 +59999,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [37517] = 13, + [37810] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(2200), 1, - anon_sym_extern, - ACTIONS(2202), 1, - anon_sym_impl, - ACTIONS(2204), 1, - anon_sym_trait, - ACTIONS(2206), 1, - anon_sym_type, - ACTIONS(2208), 1, - anon_sym_const, - ACTIONS(2210), 1, - anon_sym_mod, - ACTIONS(2212), 1, - anon_sym_struct, - ACTIONS(2214), 1, - anon_sym_enum, - ACTIONS(2216), 1, - anon_sym_use, - STATE(1179), 1, - sym_extern, - STATE(1244), 1, - sym_function, - [37557] = 2, + ACTIONS(2168), 1, + anon_sym_COLON, + ACTIONS(2170), 1, + anon_sym_BANG, + ACTIONS(2174), 1, + anon_sym_LPAREN, + ACTIONS(2224), 1, + anon_sym_COLON_COLON, + ACTIONS(2166), 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [37835] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2226), 1, + anon_sym_RBRACK, + ACTIONS(2160), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1528), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [37856] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2218), 12, + ACTIONS(2229), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59757,20 +60047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_implicits, anon_sym_COLON_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37575] = 4, + [37873] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2220), 1, + ACTIONS(2231), 1, anon_sym_RBRACK, - ACTIONS(2152), 3, + ACTIONS(2158), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1542), 7, + ACTIONS(1532), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -59778,10 +60067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [37596] = 2, + [37894] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2223), 11, + ACTIONS(2234), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59793,12 +60082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37613] = 3, + [37911] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2227), 1, - anon_sym_COLON_COLON, - ACTIONS(2225), 10, + ACTIONS(2236), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59806,51 +60093,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, + anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37632] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2231), 1, - anon_sym_LPAREN, - ACTIONS(2229), 10, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_use, - anon_sym_extern, - [37651] = 9, + [37928] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2233), 1, + ACTIONS(2238), 1, anon_sym_RBRACE, - ACTIONS(2235), 1, + ACTIONS(2240), 1, anon_sym_POUND, - ACTIONS(2237), 1, + ACTIONS(2242), 1, anon_sym_COMMA, - ACTIONS(2239), 1, + ACTIONS(2244), 1, anon_sym_DOT_DOT, - ACTIONS(2241), 1, + ACTIONS(2246), 1, sym_numeric_literal, - ACTIONS(2243), 1, + ACTIONS(2248), 1, sym_identifier, - STATE(1006), 2, + STATE(1032), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1283), 3, + STATE(1281), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [37682] = 2, + [37959] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2245), 11, + ACTIONS(2252), 1, + anon_sym_COLON_COLON, + ACTIONS(2250), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59858,39 +60132,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, - anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37699] = 6, + [37978] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2164), 1, - anon_sym_COLON, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2247), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 7, + ACTIONS(2162), 11, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_implicits, anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + anon_sym_LT2, + [37995] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2256), 1, + anon_sym_LPAREN, + ACTIONS(2254), 10, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [38014] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2240), 1, + anon_sym_POUND, + ACTIONS(2244), 1, + anon_sym_DOT_DOT, + ACTIONS(2246), 1, + sym_numeric_literal, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2258), 1, + anon_sym_RBRACE, + ACTIONS(2260), 1, + anon_sym_COMMA, + STATE(1032), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1287), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38045] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2262), 1, + anon_sym_RBRACK, + ACTIONS(2162), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1554), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_PIPE, - [37724] = 4, + anon_sym_EQ_GT, + anon_sym_if, + [38066] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2249), 1, + ACTIONS(2265), 1, anon_sym_RBRACK, - ACTIONS(2154), 3, + ACTIONS(2156), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1524), 7, + ACTIONS(1558), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -59898,12 +60222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [37745] = 3, + [38087] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2254), 1, + ACTIONS(2268), 1, anon_sym_COLON_COLON, - ACTIONS(2252), 10, + ACTIONS(2250), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59914,10 +60238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37764] = 2, + [38106] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2156), 11, + ACTIONS(2272), 1, + anon_sym_COLON_COLON, + ACTIONS(2270), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59928,35 +60254,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, + [38125] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2164), 1, + anon_sym_LBRACE, + ACTIONS(2166), 1, + anon_sym_PIPE, + ACTIONS(2168), 1, + anon_sym_COLON, + ACTIONS(2170), 1, + anon_sym_BANG, + ACTIONS(2174), 1, + anon_sym_LPAREN, + ACTIONS(2176), 1, anon_sym_LT2, - [37781] = 9, + ACTIONS(2276), 1, + anon_sym_COLON_COLON, + STATE(866), 1, + sym_type_arguments, + ACTIONS(2274), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38157] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_DOT_DOT, - ACTIONS(2241), 1, - sym_numeric_literal, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2256), 1, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2276), 1, + anon_sym_COLON_COLON, + ACTIONS(2278), 1, + anon_sym_BANG, + STATE(866), 1, + sym_type_arguments, + ACTIONS(2274), 6, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(2258), 1, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1006), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1319), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [37812] = 3, + anon_sym_RPAREN, + [38181] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, - anon_sym_COLON_COLON, - ACTIONS(2225), 10, + ACTIONS(2280), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59967,44 +60308,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37831] = 4, + [38197] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2262), 1, - anon_sym_RBRACK, - ACTIONS(2156), 3, + ACTIONS(2282), 10, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LT2, - ACTIONS(1554), 7, - anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [37852] = 4, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38213] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2265), 1, - anon_sym_RBRACK, - ACTIONS(2158), 3, + ACTIONS(2164), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LT2, - ACTIONS(1528), 7, + ACTIONS(2170), 1, anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(2174), 1, anon_sym_LPAREN, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2274), 1, + anon_sym_SEMI, + ACTIONS(2284), 1, + anon_sym_RBRACK, + ACTIONS(2287), 1, + anon_sym_COLON_COLON, + STATE(866), 1, + sym_type_arguments, + ACTIONS(2166), 2, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [37873] = 2, + [38245] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2268), 11, + ACTIONS(2289), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60012,14 +60355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, - anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37890] = 2, + [38261] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2270), 10, + ACTIONS(2291), 10, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -60030,24 +60372,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_use, anon_sym_extern, - [37906] = 2, + [38277] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2272), 10, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_use, - anon_sym_extern, - [37922] = 2, + ACTIONS(2293), 1, + anon_sym_RBRACE, + ACTIONS(2295), 1, + anon_sym_POUND, + ACTIONS(2297), 1, + anon_sym_COMMA, + ACTIONS(2299), 1, + anon_sym_pub, + ACTIONS(2301), 1, + sym_identifier, + STATE(1315), 1, + sym_enum_variant, + STATE(1429), 1, + sym_field_declaration, + STATE(1521), 1, + sym_visibility_modifier, + STATE(940), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38309] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2274), 10, + ACTIONS(2303), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60058,66 +60408,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37938] = 8, + [38325] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, + ACTIONS(2240), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(2244), 1, anon_sym_DOT_DOT, - ACTIONS(2241), 1, + ACTIONS(2246), 1, sym_numeric_literal, - ACTIONS(2243), 1, + ACTIONS(2248), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2305), 1, anon_sym_RBRACE, - STATE(1006), 2, + STATE(1032), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1402), 3, + STATE(1417), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [37966] = 2, + [38353] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2278), 10, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_use, - anon_sym_extern, - [37982] = 10, + ACTIONS(2240), 1, + anon_sym_POUND, + ACTIONS(2244), 1, + anon_sym_DOT_DOT, + ACTIONS(2246), 1, + sym_numeric_literal, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2307), 1, + anon_sym_RBRACE, + STATE(1032), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1417), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38381] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2280), 1, - anon_sym_RBRACE, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_COMMA, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2301), 1, sym_identifier, - STATE(1307), 1, + ACTIONS(2309), 1, + anon_sym_RBRACE, + ACTIONS(2311), 1, + anon_sym_COMMA, + STATE(1237), 1, sym_enum_variant, - STATE(1443), 1, + STATE(1429), 1, sym_field_declaration, - STATE(1500), 1, + STATE(1521), 1, sym_visibility_modifier, - STATE(920), 2, + STATE(949), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38014] = 2, + [38413] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2225), 10, + ACTIONS(2313), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60128,78 +60484,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38030] = 6, + [38429] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2292), 1, - anon_sym_BANG, - ACTIONS(2294), 1, - anon_sym_COLON_COLON, - STATE(865), 1, + STATE(868), 1, sym_type_arguments, - ACTIONS(2290), 6, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - [38054] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2296), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_implicits, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_nopanic, - [38070] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2298), 10, + ACTIONS(2250), 8, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, anon_sym_RPAREN, - anon_sym_GT, anon_sym_nopanic, - [38086] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - ACTIONS(2300), 1, - anon_sym_RBRACE, - ACTIONS(2302), 1, - anon_sym_COMMA, - STATE(1181), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(913), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38118] = 2, + [38449] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2304), 10, + ACTIONS(2315), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60210,30 +60514,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38134] = 8, + [38465] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, + ACTIONS(2240), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(2244), 1, anon_sym_DOT_DOT, - ACTIONS(2241), 1, + ACTIONS(2246), 1, sym_numeric_literal, - ACTIONS(2243), 1, + ACTIONS(2248), 1, sym_identifier, - ACTIONS(2306), 1, + ACTIONS(2317), 1, anon_sym_RBRACE, - STATE(1006), 2, + STATE(1032), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1402), 3, + STATE(1417), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [38162] = 2, + [38493] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2308), 10, + ACTIONS(2250), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60244,32 +60548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38178] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2160), 1, - anon_sym_LBRACE, - ACTIONS(2162), 1, - anon_sym_PIPE, - ACTIONS(2164), 1, - anon_sym_COLON, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2294), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2290), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [38210] = 2, + [38509] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2310), 10, + ACTIONS(2319), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60280,174 +60562,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38226] = 8, + [38525] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, + ACTIONS(2240), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(2244), 1, anon_sym_DOT_DOT, - ACTIONS(2241), 1, + ACTIONS(2246), 1, sym_numeric_literal, - ACTIONS(2243), 1, + ACTIONS(2248), 1, sym_identifier, - ACTIONS(2312), 1, + ACTIONS(2321), 1, anon_sym_RBRACE, - STATE(1006), 2, + STATE(1032), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1402), 3, + STATE(1417), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [38254] = 8, + [38553] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_DOT_DOT, - ACTIONS(2241), 1, - sym_numeric_literal, - ACTIONS(2243), 1, - sym_identifier, - ACTIONS(2314), 1, - anon_sym_RBRACE, - STATE(1006), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1402), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [38282] = 10, + ACTIONS(2323), 10, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [38569] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2160), 1, - anon_sym_LBRACE, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2290), 1, - anon_sym_SEMI, - ACTIONS(2316), 1, - anon_sym_RBRACK, - ACTIONS(2319), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2162), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [38314] = 4, + ACTIONS(2325), 10, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [38585] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - STATE(874), 1, - sym_type_arguments, - ACTIONS(2225), 8, - anon_sym_LBRACE, + ACTIONS(2295), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_pub, + ACTIONS(2327), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(2329), 1, anon_sym_COMMA, - anon_sym_implicits, - anon_sym_RPAREN, - anon_sym_nopanic, - [38334] = 2, + ACTIONS(2331), 1, + sym_identifier, + STATE(1313), 1, + sym_field_declaration, + STATE(1535), 1, + sym_visibility_modifier, + STATE(965), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38614] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2321), 10, - anon_sym_LBRACE, + ACTIONS(489), 9, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, anon_sym_RPAREN, anon_sym_GT, - anon_sym_nopanic, - [38350] = 8, + anon_sym_PIPE, + [38629] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2323), 1, - anon_sym_LBRACE, - ACTIONS(2325), 1, + ACTIONS(2170), 1, anon_sym_BANG, - ACTIONS(2327), 1, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2276), 1, anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_LPAREN, - STATE(865), 1, + STATE(866), 1, sym_type_arguments, - ACTIONS(2162), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [38377] = 9, + ACTIONS(2274), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_nopanic, + [38652] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2160), 1, + ACTIONS(2164), 1, anon_sym_LBRACE, - ACTIONS(2162), 1, - anon_sym_PIPE, ACTIONS(2166), 1, - anon_sym_BANG, + anon_sym_PIPE, ACTIONS(2170), 1, + anon_sym_BANG, + ACTIONS(2174), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2331), 1, + ACTIONS(2333), 1, anon_sym_COLON_COLON, - STATE(865), 1, + STATE(866), 1, sym_type_arguments, - ACTIONS(2316), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [38406] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(494), 9, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, + ACTIONS(2284), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - [38421] = 9, + [38681] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_RBRACE, - ACTIONS(2335), 1, - anon_sym_COMMA, - ACTIONS(2337), 1, + ACTIONS(2301), 1, sym_identifier, - STATE(1306), 1, + ACTIONS(2335), 1, + anon_sym_RBRACE, + STATE(1406), 1, + sym_enum_variant, + STATE(1429), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1521), 1, sym_visibility_modifier, - STATE(961), 2, + STATE(926), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38450] = 2, + [38710] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(470), 9, + ACTIONS(493), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60457,213 +60713,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_PIPE, - [38465] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2294), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2290), 5, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_implicits, - anon_sym_nopanic, - [38488] = 9, + [38725] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2301), 1, sym_identifier, - ACTIONS(2339), 1, + ACTIONS(2337), 1, anon_sym_RBRACE, - STATE(1350), 1, + STATE(1406), 1, sym_enum_variant, - STATE(1443), 1, + STATE(1429), 1, sym_field_declaration, - STATE(1500), 1, + STATE(1521), 1, sym_visibility_modifier, - STATE(947), 2, + STATE(926), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38517] = 9, + [38754] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2301), 1, sym_identifier, - ACTIONS(2341), 1, + ACTIONS(2339), 1, anon_sym_RBRACE, - STATE(1350), 1, + STATE(1406), 1, sym_enum_variant, - STATE(1443), 1, + STATE(1429), 1, sym_field_declaration, - STATE(1500), 1, + STATE(1521), 1, sym_visibility_modifier, - STATE(947), 2, + STATE(926), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38546] = 9, + [38783] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2301), 1, sym_identifier, - ACTIONS(2343), 1, + ACTIONS(2341), 1, anon_sym_RBRACE, - STATE(1350), 1, + STATE(1406), 1, sym_enum_variant, - STATE(1443), 1, + STATE(1429), 1, sym_field_declaration, - STATE(1500), 1, + STATE(1521), 1, sym_visibility_modifier, - STATE(947), 2, + STATE(926), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38575] = 9, + [38812] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2301), 1, sym_identifier, - ACTIONS(2345), 1, + ACTIONS(2343), 1, anon_sym_RBRACE, - ACTIONS(2347), 1, - anon_sym_COMMA, - STATE(1188), 1, + STATE(1406), 1, + sym_enum_variant, + STATE(1429), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1521), 1, sym_visibility_modifier, - STATE(971), 2, + STATE(926), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38604] = 9, + [38841] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2331), 1, sym_identifier, - ACTIONS(2349), 1, + ACTIONS(2345), 1, anon_sym_RBRACE, - STATE(1350), 1, - sym_enum_variant, - STATE(1443), 1, + ACTIONS(2347), 1, + anon_sym_COMMA, + STATE(1252), 1, sym_field_declaration, - STATE(1500), 1, + STATE(1535), 1, sym_visibility_modifier, - STATE(947), 2, + STATE(961), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38633] = 9, + [38870] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2349), 1, + anon_sym_LBRACE, ACTIONS(2351), 1, - anon_sym_RBRACE, - STATE(1350), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(947), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38662] = 2, + anon_sym_BANG, + ACTIONS(2353), 1, + anon_sym_COLON_COLON, + ACTIONS(2355), 1, + anon_sym_LPAREN, + STATE(866), 1, + sym_type_arguments, + ACTIONS(2166), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [38897] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(474), 9, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2168), 1, anon_sym_COLON, + ACTIONS(2357), 1, + anon_sym_COLON_COLON, + ACTIONS(2166), 7, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT, anon_sym_PIPE, - [38677] = 7, + [38916] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, + ACTIONS(2240), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(2244), 1, anon_sym_DOT_DOT, - ACTIONS(2241), 1, + ACTIONS(2246), 1, sym_numeric_literal, - ACTIONS(2243), 1, + ACTIONS(2248), 1, sym_identifier, - STATE(1006), 2, + STATE(1032), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1402), 3, + STATE(1417), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [38702] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2164), 1, - anon_sym_COLON, - ACTIONS(2353), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 7, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [38721] = 9, + [38941] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2301), 1, sym_identifier, - ACTIONS(2355), 1, + ACTIONS(2359), 1, anon_sym_RBRACE, - STATE(1350), 1, + STATE(1406), 1, sym_enum_variant, - STATE(1443), 1, + STATE(1429), 1, sym_field_declaration, - STATE(1500), 1, + STATE(1521), 1, sym_visibility_modifier, - STATE(947), 2, + STATE(926), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38750] = 2, + [38970] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2357), 8, + ACTIONS(485), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60671,29 +60896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_GT, anon_sym_PIPE, - [38764] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - STATE(1298), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(995), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38790] = 2, + [38985] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2359), 8, + ACTIONS(2361), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60702,10 +60910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38804] = 2, + [38999] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2361), 8, + ACTIONS(2363), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60714,10 +60922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38818] = 2, + [39013] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2363), 8, + ACTIONS(2365), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60726,22 +60934,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38832] = 2, + [39027] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2365), 8, + ACTIONS(2295), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_pub, + ACTIONS(2331), 1, + sym_identifier, + ACTIONS(2367), 1, anon_sym_RBRACE, + STATE(1407), 1, + sym_field_declaration, + STATE(1535), 1, + sym_visibility_modifier, + STATE(975), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39053] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2170), 1, + anon_sym_BANG, + ACTIONS(2369), 1, + anon_sym_COLON_COLON, + ACTIONS(2371), 1, + anon_sym_LT2, + STATE(866), 1, + sym_type_arguments, + ACTIONS(2274), 4, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [38846] = 2, + anon_sym_GT, + [39075] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2367), 8, + ACTIONS(2373), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60750,60 +60980,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38860] = 8, + [39089] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2331), 1, sym_identifier, - ACTIONS(2369), 1, + ACTIONS(2375), 1, anon_sym_RBRACE, - STATE(1359), 1, + STATE(1407), 1, sym_field_declaration, - STATE(1589), 1, - sym_visibility_modifier, - STATE(970), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38886] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - STATE(1301), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, + STATE(1535), 1, sym_visibility_modifier, - STATE(995), 2, + STATE(975), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38912] = 4, + [39115] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2156), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2262), 2, + ACTIONS(2377), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1554), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, anon_sym_PIPE, - [38930] = 2, + [39129] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 8, + ACTIONS(2379), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60812,10 +61022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38944] = 2, + [39143] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2373), 8, + ACTIONS(2381), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60824,24 +61034,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38958] = 4, + [39157] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2154), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2249), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1524), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - [38976] = 2, + ACTIONS(2295), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_pub, + ACTIONS(2301), 1, + sym_identifier, + STATE(1377), 1, + sym_enum_variant, + STATE(1429), 1, + sym_field_declaration, + STATE(1521), 1, + sym_visibility_modifier, + STATE(999), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39183] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2375), 8, + ACTIONS(2383), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60850,24 +61064,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38990] = 4, + [39197] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2158), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2265), 2, + ACTIONS(2385), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1528), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, anon_sym_PIPE, - [39008] = 2, + [39211] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2377), 8, + ACTIONS(2387), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60876,28 +61088,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39022] = 8, + [39225] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2331), 1, sym_identifier, - ACTIONS(2379), 1, + ACTIONS(2389), 1, anon_sym_RBRACE, - STATE(1359), 1, + STATE(1407), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1535), 1, sym_visibility_modifier, - STATE(970), 2, + STATE(975), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39048] = 2, + [39251] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2381), 8, + ACTIONS(2391), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60906,24 +61118,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39062] = 4, + [39265] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2152), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2220), 2, + ACTIONS(2393), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1542), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, anon_sym_PIPE, - [39080] = 2, + [39279] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2383), 8, + ACTIONS(2395), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60932,10 +61142,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39094] = 2, + [39293] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2385), 8, + ACTIONS(2295), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_pub, + ACTIONS(2331), 1, + sym_identifier, + ACTIONS(2397), 1, + anon_sym_RBRACE, + STATE(1407), 1, + sym_field_declaration, + STATE(1535), 1, + sym_visibility_modifier, + STATE(975), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39319] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2399), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60944,10 +61172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39108] = 2, + [39333] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2387), 8, + ACTIONS(2401), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60956,10 +61184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39122] = 2, + [39347] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2389), 8, + ACTIONS(2403), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60968,10 +61196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39136] = 2, + [39361] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2391), 8, + ACTIONS(2405), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60980,28 +61208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39150] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2337), 1, - sym_identifier, - ACTIONS(2393), 1, - anon_sym_RBRACE, - STATE(1359), 1, - sym_field_declaration, - STATE(1589), 1, - sym_visibility_modifier, - STATE(970), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39176] = 2, + [39375] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2395), 8, + ACTIONS(2407), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61010,28 +61220,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39190] = 8, + [39389] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2301), 1, sym_identifier, - ACTIONS(2397), 1, - anon_sym_RBRACE, - STATE(1359), 1, + STATE(1337), 1, + sym_enum_variant, + STATE(1429), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1521), 1, sym_visibility_modifier, - STATE(970), 2, + STATE(999), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39216] = 2, + [39415] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2399), 8, + ACTIONS(2409), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61040,28 +61250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39230] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2288), 1, - sym_identifier, - STATE(1350), 1, - sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(947), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39256] = 2, + [39429] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2401), 8, + ACTIONS(2411), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61070,10 +61262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39270] = 2, + [39443] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2403), 8, + ACTIONS(2413), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61082,28 +61274,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39284] = 8, + [39457] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2337), 1, - sym_identifier, - ACTIONS(2405), 1, + ACTIONS(2415), 8, anon_sym_RBRACE, - STATE(1359), 1, - sym_field_declaration, - STATE(1589), 1, - sym_visibility_modifier, - STATE(970), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39310] = 2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [39471] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2407), 8, + ACTIONS(2417), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61112,10 +61298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39324] = 2, + [39485] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2409), 8, + ACTIONS(2419), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61124,10 +61310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39338] = 2, + [39499] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2409), 8, + ACTIONS(2158), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2231), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1532), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [39517] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2421), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61136,62 +61336,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39352] = 8, + [39531] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2288), 1, + ACTIONS(2301), 1, sym_identifier, - STATE(1418), 1, + STATE(1224), 1, sym_enum_variant, - STATE(1443), 1, - sym_field_declaration, - STATE(1500), 1, - sym_visibility_modifier, - STATE(995), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39378] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2337), 1, - sym_identifier, - ACTIONS(2411), 1, - anon_sym_RBRACE, - STATE(1359), 1, + STATE(1429), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1521), 1, sym_visibility_modifier, - STATE(970), 2, + STATE(999), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39404] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2413), 1, - anon_sym_COLON_COLON, - ACTIONS(2415), 1, - anon_sym_LT2, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2290), 4, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [39426] = 2, + [39557] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2417), 8, + ACTIONS(2423), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61200,10 +61366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39440] = 2, + [39571] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2419), 8, + ACTIONS(2399), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61212,22 +61378,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39454] = 2, + [39585] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2421), 8, + ACTIONS(2295), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_pub, + ACTIONS(2331), 1, + sym_identifier, + ACTIONS(2425), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, + STATE(1407), 1, + sym_field_declaration, + STATE(1535), 1, + sym_visibility_modifier, + STATE(975), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39611] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2295), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_pub, + ACTIONS(2331), 1, + sym_identifier, + ACTIONS(2427), 1, + anon_sym_RBRACE, + STATE(1407), 1, + sym_field_declaration, + STATE(1535), 1, + sym_visibility_modifier, + STATE(975), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39637] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2160), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2226), 2, anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(1528), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_PIPE, - [39468] = 2, + [39655] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 8, + ACTIONS(2429), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61236,10 +61440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39482] = 2, + [39669] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2423), 8, + ACTIONS(2166), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61248,22 +61452,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39496] = 2, + [39683] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2425), 8, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, + ACTIONS(2156), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2265), 2, anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(1558), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_PIPE, - [39510] = 2, + [39701] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2427), 8, + ACTIONS(2431), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61272,369 +61478,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39524] = 5, + [39715] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2429), 1, + ACTIONS(2162), 2, anon_sym_LBRACE, - STATE(874), 1, - sym_type_arguments, - ACTIONS(2225), 4, - anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_LT2, + ACTIONS(2262), 2, anon_sym_COMMA, anon_sym_RPAREN, - [39543] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2431), 1, - anon_sym_LBRACE, - ACTIONS(2433), 1, - anon_sym_EQ, - ACTIONS(2435), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_RBRACK, - ACTIONS(2439), 1, + ACTIONS(1554), 4, + anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2441), 1, anon_sym_LPAREN, - STATE(1477), 1, - sym_delim_token_tree, - [39568] = 6, + anon_sym_PIPE, + [39733] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2295), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_pub, + ACTIONS(2301), 1, + sym_identifier, + STATE(1406), 1, + sym_enum_variant, + STATE(1429), 1, + sym_field_declaration, + STATE(1521), 1, + sym_visibility_modifier, + STATE(926), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39759] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2295), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_pub, + ACTIONS(2331), 1, + sym_identifier, + STATE(1222), 1, + sym_field_declaration, + STATE(1535), 1, + sym_visibility_modifier, + STATE(999), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39782] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2107), 1, + anon_sym_LBRACE, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2178), 1, - anon_sym_BANG, - ACTIONS(2443), 1, - anon_sym_COLON_COLON, - STATE(861), 1, + ACTIONS(2433), 1, + anon_sym_STAR, + STATE(854), 1, sym_type_arguments, - ACTIONS(2174), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [39589] = 6, + STATE(1163), 1, + sym_use_list, + ACTIONS(2435), 2, + sym_identifier, + sym_super, + [39805] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2107), 1, + anon_sym_LBRACE, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2178), 1, - anon_sym_BANG, - ACTIONS(2445), 1, - anon_sym_COLON_COLON, - STATE(861), 1, + ACTIONS(2437), 1, + anon_sym_STAR, + STATE(862), 1, sym_type_arguments, - ACTIONS(2174), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [39610] = 7, + STATE(1167), 1, + sym_use_list, + ACTIONS(2439), 2, + sym_identifier, + sym_super, + [39828] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2331), 1, sym_identifier, - STATE(1334), 1, + STATE(1407), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1535), 1, sym_visibility_modifier, - STATE(995), 2, + STATE(975), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39633] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2447), 1, - anon_sym_BANG, - ACTIONS(2449), 1, - anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - ACTIONS(2174), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [39654] = 7, + [39851] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, + ACTIONS(2295), 1, anon_sym_POUND, - ACTIONS(2286), 1, + ACTIONS(2299), 1, anon_sym_pub, - ACTIONS(2337), 1, + ACTIONS(2331), 1, sym_identifier, - STATE(1359), 1, + STATE(1311), 1, sym_field_declaration, - STATE(1589), 1, + STATE(1535), 1, sym_visibility_modifier, - STATE(970), 2, + STATE(999), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39677] = 7, + [39874] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2107), 1, anon_sym_LBRACE, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2451), 1, + ACTIONS(2437), 1, anon_sym_STAR, - STATE(859), 1, + STATE(860), 1, sym_type_arguments, - STATE(1219), 1, + STATE(1167), 1, sym_use_list, - ACTIONS(2453), 2, + ACTIONS(2439), 2, sym_identifier, sym_super, - [39700] = 8, + [39897] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2431), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - ACTIONS(2433), 1, + ACTIONS(2443), 1, anon_sym_EQ, - ACTIONS(2435), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2437), 1, + ACTIONS(2447), 1, anon_sym_RBRACK, + ACTIONS(2449), 1, + anon_sym_COLON_COLON, + ACTIONS(2451), 1, + anon_sym_LPAREN, + STATE(1561), 1, + sym_delim_token_tree, + [39922] = 8, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(2441), 1, + anon_sym_LBRACE, + ACTIONS(2443), 1, + anon_sym_EQ, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_RBRACK, + ACTIONS(2451), 1, anon_sym_LPAREN, - ACTIONS(2455), 1, + ACTIONS(2453), 1, anon_sym_COLON_COLON, - STATE(1477), 1, + STATE(1561), 1, sym_delim_token_tree, - [39725] = 8, + [39947] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2431), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - ACTIONS(2435), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2441), 1, + ACTIONS(2451), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2455), 1, anon_sym_EQ, - ACTIONS(2459), 1, + ACTIONS(2457), 1, anon_sym_RBRACK, - ACTIONS(2461), 1, + ACTIONS(2459), 1, anon_sym_COLON_COLON, - STATE(1478), 1, + STATE(1558), 1, sym_delim_token_tree, - [39750] = 7, + [39972] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, - anon_sym_LBRACE, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2463), 1, - anon_sym_STAR, - STATE(856), 1, - sym_type_arguments, - STATE(1205), 1, - sym_use_list, - ACTIONS(2465), 2, - sym_identifier, - sym_super, - [39773] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2431), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - ACTIONS(2433), 1, + ACTIONS(2443), 1, anon_sym_EQ, - ACTIONS(2435), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2437), 1, + ACTIONS(2447), 1, anon_sym_RBRACK, - ACTIONS(2441), 1, + ACTIONS(2451), 1, anon_sym_LPAREN, - ACTIONS(2467), 1, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - STATE(1477), 1, + STATE(1561), 1, sym_delim_token_tree, - [39798] = 7, + [39997] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, - anon_sym_LBRACE, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, + ACTIONS(2184), 1, + anon_sym_BANG, ACTIONS(2463), 1, - anon_sym_STAR, - STATE(850), 1, + anon_sym_COLON_COLON, + STATE(869), 1, sym_type_arguments, - STATE(1205), 1, - sym_use_list, - ACTIONS(2465), 2, - sym_identifier, - sym_super, - [39821] = 7, + ACTIONS(2180), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [40018] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2337), 1, - sym_identifier, - STATE(1425), 1, - sym_field_declaration, - STATE(1589), 1, - sym_visibility_modifier, - STATE(995), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39844] = 7, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2184), 1, + anon_sym_BANG, + ACTIONS(2465), 1, + anon_sym_COLON_COLON, + STATE(869), 1, + sym_type_arguments, + ACTIONS(2180), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [40039] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_pub, - ACTIONS(2337), 1, - sym_identifier, - STATE(1286), 1, - sym_field_declaration, - STATE(1589), 1, - sym_visibility_modifier, - STATE(995), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39867] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1554), 6, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2467), 1, anon_sym_BANG, + ACTIONS(2469), 1, anon_sym_COLON_COLON, - anon_sym_LPAREN, + STATE(869), 1, + sym_type_arguments, + ACTIONS(2180), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [39879] = 6, + [40060] = 5, ACTIONS(3), 1, sym_line_comment, + ACTIONS(2176), 1, + anon_sym_LT2, ACTIONS(2471), 1, - anon_sym_DASH_GT, - ACTIONS(2473), 1, - anon_sym_implicits, - ACTIONS(2475), 1, - anon_sym_nopanic, - STATE(1438), 1, - sym_nopanic, - ACTIONS(2469), 2, anon_sym_LBRACE, + STATE(868), 1, + sym_type_arguments, + ACTIONS(2250), 4, anon_sym_SEMI, - [39899] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2477), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 3, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_PIPE, - [39917] = 6, + anon_sym_RPAREN, + [40079] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, - anon_sym_COMMA, - STATE(980), 1, - aux_sym_function_repeat1, - STATE(1385), 1, - sym_nopanic, - ACTIONS(2479), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [39937] = 6, + ACTIONS(2295), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + anon_sym_pub, + ACTIONS(2331), 1, + sym_identifier, + STATE(1380), 1, + sym_field_declaration, + STATE(1535), 1, + sym_visibility_modifier, + STATE(999), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40102] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, anon_sym_COMMA, - STATE(997), 1, + ACTIONS(2477), 1, + anon_sym_nopanic, + STATE(1003), 1, aux_sym_function_repeat1, - STATE(1357), 1, + STATE(1354), 1, sym_nopanic, - ACTIONS(2483), 2, + ACTIONS(2473), 2, anon_sym_LBRACE, anon_sym_SEMI, - [39957] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [39975] = 6, + [40122] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2477), 1, anon_sym_nopanic, ACTIONS(2481), 1, - anon_sym_COMMA, - STATE(976), 1, - aux_sym_function_repeat1, - STATE(1348), 1, + anon_sym_DASH_GT, + ACTIONS(2483), 1, + anon_sym_implicits, + STATE(1452), 1, sym_nopanic, - ACTIONS(2487), 2, + ACTIONS(2479), 2, anon_sym_LBRACE, anon_sym_SEMI, - [39995] = 6, + [40142] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2477), 1, anon_sym_nopanic, - ACTIONS(2481), 1, - anon_sym_COMMA, - STATE(997), 1, - aux_sym_function_repeat1, - STATE(1346), 1, + ACTIONS(2487), 1, + anon_sym_DASH_GT, + ACTIONS(2489), 1, + anon_sym_implicits, + STATE(1339), 1, sym_nopanic, - ACTIONS(2489), 2, + ACTIONS(2485), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40015] = 6, + [40162] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, - anon_sym_COMMA, - STATE(997), 1, - aux_sym_function_repeat1, - STATE(1396), 1, - sym_nopanic, - ACTIONS(2491), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [40035] = 7, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2180), 1, + anon_sym_PIPE, + ACTIONS(2182), 1, + anon_sym_COLON, + ACTIONS(2184), 1, + anon_sym_BANG, + ACTIONS(2491), 1, + anon_sym_COLON_COLON, + STATE(869), 1, + sym_type_arguments, + [40184] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2371), 1, anon_sym_LT2, ACTIONS(2493), 1, anon_sym_COMMA, @@ -61642,2663 +61817,2557 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2497), 1, anon_sym_GT, - STATE(865), 1, + STATE(866), 1, sym_type_arguments, - STATE(1261), 1, + STATE(1196), 1, aux_sym_type_parameters_repeat1, - [40057] = 2, + [40206] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1528), 6, + ACTIONS(2351), 1, + anon_sym_BANG, + ACTIONS(2355), 1, + anon_sym_LPAREN, + ACTIONS(2499), 1, + anon_sym_COLON_COLON, + ACTIONS(2166), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [40224] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2475), 1, + anon_sym_COMMA, + ACTIONS(2477), 1, + anon_sym_nopanic, + STATE(989), 1, + aux_sym_function_repeat1, + STATE(1399), 1, + sym_nopanic, + ACTIONS(2501), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40244] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1558), 6, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [40069] = 2, + [40256] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1524), 6, + ACTIONS(2170), 1, + anon_sym_BANG, + ACTIONS(2174), 1, + anon_sym_LPAREN, + ACTIONS(2503), 1, + anon_sym_COLON_COLON, + ACTIONS(2166), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [40274] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1554), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [40286] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1528), 6, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [40081] = 4, + [40298] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2371), 1, anon_sym_LT2, - STATE(874), 1, - sym_type_arguments, - ACTIONS(2225), 4, - anon_sym_SEMI, - anon_sym_EQ, + ACTIONS(2495), 1, + anon_sym_COLON_COLON, + ACTIONS(2505), 1, anon_sym_COMMA, + ACTIONS(2507), 1, anon_sym_GT, - [40097] = 6, + STATE(866), 1, + sym_type_arguments, + STATE(1295), 1, + aux_sym_type_parameters_repeat1, + [40320] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1532), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [40332] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, anon_sym_COMMA, - STATE(986), 1, + ACTIONS(2477), 1, + anon_sym_nopanic, + STATE(1003), 1, aux_sym_function_repeat1, - STATE(1388), 1, + STATE(1369), 1, sym_nopanic, - ACTIONS(2499), 2, + ACTIONS(2509), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40117] = 6, + [40352] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, anon_sym_COMMA, - STATE(997), 1, + ACTIONS(2477), 1, + anon_sym_nopanic, + STATE(976), 1, aux_sym_function_repeat1, - STATE(1436), 1, + STATE(1367), 1, sym_nopanic, - ACTIONS(2501), 2, + ACTIONS(2511), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40137] = 2, + [40372] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1542), 6, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [40149] = 5, + ACTIONS(2475), 1, + anon_sym_COMMA, + ACTIONS(2477), 1, + anon_sym_nopanic, + STATE(992), 1, + aux_sym_function_repeat1, + STATE(1365), 1, + sym_nopanic, + ACTIONS(2513), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40392] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2325), 1, - anon_sym_BANG, - ACTIONS(2329), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [40167] = 6, + ACTIONS(2475), 1, + anon_sym_COMMA, + ACTIONS(2477), 1, + anon_sym_nopanic, + STATE(1003), 1, + aux_sym_function_repeat1, + STATE(1353), 1, + sym_nopanic, + ACTIONS(2515), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40412] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, anon_sym_COMMA, - STATE(979), 1, + ACTIONS(2477), 1, + anon_sym_nopanic, + STATE(996), 1, aux_sym_function_repeat1, - STATE(1362), 1, + STATE(1352), 1, sym_nopanic, - ACTIONS(2505), 2, + ACTIONS(2517), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40187] = 7, + [40432] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2174), 1, - anon_sym_PIPE, - ACTIONS(2176), 1, - anon_sym_COLON, - ACTIONS(2178), 1, + ACTIONS(2170), 1, anon_sym_BANG, - ACTIONS(2507), 1, + ACTIONS(2174), 1, + anon_sym_LPAREN, + ACTIONS(2519), 1, anon_sym_COLON_COLON, - STATE(861), 1, + ACTIONS(2166), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [40450] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2371), 1, + anon_sym_LT2, + STATE(868), 1, sym_type_arguments, - [40209] = 6, + ACTIONS(2250), 4, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [40466] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(2475), 1, + anon_sym_COMMA, + ACTIONS(2477), 1, anon_sym_nopanic, - ACTIONS(2511), 1, - anon_sym_DASH_GT, - ACTIONS(2513), 1, - anon_sym_implicits, - STATE(1420), 1, + STATE(1003), 1, + aux_sym_function_repeat1, + STATE(1348), 1, sym_nopanic, - ACTIONS(2509), 2, + ACTIONS(2521), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40229] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(2495), 1, - anon_sym_COLON_COLON, - ACTIONS(2515), 1, - anon_sym_COMMA, - ACTIONS(2517), 1, - anon_sym_GT, - STATE(865), 1, - sym_type_arguments, - STATE(1288), 1, - aux_sym_type_parameters_repeat1, - [40251] = 4, + [40486] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2521), 1, - anon_sym_COLON_COLON, - ACTIONS(2523), 1, - anon_sym_as, - ACTIONS(2519), 3, - anon_sym_RBRACE, + ACTIONS(2523), 5, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_COMMA, - [40266] = 6, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40497] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(2525), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(2527), 1, - anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - STATE(1196), 1, - sym_field_pattern, - [40285] = 4, + anon_sym_LT, + STATE(562), 1, + sym_field_declaration_list, + STATE(1261), 1, + sym_type_parameters, + [40516] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2533), 1, + ACTIONS(2531), 1, anon_sym_POUND, - ACTIONS(1488), 2, + ACTIONS(1490), 2, anon_sym_pub, sym_identifier, - STATE(995), 2, + STATE(999), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [40300] = 6, + [40531] = 6, ACTIONS(3), 1, sym_line_comment, ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, + anon_sym_LT, + ACTIONS(2534), 1, + anon_sym_of, ACTIONS(2536), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(2538), 1, - anon_sym_COMMA, - STATE(1238), 1, - sym_field_pattern, - [40319] = 4, + anon_sym_EQ, + STATE(1454), 1, + sym_type_parameters, + [40550] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2542), 1, - anon_sym_COMMA, - STATE(997), 1, - aux_sym_function_repeat1, - ACTIONS(2540), 3, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2540), 1, anon_sym_LBRACE, + ACTIONS(2542), 1, anon_sym_SEMI, - anon_sym_nopanic, - [40334] = 2, + STATE(259), 1, + sym_field_declaration_list, + STATE(1154), 1, + sym_type_parameters, + [40569] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2540), 5, + ACTIONS(2107), 1, anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(2437), 1, + anon_sym_STAR, + STATE(1167), 1, + sym_use_list, + ACTIONS(2439), 2, + sym_identifier, + sym_super, + [40586] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2546), 1, anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1003), 1, + aux_sym_function_repeat1, + ACTIONS(2544), 3, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_nopanic, - [40345] = 6, + [40601] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(2549), 5, anon_sym_LBRACE, - ACTIONS(2547), 1, + anon_sym_of, anon_sym_SEMI, - ACTIONS(2549), 1, - anon_sym_LT, - STATE(525), 1, - sym_declaration_list, - STATE(1328), 1, - sym_type_parameters, - [40364] = 5, + anon_sym_EQ, + anon_sym_LPAREN, + [40612] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(2495), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2551), 2, + ACTIONS(2551), 1, + anon_sym_RBRACE, + ACTIONS(2553), 1, anon_sym_COMMA, - anon_sym_GT, - [40381] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2557), 1, sym_mutable_specifier, - ACTIONS(2553), 1, - anon_sym_RBRACE, - ACTIONS(2555), 1, - anon_sym_COMMA, - STATE(1314), 1, + STATE(1323), 1, sym_field_pattern, - [40400] = 2, + [40631] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2557), 5, + ACTIONS(2559), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40411] = 2, + [40642] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2559), 5, + ACTIONS(2561), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40422] = 2, + [40653] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2561), 5, + ACTIONS(2563), 5, anon_sym_LBRACE, - anon_sym_of, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [40433] = 4, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40664] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2523), 1, - anon_sym_as, - ACTIONS(2563), 1, - anon_sym_COLON_COLON, - ACTIONS(2519), 3, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2557), 1, + sym_mutable_specifier, + ACTIONS(2565), 1, anon_sym_RBRACE, + ACTIONS(2567), 1, + anon_sym_COMMA, + STATE(1331), 1, + sym_field_pattern, + [40683] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2569), 5, + anon_sym_LBRACE, anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40694] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2371), 1, + anon_sym_LT2, + ACTIONS(2495), 1, + anon_sym_COLON_COLON, + STATE(866), 1, + sym_type_arguments, + ACTIONS(2571), 2, anon_sym_COMMA, - [40448] = 5, + anon_sym_GT, + [40711] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2235), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - sym_numeric_literal, - ACTIONS(2567), 1, - sym_identifier, - STATE(1015), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [40465] = 6, + ACTIONS(2270), 1, + anon_sym_SEMI, + ACTIONS(2573), 1, + anon_sym_RBRACK, + ACTIONS(2576), 1, + anon_sym_COLON_COLON, + ACTIONS(2166), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [40728] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2477), 1, + anon_sym_nopanic, + ACTIONS(2580), 1, + anon_sym_implicits, + STATE(1368), 1, + sym_nopanic, + ACTIONS(2578), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40745] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2529), 1, anon_sym_LT, - ACTIONS(2569), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2571), 1, + ACTIONS(2584), 1, anon_sym_SEMI, - STATE(297), 1, + STATE(262), 1, sym_declaration_list, - STATE(1235), 1, + STATE(1209), 1, sym_type_parameters, - [40484] = 4, + [40764] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2575), 1, + ACTIONS(2586), 1, + anon_sym_COMMA, + ACTIONS(2588), 1, + anon_sym_RPAREN, + STATE(1226), 1, + aux_sym_parameters_repeat1, + ACTIONS(2166), 2, + anon_sym_COLON, + anon_sym_PIPE, + [40781] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2590), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [40792] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2594), 1, anon_sym_COLON_COLON, - ACTIONS(2577), 1, + ACTIONS(2596), 1, anon_sym_as, - ACTIONS(2573), 3, + ACTIONS(2592), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [40499] = 6, + [40807] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2579), 1, + ACTIONS(2598), 5, anon_sym_LBRACE, - ACTIONS(2581), 1, + anon_sym_of, anon_sym_SEMI, - STATE(265), 1, - sym_field_declaration_list, - STATE(1237), 1, - sym_type_parameters, - [40518] = 2, + anon_sym_EQ, + anon_sym_LPAREN, + [40818] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2583), 5, + ACTIONS(2600), 5, anon_sym_LBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40529] = 4, + anon_sym_EQ, + anon_sym_LPAREN, + [40829] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2523), 1, - anon_sym_as, - ACTIONS(2585), 1, + ACTIONS(2604), 1, anon_sym_COLON_COLON, - ACTIONS(2519), 3, + ACTIONS(2606), 1, + anon_sym_as, + ACTIONS(2602), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [40544] = 2, + [40844] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2587), 5, + ACTIONS(2608), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_implicits, anon_sym_nopanic, - [40555] = 6, + [40855] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2557), 1, + sym_mutable_specifier, + ACTIONS(2610), 1, + anon_sym_RBRACE, + ACTIONS(2612), 1, + anon_sym_COMMA, + STATE(1176), 1, + sym_field_pattern, + [40874] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 1, + ACTIONS(2166), 1, anon_sym_PIPE, - ACTIONS(2164), 1, + ACTIONS(2168), 1, anon_sym_COLON, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2589), 1, + ACTIONS(2272), 1, anon_sym_COLON_COLON, - [40574] = 5, + ACTIONS(2270), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40891] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2591), 1, + ACTIONS(2544), 5, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2593), 1, anon_sym_RPAREN, - STATE(1309), 1, - aux_sym_parameters_repeat1, - ACTIONS(2162), 2, - anon_sym_COLON, - anon_sym_PIPE, - [40591] = 4, + anon_sym_nopanic, + [40902] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2595), 1, - anon_sym_POUND, - ACTIONS(1488), 2, - sym_numeric_literal, - sym_identifier, - STATE(1015), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [40606] = 6, + ACTIONS(2614), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [40913] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - ACTIONS(2598), 1, - anon_sym_RBRACE, - ACTIONS(2600), 1, + ACTIONS(1536), 5, + anon_sym_SEMI, + anon_sym_EQ, anon_sym_COMMA, - STATE(1317), 1, - sym_field_pattern, - [40625] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(2495), 1, anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2602), 2, - anon_sym_COMMA, anon_sym_GT, - [40642] = 5, + [40924] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 1, - anon_sym_PIPE, - ACTIONS(2164), 1, - anon_sym_COLON, - ACTIONS(2254), 1, - anon_sym_COLON_COLON, - ACTIONS(2252), 2, - anon_sym_COMMA, + ACTIONS(958), 1, anon_sym_RPAREN, - [40659] = 6, + ACTIONS(2616), 1, + anon_sym_COMMA, + STATE(1189), 1, + aux_sym_parameters_repeat1, + ACTIONS(2166), 2, + anon_sym_COLON, + anon_sym_PIPE, + [40941] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2529), 1, anon_sym_LT, - ACTIONS(2579), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2620), 1, anon_sym_SEMI, - STATE(296), 1, - sym_field_declaration_list, - STATE(1211), 1, + STATE(553), 1, + sym_declaration_list, + STATE(1253), 1, sym_type_parameters, - [40678] = 5, + [40960] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2477), 1, anon_sym_nopanic, - ACTIONS(2608), 1, + ACTIONS(2624), 1, anon_sym_implicits, - STATE(1394), 1, + STATE(1401), 1, sym_nopanic, - ACTIONS(2606), 2, + ACTIONS(2622), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40695] = 6, + [40977] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2610), 1, + ACTIONS(2626), 5, anon_sym_LBRACE, - ACTIONS(2612), 1, + anon_sym_of, anon_sym_SEMI, - STATE(567), 1, - sym_field_declaration_list, - STATE(1329), 1, - sym_type_parameters, - [40714] = 2, + anon_sym_EQ, + anon_sym_LPAREN, + [40988] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1546), 5, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2371), 1, + anon_sym_LT2, + ACTIONS(2495), 1, anon_sym_COLON_COLON, + STATE(866), 1, + sym_type_arguments, + ACTIONS(2628), 2, + anon_sym_COMMA, anon_sym_GT, - [40725] = 2, + [41005] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2614), 5, - anon_sym_LBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [40736] = 2, + ACTIONS(2240), 1, + anon_sym_POUND, + ACTIONS(2630), 1, + sym_numeric_literal, + ACTIONS(2632), 1, + sym_identifier, + STATE(1033), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [41022] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2616), 5, - anon_sym_LBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [40747] = 2, + ACTIONS(2634), 1, + anon_sym_POUND, + ACTIONS(1490), 2, + sym_numeric_literal, + sym_identifier, + STATE(1033), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [41037] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 5, - anon_sym_LBRACE, + ACTIONS(2596), 1, + anon_sym_as, + ACTIONS(2637), 1, + anon_sym_COLON_COLON, + ACTIONS(2592), 3, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40758] = 2, + anon_sym_COMMA, + [41052] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2620), 5, - anon_sym_LBRACE, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2639), 1, anon_sym_of, - anon_sym_SEMI, + ACTIONS(2641), 1, + anon_sym_COLON, + ACTIONS(2643), 1, anon_sym_EQ, - anon_sym_LPAREN, - [40769] = 6, + STATE(1347), 1, + sym_type_parameters, + [41071] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2529), 1, anon_sym_LT, - ACTIONS(2569), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2645), 1, anon_sym_SEMI, - STATE(326), 1, + STATE(287), 1, sym_declaration_list, - STATE(1199), 1, + STATE(1157), 1, sym_type_parameters, - [40788] = 6, + [41090] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, - ACTIONS(2549), 1, + ACTIONS(2529), 1, anon_sym_LT, - ACTIONS(2624), 1, + ACTIONS(2618), 1, + anon_sym_LBRACE, + ACTIONS(2647), 1, anon_sym_SEMI, - STATE(557), 1, + STATE(534), 1, sym_declaration_list, - STATE(1249), 1, + STATE(1326), 1, sym_type_parameters, - [40807] = 2, + [41109] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 5, - anon_sym_LBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [40818] = 2, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2557), 1, + sym_mutable_specifier, + ACTIONS(2649), 1, + anon_sym_RBRACE, + ACTIONS(2651), 1, + anon_sym_COMMA, + STATE(1192), 1, + sym_field_pattern, + [41128] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2628), 5, - anon_sym_LBRACE, + ACTIONS(2596), 1, + anon_sym_as, + ACTIONS(2653), 1, + anon_sym_COLON_COLON, + ACTIONS(2592), 3, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40829] = 6, + anon_sym_COMMA, + [41143] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2610), 1, + ACTIONS(2525), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2655), 1, anon_sym_SEMI, - STATE(536), 1, + STATE(531), 1, sym_field_declaration_list, - STATE(1257), 1, + STATE(1328), 1, sym_type_parameters, - [40848] = 5, + [41162] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_STAR, - STATE(1205), 1, - sym_use_list, - ACTIONS(2465), 2, - sym_identifier, - sym_super, - [40865] = 2, + ACTIONS(1550), 5, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [41173] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2632), 5, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2540), 1, anon_sym_LBRACE, - anon_sym_of, + ACTIONS(2657), 1, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [40876] = 2, + STATE(281), 1, + sym_field_declaration_list, + STATE(1158), 1, + sym_type_parameters, + [41192] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2634), 5, + ACTIONS(2659), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40887] = 5, + [41203] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2252), 1, + ACTIONS(1540), 5, anon_sym_SEMI, - ACTIONS(2636), 1, - anon_sym_RBRACK, - ACTIONS(2639), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 2, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - [40904] = 2, + anon_sym_COLON_COLON, + anon_sym_GT, + [41214] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2641), 5, + ACTIONS(2661), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40915] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2475), 1, - anon_sym_nopanic, - ACTIONS(2645), 1, - anon_sym_implicits, - STATE(1378), 1, - sym_nopanic, - ACTIONS(2643), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [40932] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(2495), 1, - anon_sym_COLON_COLON, - STATE(865), 1, - sym_type_arguments, - ACTIONS(2647), 2, - anon_sym_COMMA, - anon_sym_GT, - [40949] = 2, + [41225] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2649), 5, + ACTIONS(2663), 5, anon_sym_LBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40960] = 5, + anon_sym_EQ, + anon_sym_LPAREN, + [41236] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(952), 1, - anon_sym_RPAREN, - ACTIONS(2651), 1, - anon_sym_COMMA, - STATE(1300), 1, - aux_sym_parameters_repeat1, - ACTIONS(2162), 2, - anon_sym_COLON, + ACTIONS(2166), 1, anon_sym_PIPE, - [40977] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1538), 5, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2168), 1, + anon_sym_COLON, + ACTIONS(2170), 1, + anon_sym_BANG, + ACTIONS(2174), 1, + anon_sym_LPAREN, + ACTIONS(2665), 1, anon_sym_COLON_COLON, - anon_sym_GT, - [40988] = 2, + [41255] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1550), 5, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2371), 1, + anon_sym_LT2, + ACTIONS(2495), 1, anon_sym_COLON_COLON, + STATE(866), 1, + sym_type_arguments, + ACTIONS(2667), 2, + anon_sym_COMMA, anon_sym_GT, - [40999] = 5, + [41272] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2653), 1, - anon_sym_RBRACK, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(2657), 1, - anon_sym_PIPE, - STATE(1158), 1, - aux_sym_tuple_pattern_repeat1, - [41015] = 4, + ACTIONS(2371), 1, + anon_sym_LT2, + ACTIONS(2435), 1, + sym_super, + ACTIONS(2669), 1, + sym_identifier, + STATE(854), 1, + sym_type_arguments, + [41288] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2227), 1, - anon_sym_COLON_COLON, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2225), 2, + ACTIONS(2671), 1, anon_sym_COMMA, + ACTIONS(2673), 1, anon_sym_RPAREN, - [41029] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2663), 1, - anon_sym_COMMA, - STATE(1045), 1, + ACTIONS(2675), 1, + anon_sym_PIPE, + STATE(1320), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(2661), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - [41043] = 4, + [41304] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(384), 1, anon_sym_LBRACE, - ACTIONS(2666), 1, + ACTIONS(2677), 1, anon_sym_if, - STATE(771), 2, + STATE(778), 2, sym_block, sym_if_expression, - [41057] = 3, + [41318] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2675), 1, anon_sym_PIPE, - ACTIONS(2661), 3, - anon_sym_RBRACK, + ACTIONS(2679), 1, anon_sym_COMMA, + ACTIONS(2681), 1, anon_sym_RPAREN, - [41069] = 5, + STATE(1296), 1, + aux_sym_tuple_pattern_repeat1, + [41334] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2675), 1, anon_sym_PIPE, - ACTIONS(2668), 1, + ACTIONS(2683), 1, anon_sym_COMMA, - ACTIONS(2670), 1, + ACTIONS(2685), 1, anon_sym_RPAREN, - STATE(1285), 1, + STATE(1302), 1, aux_sym_tuple_pattern_repeat1, - [41085] = 5, + [41350] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2672), 1, - anon_sym_of, - ACTIONS(2674), 1, - anon_sym_EQ, - STATE(1340), 1, - sym_type_parameters, - [41101] = 5, + ACTIONS(2441), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_LPAREN, + STATE(80), 1, + sym_delim_token_tree, + [41366] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2676), 1, - anon_sym_of, - ACTIONS(2678), 1, - anon_sym_EQ, - STATE(1343), 1, - sym_type_parameters, - [41117] = 4, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2491), 1, + anon_sym_COLON_COLON, + ACTIONS(2687), 1, + anon_sym_BANG, + STATE(869), 1, + sym_type_arguments, + [41382] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, + ACTIONS(2252), 1, anon_sym_COLON_COLON, - ACTIONS(2225), 2, + ACTIONS(2689), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [41131] = 5, + ACTIONS(2691), 1, + anon_sym_GT, + STATE(1202), 1, + aux_sym_type_parameters_repeat1, + [41398] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2682), 1, + ACTIONS(2689), 1, anon_sym_COMMA, - ACTIONS(2684), 1, - anon_sym_RPAREN, - STATE(1293), 1, - aux_sym_tuple_pattern_repeat1, - [41147] = 5, + ACTIONS(2691), 1, + anon_sym_GT, + ACTIONS(2693), 1, + anon_sym_COLON_COLON, + STATE(1202), 1, + aux_sym_type_parameters_repeat1, + [41414] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2529), 1, anon_sym_LT, - ACTIONS(2686), 1, + ACTIONS(2695), 1, anon_sym_of, - ACTIONS(2688), 1, + ACTIONS(2697), 1, anon_sym_EQ, - STATE(1374), 1, + STATE(1343), 1, sym_type_parameters, - [41163] = 5, + [41430] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2178), 1, - anon_sym_BANG, - ACTIONS(2507), 1, - anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - [41179] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2557), 1, sym_mutable_specifier, - ACTIONS(2690), 1, + ACTIONS(2699), 1, anon_sym_RBRACE, - STATE(1399), 1, + STATE(1392), 1, sym_field_pattern, - [41195] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2274), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2371), 2, - anon_sym_COLON, - anon_sym_PIPE, - [41207] = 5, + [41446] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2178), 1, + ACTIONS(2184), 1, anon_sym_BANG, - ACTIONS(2415), 1, + ACTIONS(2371), 1, anon_sym_LT2, - ACTIONS(2692), 1, + ACTIONS(2701), 1, anon_sym_COLON_COLON, - STATE(861), 1, + STATE(869), 1, sym_type_arguments, - [41223] = 5, + [41462] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2529), 1, anon_sym_LT, - ACTIONS(2694), 1, + ACTIONS(2703), 1, anon_sym_LBRACE, - STATE(569), 1, + STATE(498), 1, sym_enum_variant_list, - STATE(1347), 1, + STATE(1363), 1, sym_type_parameters, - [41239] = 5, + [41478] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2696), 1, - anon_sym_LBRACE, - STATE(266), 1, - sym_enum_variant_list, - STATE(1373), 1, - sym_type_parameters, - [41255] = 5, + ACTIONS(2705), 1, + anon_sym_COLON_COLON, + ACTIONS(2166), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [41490] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2557), 1, sym_mutable_specifier, - ACTIONS(2698), 1, + ACTIONS(2707), 1, anon_sym_RBRACE, - STATE(1399), 1, + STATE(1392), 1, sym_field_pattern, - [41271] = 5, + [41506] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2709), 1, + anon_sym_of, + ACTIONS(2711), 1, + anon_sym_EQ, + STATE(1462), 1, + sym_type_parameters, + [41522] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2713), 1, + anon_sym_COLON_COLON, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2250), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41536] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2700), 1, + STATE(854), 1, + sym_type_arguments, + ACTIONS(2717), 2, sym_identifier, - ACTIONS(2702), 1, sym_super, - STATE(850), 1, - sym_type_arguments, - [41287] = 5, + [41550] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2507), 1, - anon_sym_COLON_COLON, - ACTIONS(2704), 1, - anon_sym_BANG, - STATE(861), 1, + ACTIONS(2435), 1, + sym_super, + ACTIONS(2719), 1, + sym_identifier, + STATE(854), 1, sym_type_arguments, - [41303] = 5, + [41566] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2700), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2702), 1, + ACTIONS(2723), 1, sym_super, - STATE(850), 1, + STATE(860), 1, sym_type_arguments, - [41319] = 4, + [41582] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - STATE(859), 1, + STATE(862), 1, sym_type_arguments, - ACTIONS(2453), 2, + ACTIONS(2723), 2, sym_identifier, sym_super, - [41333] = 5, + [41596] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2381), 1, + ACTIONS(2417), 1, anon_sym_PIPE, - ACTIONS(2706), 1, + ACTIONS(2725), 1, anon_sym_SEMI, - ACTIONS(2708), 1, + ACTIONS(2727), 1, anon_sym_COLON, - ACTIONS(2710), 1, + ACTIONS(2729), 1, anon_sym_EQ, - [41349] = 4, + [41612] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - STATE(856), 1, + STATE(860), 1, sym_type_arguments, - ACTIONS(2465), 2, + ACTIONS(2723), 2, sym_identifier, sym_super, - [41363] = 5, + [41626] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2700), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2702), 1, + ACTIONS(2723), 1, sym_super, - STATE(856), 1, + STATE(862), 1, sym_type_arguments, - [41379] = 5, + [41642] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2712), 1, - sym_identifier, - ACTIONS(2714), 1, - sym_super, - STATE(859), 1, - sym_type_arguments, - [41395] = 5, + ACTIONS(2441), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym_delim_token_tree, + [41658] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2702), 1, + ACTIONS(2717), 1, sym_super, - ACTIONS(2716), 1, - sym_identifier, - STATE(850), 1, - sym_type_arguments, - [41411] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(2700), 1, + ACTIONS(2731), 1, sym_identifier, - ACTIONS(2702), 1, - sym_super, - STATE(856), 1, + STATE(854), 1, sym_type_arguments, - [41427] = 5, + [41674] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2675), 1, anon_sym_PIPE, - ACTIONS(2718), 1, + ACTIONS(2733), 1, + anon_sym_RBRACK, + ACTIONS(2735), 1, anon_sym_COMMA, - ACTIONS(2720), 1, - anon_sym_RPAREN, - STATE(1312), 1, + STATE(1318), 1, aux_sym_tuple_pattern_repeat1, - [41443] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1873), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_COMMA, - ACTIONS(2724), 1, - anon_sym_COLON_COLON, - STATE(1290), 1, - aux_sym_type_parameters_repeat1, - [41459] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1873), 1, - anon_sym_GT, - ACTIONS(2260), 1, - anon_sym_COLON_COLON, - ACTIONS(2722), 1, - anon_sym_COMMA, - STATE(1290), 1, - aux_sym_type_parameters_repeat1, - [41475] = 5, + [41690] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2557), 1, sym_mutable_specifier, - ACTIONS(2726), 1, + ACTIONS(2737), 1, anon_sym_RBRACE, - STATE(1399), 1, + STATE(1392), 1, sym_field_pattern, - [41491] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2728), 1, - anon_sym_RBRACK, - ACTIONS(2730), 1, - anon_sym_COMMA, - STATE(1310), 1, - aux_sym_tuple_pattern_repeat1, - [41507] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2381), 1, - anon_sym_PIPE, - ACTIONS(2732), 1, - anon_sym_SEMI, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(2736), 1, - anon_sym_EQ, - [41523] = 4, + [41706] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - STATE(850), 1, - sym_type_arguments, - ACTIONS(2465), 2, + ACTIONS(2555), 1, sym_identifier, - sym_super, - [41537] = 5, + ACTIONS(2557), 1, + sym_mutable_specifier, + ACTIONS(2739), 1, + anon_sym_RBRACE, + STATE(1392), 1, + sym_field_pattern, + [41722] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2557), 1, sym_mutable_specifier, - ACTIONS(2738), 1, + ACTIONS(2741), 1, anon_sym_RBRACE, - STATE(1399), 1, + STATE(1392), 1, sym_field_pattern, - [41553] = 5, + [41738] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2184), 1, + anon_sym_BANG, + ACTIONS(2491), 1, + anon_sym_COLON_COLON, + STATE(869), 1, + sym_type_arguments, + [41754] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2371), 1, anon_sym_LT2, - ACTIONS(2712), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2714), 1, + ACTIONS(2723), 1, sym_super, - STATE(859), 1, + STATE(860), 1, sym_type_arguments, - [41569] = 5, + [41770] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2371), 1, anon_sym_LT2, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2716), 1, + ACTIONS(2721), 1, sym_identifier, - STATE(856), 1, + ACTIONS(2723), 1, + sym_super, + STATE(862), 1, sym_type_arguments, - [41585] = 5, + [41786] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2371), 1, + anon_sym_LT2, + ACTIONS(2717), 1, + sym_super, + ACTIONS(2731), 1, sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - ACTIONS(2740), 1, - anon_sym_RBRACE, - STATE(1399), 1, - sym_field_pattern, - [41601] = 3, + STATE(854), 1, + sym_type_arguments, + [41802] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 2, + ACTIONS(2166), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2742), 2, + ACTIONS(2743), 2, anon_sym_COMMA, anon_sym_RPAREN, - [41613] = 4, + [41814] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2225), 1, - anon_sym_SEMI, - ACTIONS(2744), 1, - anon_sym_RBRACK, - ACTIONS(2162), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [41627] = 5, + ACTIONS(2745), 1, + anon_sym_LBRACE, + ACTIONS(2747), 1, + anon_sym_LBRACK, + ACTIONS(2749), 1, + anon_sym_LPAREN, + STATE(223), 1, + sym_delim_token_tree, + [41830] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2714), 1, + ACTIONS(2439), 1, sym_super, - ACTIONS(2747), 1, + ACTIONS(2751), 1, sym_identifier, - STATE(859), 1, + STATE(424), 1, sym_type_arguments, - [41643] = 5, + [41846] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2465), 1, + ACTIONS(2439), 1, sym_super, - ACTIONS(2749), 1, + ACTIONS(2753), 1, sym_identifier, - STATE(710), 1, + STATE(719), 1, sym_type_arguments, - [41659] = 5, + [41862] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2755), 1, sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - ACTIONS(2751), 1, - anon_sym_RBRACE, - STATE(1399), 1, - sym_field_pattern, - [41675] = 5, + ACTIONS(2757), 1, + sym_super, + STATE(854), 1, + sym_type_arguments, + [41878] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2465), 1, + ACTIONS(2439), 1, sym_super, - ACTIONS(2749), 1, + ACTIONS(2753), 1, sym_identifier, - STATE(711), 1, + STATE(704), 1, sym_type_arguments, - [41691] = 5, + [41894] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2753), 1, - anon_sym_of, - ACTIONS(2755), 1, - anon_sym_EQ, - STATE(1468), 1, - sym_type_parameters, - [41707] = 5, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2557), 1, + sym_mutable_specifier, + ACTIONS(2759), 1, + anon_sym_RBRACE, + STATE(1392), 1, + sym_field_pattern, + [41910] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2757), 1, + ACTIONS(2761), 1, anon_sym_LBRACE, - ACTIONS(2759), 1, + ACTIONS(2763), 1, anon_sym_LBRACK, - ACTIONS(2761), 1, + ACTIONS(2765), 1, anon_sym_LPAREN, - STATE(854), 1, + STATE(856), 1, sym_delim_token_tree, - [41723] = 5, + [41926] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2529), 1, anon_sym_LT, - ACTIONS(2755), 1, - anon_sym_EQ, - ACTIONS(2763), 1, - anon_sym_SEMI, - STATE(1467), 1, + ACTIONS(2767), 1, + anon_sym_LBRACE, + STATE(279), 1, + sym_enum_variant_list, + STATE(1460), 1, sym_type_parameters, - [41739] = 5, + [41942] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2765), 1, - anon_sym_COMMA, - ACTIONS(2767), 1, - anon_sym_RPAREN, - STATE(1155), 1, - aux_sym_tuple_pattern_repeat1, - [41755] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + ACTIONS(2745), 1, anon_sym_LBRACE, - ACTIONS(2769), 1, - anon_sym_if, - STATE(71), 2, - sym_block, - sym_if_expression, - [41769] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2771), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, + ACTIONS(2747), 1, anon_sym_LBRACK, - ACTIONS(2775), 1, + ACTIONS(2749), 1, anon_sym_LPAREN, STATE(222), 1, sym_delim_token_tree, - [41785] = 4, + [41958] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2769), 1, + anon_sym_LT2, + ACTIONS(2771), 1, + sym_identifier, + ACTIONS(2773), 1, + sym_super, + STATE(600), 1, + sym_type_arguments, + [41974] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2659), 1, - anon_sym_LPAREN, ACTIONS(2777), 1, - anon_sym_COLON_COLON, - ACTIONS(2225), 2, - anon_sym_SEMI, + anon_sym_COMMA, + STATE(1094), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(2775), 2, anon_sym_RBRACK, - [41799] = 5, + anon_sym_RPAREN, + [41988] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2675), 1, + anon_sym_PIPE, + ACTIONS(2775), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [42000] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2769), 1, anon_sym_LT2, - ACTIONS(2779), 1, + ACTIONS(2771), 1, sym_identifier, - ACTIONS(2781), 1, + ACTIONS(2773), 1, sym_super, - STATE(859), 1, + STATE(601), 1, sym_type_arguments, - [41815] = 5, + [42016] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2771), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_LBRACK, - ACTIONS(2775), 1, - anon_sym_LPAREN, - STATE(223), 1, - sym_delim_token_tree, - [41831] = 5, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2435), 1, + sym_super, + ACTIONS(2780), 1, + sym_identifier, + STATE(854), 1, + sym_type_arguments, + [42032] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2453), 1, + ACTIONS(2439), 1, sym_super, - ACTIONS(2783), 1, + ACTIONS(2751), 1, sym_identifier, - STATE(859), 1, + STATE(420), 1, sym_type_arguments, - [41847] = 5, + [42048] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2757), 1, + ACTIONS(2761), 1, anon_sym_LBRACE, - ACTIONS(2759), 1, + ACTIONS(2763), 1, anon_sym_LBRACK, - ACTIONS(2761), 1, + ACTIONS(2765), 1, anon_sym_LPAREN, - STATE(857), 1, + STATE(863), 1, sym_delim_token_tree, - [41863] = 5, + [42064] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2538), 1, + anon_sym_EQ, + ACTIONS(2782), 1, + anon_sym_SEMI, + STATE(1455), 1, + sym_type_parameters, + [42080] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2785), 1, + ACTIONS(2371), 1, anon_sym_LT2, - ACTIONS(2787), 1, - sym_identifier, - ACTIONS(2789), 1, + ACTIONS(2439), 1, sym_super, - STATE(645), 1, + ACTIONS(2784), 1, + sym_identifier, + STATE(862), 1, sym_type_arguments, - [41879] = 5, + [42096] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2785), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2787), 1, - sym_identifier, - ACTIONS(2789), 1, + ACTIONS(2723), 1, sym_super, - STATE(646), 1, + ACTIONS(2786), 1, + sym_identifier, + STATE(860), 1, sym_type_arguments, - [41895] = 5, + [42112] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2675), 1, anon_sym_PIPE, - ACTIONS(2791), 1, + ACTIONS(2788), 1, anon_sym_SEMI, - ACTIONS(2793), 1, + ACTIONS(2790), 1, anon_sym_COLON, - ACTIONS(2795), 1, + ACTIONS(2792), 1, anon_sym_EQ, - [41911] = 5, + [42128] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2371), 1, anon_sym_LT2, - ACTIONS(2453), 1, + ACTIONS(2439), 1, sym_super, - ACTIONS(2747), 1, + ACTIONS(2784), 1, sym_identifier, - STATE(859), 1, + STATE(860), 1, sym_type_arguments, - [41927] = 5, + [42144] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2696), 1, - anon_sym_LBRACE, - STATE(294), 1, - sym_enum_variant_list, - STATE(1440), 1, - sym_type_parameters, - [41943] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2797), 1, - anon_sym_COLON_COLON, - ACTIONS(2162), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [41955] = 5, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2723), 1, + sym_super, + ACTIONS(2786), 1, + sym_identifier, + STATE(862), 1, + sym_type_arguments, + [42160] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2465), 1, + ACTIONS(2723), 1, sym_super, - ACTIONS(2716), 1, + ACTIONS(2784), 1, sym_identifier, - STATE(856), 1, + STATE(860), 1, sym_type_arguments, - [41971] = 5, + [42176] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, - anon_sym_COLON_COLON, - ACTIONS(2799), 1, + ACTIONS(2303), 2, anon_sym_COMMA, - ACTIONS(2801), 1, - anon_sym_GT, - STATE(1262), 1, - aux_sym_type_parameters_repeat1, - [41987] = 4, + anon_sym_RPAREN, + ACTIONS(2401), 2, + anon_sym_COLON, + anon_sym_PIPE, + [42188] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2417), 1, + anon_sym_PIPE, + ACTIONS(2794), 1, + anon_sym_SEMI, + ACTIONS(2796), 1, + anon_sym_COLON, + ACTIONS(2798), 1, + anon_sym_EQ, + [42204] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2803), 1, + ACTIONS(2800), 1, anon_sym_if, - STATE(71), 2, + STATE(72), 2, sym_block, sym_if_expression, - [42001] = 5, + [42218] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2529), 1, anon_sym_LT, - ACTIONS(2694), 1, + ACTIONS(2703), 1, anon_sym_LBRACE, - STATE(539), 1, + STATE(565), 1, sym_enum_variant_list, - STATE(1397), 1, + STATE(1402), 1, sym_type_parameters, - [42017] = 5, + [42234] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2724), 1, - anon_sym_COLON_COLON, - ACTIONS(2799), 1, - anon_sym_COMMA, - ACTIONS(2801), 1, - anon_sym_GT, - STATE(1262), 1, - aux_sym_type_parameters_repeat1, - [42033] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2465), 1, + ACTIONS(2717), 1, sym_super, - ACTIONS(2716), 1, + ACTIONS(2802), 1, sym_identifier, - STATE(850), 1, - sym_type_arguments, - [42049] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2678), 1, - anon_sym_EQ, - ACTIONS(2805), 1, - anon_sym_SEMI, - STATE(1403), 1, - sym_type_parameters, - [42065] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(802), 1, - anon_sym_LBRACE, - ACTIONS(2807), 1, - anon_sym_if, - STATE(252), 2, - sym_block, - sym_if_expression, - [42079] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2809), 1, - anon_sym_LBRACE, - ACTIONS(2811), 1, - anon_sym_LBRACK, - ACTIONS(2813), 1, - anon_sym_LPAREN, - STATE(1167), 1, - sym_delim_token_tree, - [42095] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2809), 1, - anon_sym_LBRACE, - ACTIONS(2811), 1, - anon_sym_LBRACK, - ACTIONS(2813), 1, - anon_sym_LPAREN, - STATE(1171), 1, - sym_delim_token_tree, - [42111] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2815), 1, - sym_identifier, - ACTIONS(2817), 1, - sym_super, - STATE(859), 1, + STATE(854), 1, sym_type_arguments, - [42127] = 5, + [42250] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(2821), 1, - sym_super, - STATE(856), 1, + STATE(854), 1, sym_type_arguments, - [42143] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2819), 1, + ACTIONS(2435), 2, sym_identifier, - ACTIONS(2821), 1, sym_super, - STATE(850), 1, - sym_type_arguments, - [42159] = 4, + [42264] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - STATE(859), 1, + STATE(862), 1, sym_type_arguments, - ACTIONS(2714), 2, + ACTIONS(2439), 2, sym_identifier, sym_super, - [42173] = 5, + [42278] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2714), 1, + ACTIONS(2723), 1, sym_super, - ACTIONS(2815), 1, + ACTIONS(2784), 1, sym_identifier, - STATE(859), 1, + STATE(862), 1, sym_type_arguments, - [42189] = 4, + [42294] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - STATE(856), 1, - sym_type_arguments, - ACTIONS(2702), 2, - sym_identifier, - sym_super, - [42203] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2549), 1, + ACTIONS(2529), 1, anon_sym_LT, - ACTIONS(2823), 1, - anon_sym_LPAREN, - STATE(991), 1, - sym_parameters, - STATE(1437), 1, + ACTIONS(2643), 1, + anon_sym_EQ, + ACTIONS(2804), 1, + anon_sym_SEMI, + STATE(1410), 1, sym_type_parameters, - [42219] = 4, + [42310] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - STATE(850), 1, + STATE(860), 1, sym_type_arguments, - ACTIONS(2702), 2, + ACTIONS(2439), 2, sym_identifier, sym_super, - [42233] = 4, + [42324] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2274), 1, - anon_sym_SEMI, - ACTIONS(2825), 1, - anon_sym_RBRACK, - ACTIONS(2371), 2, - anon_sym_COMMA, + ACTIONS(2166), 2, + anon_sym_COLON, anon_sym_PIPE, - [42247] = 5, + ACTIONS(2250), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42336] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2819), 1, - sym_identifier, - STATE(856), 1, - sym_type_arguments, - [42263] = 5, + ACTIONS(2268), 1, + anon_sym_COLON_COLON, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2250), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42350] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2819), 1, + ACTIONS(2669), 1, sym_identifier, - STATE(850), 1, + ACTIONS(2717), 1, + sym_super, + STATE(854), 1, sym_type_arguments, - [42279] = 5, + [42366] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(2828), 1, + ACTIONS(802), 1, + anon_sym_LBRACE, + ACTIONS(2806), 1, + anon_sym_if, + STATE(245), 2, + sym_block, + sym_if_expression, + [42380] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1889), 1, + anon_sym_GT, + ACTIONS(2693), 1, + anon_sym_COLON_COLON, + ACTIONS(2808), 1, anon_sym_COMMA, - ACTIONS(2830), 1, - anon_sym_RPAREN, - STATE(1176), 1, - aux_sym_tuple_pattern_repeat1, - [42295] = 5, + STATE(1306), 1, + aux_sym_type_parameters_repeat1, + [42396] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2714), 1, - sym_super, - ACTIONS(2832), 1, - sym_identifier, - STATE(859), 1, - sym_type_arguments, - [42311] = 5, + ACTIONS(1889), 1, + anon_sym_GT, + ACTIONS(2252), 1, + anon_sym_COLON_COLON, + ACTIONS(2808), 1, + anon_sym_COMMA, + STATE(1306), 1, + aux_sym_type_parameters_repeat1, + [42412] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2303), 1, + anon_sym_SEMI, + ACTIONS(2810), 1, + anon_sym_RBRACK, + ACTIONS(2401), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [42426] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - ACTIONS(2834), 1, - anon_sym_RBRACE, - STATE(1399), 1, - sym_field_pattern, - [42327] = 5, + anon_sym_LT, + ACTIONS(2767), 1, + anon_sym_LBRACE, + STATE(301), 1, + sym_enum_variant_list, + STATE(1471), 1, + sym_type_parameters, + [42442] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2836), 1, - sym_identifier, - STATE(856), 1, - sym_type_arguments, - [42343] = 5, + ACTIONS(2166), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2813), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42454] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2836), 1, - sym_identifier, - STATE(850), 1, - sym_type_arguments, - [42359] = 5, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_COLON_COLON, + ACTIONS(2250), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [42468] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2465), 1, - sym_super, - ACTIONS(2838), 1, - sym_identifier, - STATE(419), 1, - sym_type_arguments, - [42375] = 5, + ACTIONS(2250), 1, + anon_sym_SEMI, + ACTIONS(2817), 1, + anon_sym_RBRACK, + ACTIONS(2166), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [42482] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2675), 1, anon_sym_PIPE, - ACTIONS(2840), 1, + ACTIONS(2820), 1, anon_sym_COMMA, - ACTIONS(2842), 1, + ACTIONS(2822), 1, anon_sym_RPAREN, - STATE(1180), 1, + STATE(1199), 1, aux_sym_tuple_pattern_repeat1, - [42391] = 5, + [42498] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2675), 1, anon_sym_PIPE, - ACTIONS(2844), 1, - anon_sym_SEMI, - ACTIONS(2846), 1, - anon_sym_COLON, - ACTIONS(2848), 1, - anon_sym_EQ, - [42407] = 5, + ACTIONS(2824), 1, + anon_sym_RBRACK, + ACTIONS(2826), 1, + anon_sym_COMMA, + STATE(1200), 1, + aux_sym_tuple_pattern_repeat1, + [42514] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2465), 1, - sym_super, - ACTIONS(2838), 1, - sym_identifier, - STATE(436), 1, - sym_type_arguments, - [42423] = 5, + ACTIONS(2675), 1, + anon_sym_PIPE, + ACTIONS(2828), 1, + anon_sym_COMMA, + ACTIONS(2830), 1, + anon_sym_RPAREN, + STATE(1148), 1, + aux_sym_tuple_pattern_repeat1, + [42530] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2431), 1, + ACTIONS(2832), 1, anon_sym_LBRACE, - ACTIONS(2435), 1, + ACTIONS(2834), 1, anon_sym_LBRACK, - ACTIONS(2441), 1, + ACTIONS(2836), 1, anon_sym_LPAREN, - STATE(76), 1, + STATE(1171), 1, sym_delim_token_tree, - [42439] = 3, + [42546] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 2, - anon_sym_COLON, + ACTIONS(2675), 1, anon_sym_PIPE, - ACTIONS(2850), 2, + ACTIONS(2838), 1, anon_sym_COMMA, + ACTIONS(2840), 1, anon_sym_RPAREN, - [42451] = 5, + STATE(1251), 1, + aux_sym_tuple_pattern_repeat1, + [42562] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2431), 1, + ACTIONS(2107), 1, anon_sym_LBRACE, - ACTIONS(2435), 1, + STATE(1247), 1, + sym_use_list, + ACTIONS(2842), 2, + sym_identifier, + sym_super, + [42576] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2832), 1, + anon_sym_LBRACE, + ACTIONS(2834), 1, anon_sym_LBRACK, - ACTIONS(2441), 1, + ACTIONS(2836), 1, anon_sym_LPAREN, - STATE(82), 1, + STATE(1175), 1, sym_delim_token_tree, - [42467] = 3, + [42592] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2225), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42479] = 4, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2844), 1, + sym_identifier, + ACTIONS(2846), 1, + sym_super, + STATE(854), 1, + sym_type_arguments, + [42608] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2103), 1, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2848), 1, + anon_sym_LPAREN, + STATE(977), 1, + sym_parameters, + STATE(1469), 1, + sym_type_parameters, + [42624] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1292), 1, - sym_use_list, - ACTIONS(2852), 2, + ACTIONS(2850), 1, + anon_sym_if, + STATE(72), 2, + sym_block, + sym_if_expression, + [42638] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2723), 1, + sym_super, + ACTIONS(2852), 1, + sym_identifier, + STATE(860), 1, + sym_type_arguments, + [42654] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2852), 1, sym_identifier, + ACTIONS(2854), 1, sym_super, - [42493] = 5, + STATE(862), 1, + sym_type_arguments, + [42670] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, + ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2453), 1, + ACTIONS(2723), 1, sym_super, + ACTIONS(2852), 1, + sym_identifier, + STATE(862), 1, + sym_type_arguments, + [42686] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2852), 1, + sym_identifier, ACTIONS(2854), 1, + sym_super, + STATE(860), 1, + sym_type_arguments, + [42702] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2717), 1, + sym_super, + ACTIONS(2844), 1, sym_identifier, - STATE(859), 1, + STATE(854), 1, sym_type_arguments, - [42509] = 4, + [42718] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 1, - anon_sym_PIPE, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2557), 1, + sym_mutable_specifier, ACTIONS(2856), 1, - anon_sym_COLON_COLON, - ACTIONS(2636), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42523] = 5, + anon_sym_RBRACE, + STATE(1392), 1, + sym_field_pattern, + [42734] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2555), 1, sym_identifier, - ACTIONS(2531), 1, + ACTIONS(2557), 1, sym_mutable_specifier, ACTIONS(2858), 1, anon_sym_RBRACE, - STATE(1399), 1, + STATE(1392), 1, sym_field_pattern, - [42539] = 2, + [42750] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2423), 3, + ACTIONS(2166), 1, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42548] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, ACTIONS(2860), 1, - anon_sym_SEMI, - STATE(1495), 1, - sym_type_parameters, - [42561] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(874), 1, - sym_type_arguments, - [42574] = 3, + anon_sym_COLON_COLON, + ACTIONS(2573), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42764] = 5, ACTIONS(3), 1, sym_line_comment, + ACTIONS(2675), 1, + anon_sym_PIPE, + ACTIONS(2862), 1, + anon_sym_SEMI, ACTIONS(2864), 1, anon_sym_COLON, - ACTIONS(2862), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [42585] = 3, + ACTIONS(2866), 1, + anon_sym_EQ, + [42780] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 1, - anon_sym_POUND, - ACTIONS(1218), 2, - sym_numeric_literal, - sym_identifier, - [42596] = 3, + ACTIONS(2202), 1, + anon_sym_fn, + ACTIONS(2868), 1, + anon_sym_type, + STATE(1581), 1, + sym_function, + [42793] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 1, - anon_sym_PIPE, - ACTIONS(2744), 2, - anon_sym_COMMA, + ACTIONS(1478), 1, anon_sym_RPAREN, - [42607] = 4, + ACTIONS(2870), 1, + anon_sym_COMMA, + STATE(1094), 1, + aux_sym_tuple_pattern_repeat1, + [42806] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2858), 1, - anon_sym_RBRACE, - ACTIONS(2866), 1, + ACTIONS(595), 1, + anon_sym_RPAREN, + ACTIONS(1881), 1, anon_sym_COMMA, - STATE(1247), 1, - aux_sym_struct_pattern_repeat1, - [42620] = 2, + STATE(1280), 1, + aux_sym_arguments_repeat1, + [42819] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2868), 3, + ACTIONS(2874), 1, + anon_sym_COLON, + ACTIONS(2872), 2, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_COMMA, - [42629] = 3, + [42830] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2870), 1, - anon_sym_in, - ACTIONS(2872), 2, - sym_super, - sym_crate, - [42640] = 4, + ACTIONS(1252), 1, + anon_sym_POUND, + ACTIONS(1254), 2, + sym_numeric_literal, + sym_identifier, + [42841] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2874), 1, + ACTIONS(2307), 1, anon_sym_RBRACE, ACTIONS(2876), 1, anon_sym_COMMA, - STATE(1152), 1, - aux_sym_use_list_repeat1, - [42653] = 4, + STATE(1276), 1, + aux_sym_field_initializer_list_repeat1, + [42854] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2879), 1, + ACTIONS(704), 1, + anon_sym_RBRACK, + ACTIONS(1827), 1, anon_sym_COMMA, - ACTIONS(2881), 1, - anon_sym_GT, - STATE(1174), 1, - aux_sym_type_arguments_repeat1, - [42666] = 2, + STATE(1262), 1, + aux_sym_array_expression_repeat1, + [42867] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2883), 3, - anon_sym_RBRACE, + ACTIONS(2540), 1, + anon_sym_LBRACE, + ACTIONS(2878), 1, anon_sym_SEMI, - anon_sym_COMMA, - [42675] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1482), 1, - anon_sym_RPAREN, - ACTIONS(2885), 1, - anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [42688] = 3, + STATE(297), 1, + sym_field_declaration_list, + [42880] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, + ACTIONS(2401), 1, anon_sym_PIPE, - ACTIONS(2825), 2, + ACTIONS(2810), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42699] = 4, + [42891] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - ACTIONS(2887), 1, - anon_sym_LBRACE, - STATE(874), 1, - sym_type_arguments, - [42712] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1468), 1, - anon_sym_RBRACK, - ACTIONS(2889), 1, - anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [42725] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2891), 1, + ACTIONS(2880), 1, anon_sym_RBRACE, - ACTIONS(2893), 1, + ACTIONS(2882), 1, anon_sym_COMMA, - STATE(1159), 1, - aux_sym_field_initializer_list_repeat1, - [42738] = 4, + STATE(1156), 1, + aux_sym_struct_pattern_repeat1, + [42904] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(2896), 1, - anon_sym_type, - STATE(1532), 1, - sym_function, - [42751] = 4, + ACTIONS(2582), 1, + anon_sym_LBRACE, + ACTIONS(2885), 1, + anon_sym_SEMI, + STATE(313), 1, + sym_declaration_list, + [42917] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1532), 1, + ACTIONS(2540), 1, anon_sym_LBRACE, - ACTIONS(2898), 1, - anon_sym_COLON_COLON, - STATE(450), 1, - sym_field_initializer_list, - [42764] = 3, + ACTIONS(2887), 1, + anon_sym_SEMI, + STATE(321), 1, + sym_field_declaration_list, + [42930] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, - anon_sym_COLON_COLON, - ACTIONS(2900), 2, - anon_sym_COMMA, - anon_sym_GT, - [42775] = 2, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2889), 1, + anon_sym_SEMI, + STATE(1536), 1, + sym_type_parameters, + [42943] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(470), 3, + ACTIONS(2891), 1, anon_sym_PIPE, + ACTIONS(2893), 1, anon_sym_EQ_GT, + ACTIONS(2895), 1, anon_sym_if, - [42784] = 4, + [42956] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2591), 1, + ACTIONS(2675), 1, + anon_sym_PIPE, + ACTIONS(2897), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2593), 1, - anon_sym_RPAREN, - STATE(1309), 1, - aux_sym_parameters_repeat1, - [42797] = 4, + [42967] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1959), 1, - anon_sym_RPAREN, - ACTIONS(2902), 1, + ACTIONS(2899), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1165), 1, - aux_sym_arguments_repeat1, - [42810] = 4, + [42976] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(595), 1, - anon_sym_RPAREN, - ACTIONS(2905), 1, + ACTIONS(2901), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1165), 1, - aux_sym_arguments_repeat1, - [42823] = 2, + [42985] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 3, + ACTIONS(493), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42832] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2907), 1, - anon_sym_in, - ACTIONS(2909), 2, - sym_super, - sym_crate, - [42843] = 4, + [42994] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, - anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(2903), 3, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(316), 1, - sym_declaration_list, - [42856] = 2, + anon_sym_COMMA, + [43003] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(494), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42865] = 2, + ACTIONS(2905), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43012] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(529), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42874] = 2, + ACTIONS(2907), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43021] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2427), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42883] = 2, + ACTIONS(2909), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43030] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2421), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42892] = 4, + ACTIONS(2911), 1, + anon_sym_COMMA, + ACTIONS(2913), 1, + anon_sym_RPAREN, + STATE(1325), 1, + aux_sym_function_repeat1, + [43043] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1516), 1, - anon_sym_GT, - ACTIONS(2913), 1, + ACTIONS(2915), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1273), 1, - aux_sym_type_arguments_repeat1, - [42905] = 2, + [43052] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2419), 3, + ACTIONS(549), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42914] = 4, + [43061] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1454), 1, - anon_sym_RPAREN, - ACTIONS(2915), 1, + ACTIONS(2129), 1, + anon_sym_RBRACE, + ACTIONS(2917), 1, anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [42927] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2403), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42936] = 2, + STATE(1271), 1, + aux_sym_use_list_repeat1, + [43074] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2395), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [42945] = 4, + ACTIONS(2919), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + [43083] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(2917), 1, - anon_sym_type, - STATE(1576), 1, - sym_function, - [42958] = 4, + ACTIONS(489), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43092] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1480), 1, - anon_sym_RPAREN, - ACTIONS(2919), 1, - anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [42971] = 4, + ACTIONS(537), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43101] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(2921), 1, anon_sym_RBRACE, ACTIONS(2923), 1, anon_sym_COMMA, - STATE(1291), 1, - aux_sym_enum_variant_list_repeat2, - [42984] = 3, + STATE(1265), 1, + aux_sym_struct_pattern_repeat1, + [43114] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2927), 1, - anon_sym_COLON, - ACTIONS(2925), 2, - anon_sym_RBRACE, + ACTIONS(2925), 1, anon_sym_COMMA, - [42995] = 4, + ACTIONS(2928), 1, + anon_sym_GT, + STATE(1177), 1, + aux_sym_type_arguments_repeat1, + [43127] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2834), 1, - anon_sym_RBRACE, - ACTIONS(2929), 1, - anon_sym_COMMA, - STATE(1247), 1, - aux_sym_struct_pattern_repeat1, - [43008] = 2, + ACTIONS(2431), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43136] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(2409), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43017] = 4, + [43145] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1492), 1, + ACTIONS(2407), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43154] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2931), 1, + ACTIONS(2930), 1, anon_sym_SEMI, - STATE(304), 1, - sym_block, - [43030] = 2, + STATE(303), 1, + sym_declaration_list, + [43167] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(478), 3, + ACTIONS(2403), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43039] = 2, + [43176] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(2471), 1, + anon_sym_LBRACE, + STATE(868), 1, + sym_type_arguments, + [43189] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2252), 1, + anon_sym_COLON_COLON, + ACTIONS(2932), 2, + anon_sym_COMMA, + anon_sym_GT, + [43200] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(486), 3, + ACTIONS(2395), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43048] = 4, + [43209] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2933), 1, + ACTIONS(2934), 3, anon_sym_RBRACE, - ACTIONS(2935), 1, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1284), 1, - aux_sym_field_declaration_list_repeat1, - [43061] = 3, + [43218] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2939), 1, - anon_sym_COLON, - ACTIONS(2937), 2, - anon_sym_RBRACE, + ACTIONS(2693), 1, + anon_sym_COLON_COLON, + ACTIONS(2932), 2, anon_sym_COMMA, - [43072] = 2, + anon_sym_GT, + [43229] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2409), 3, + ACTIONS(2361), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43081] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1216), 1, - anon_sym_POUND, - ACTIONS(1218), 2, - anon_sym_pub, - sym_identifier, - [43092] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(688), 1, - anon_sym_RBRACK, - ACTIONS(1883), 1, - anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [43105] = 4, + [43238] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2001), 1, - anon_sym_RBRACK, - ACTIONS(2941), 1, + ACTIONS(956), 1, + anon_sym_RPAREN, + ACTIONS(2936), 1, anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [43118] = 2, + STATE(1201), 1, + aux_sym_parameters_repeat1, + [43251] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2401), 3, + ACTIONS(501), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43127] = 2, + [43260] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2399), 3, + ACTIONS(497), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43136] = 4, + [43269] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2944), 1, + ACTIONS(2938), 1, anon_sym_RBRACE, - ACTIONS(2946), 1, + ACTIONS(2940), 1, anon_sym_COMMA, - STATE(1149), 1, + STATE(1244), 1, aux_sym_struct_pattern_repeat1, - [43149] = 2, + [43282] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2389), 3, + ACTIONS(2417), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43158] = 4, + [43291] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(2948), 1, - anon_sym_type, - STATE(1553), 1, - sym_function, - [43171] = 4, + ACTIONS(2944), 1, + anon_sym_COLON, + ACTIONS(2942), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43302] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, - anon_sym_LBRACE, - ACTIONS(2950), 1, - anon_sym_SEMI, - STATE(331), 1, - sym_declaration_list, - [43184] = 4, + ACTIONS(1252), 1, + anon_sym_POUND, + ACTIONS(1254), 2, + anon_sym_pub, + sym_identifier, + [43313] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2540), 1, - anon_sym_RPAREN, - ACTIONS(2952), 1, + ACTIONS(1891), 1, + anon_sym_GT, + ACTIONS(2946), 1, anon_sym_COMMA, - STATE(1200), 1, - aux_sym_function_repeat1, - [43197] = 2, + STATE(1267), 1, + aux_sym_type_parameters_repeat1, + [43326] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2955), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [43206] = 4, + ACTIONS(2381), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43335] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2125), 1, - anon_sym_RBRACE, - ACTIONS(2957), 1, + ACTIONS(2948), 1, anon_sym_COMMA, - STATE(1152), 1, - aux_sym_use_list_repeat1, - [43219] = 4, + ACTIONS(2950), 1, + anon_sym_GT, + STATE(1238), 1, + aux_sym_type_arguments_repeat1, + [43348] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2742), 1, + ACTIONS(1462), 1, anon_sym_RPAREN, - ACTIONS(2959), 1, + ACTIONS(2952), 1, anon_sym_COMMA, - STATE(1203), 1, - aux_sym_parameters_repeat1, - [43232] = 2, + STATE(1094), 1, + aux_sym_tuple_pattern_repeat1, + [43361] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2962), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1464), 1, + anon_sym_RBRACK, + ACTIONS(2954), 1, anon_sym_COMMA, - [43241] = 2, + STATE(1094), 1, + aux_sym_tuple_pattern_repeat1, + [43374] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2964), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2813), 1, + anon_sym_RPAREN, + ACTIONS(2956), 1, anon_sym_COMMA, - [43250] = 4, + STATE(1201), 1, + aux_sym_parameters_repeat1, + [43387] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(706), 1, - anon_sym_RBRACK, - ACTIONS(1829), 1, + ACTIONS(1889), 1, + anon_sym_GT, + ACTIONS(2808), 1, anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [43263] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(384), 1, - anon_sym_LBRACE, - ACTIONS(2966), 1, - anon_sym_SEMI, - STATE(533), 1, - sym_block, - [43276] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1798), 1, - anon_sym_LBRACE, - ACTIONS(2968), 1, - anon_sym_COLON_COLON, - STATE(783), 1, - sym_field_initializer_list, - [43289] = 4, + STATE(1267), 1, + aux_sym_type_parameters_repeat1, + [43400] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, - anon_sym_LBRACE, - ACTIONS(2970), 1, - anon_sym_SEMI, - STATE(285), 1, - sym_declaration_list, - [43302] = 4, + ACTIONS(1889), 1, + anon_sym_GT, + ACTIONS(2808), 1, + anon_sym_COMMA, + STATE(1306), 1, + aux_sym_type_parameters_repeat1, + [43413] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1512), 1, + ACTIONS(1520), 1, anon_sym_GT, - ACTIONS(2972), 1, + ACTIONS(2959), 1, anon_sym_COMMA, - STATE(1273), 1, + STATE(1177), 1, aux_sym_type_arguments_repeat1, - [43315] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2579), 1, - anon_sym_LBRACE, - ACTIONS(2974), 1, - anon_sym_SEMI, - STATE(302), 1, - sym_field_declaration_list, - [43328] = 2, + [43426] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(474), 3, + ACTIONS(2387), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43337] = 2, + [43435] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2417), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43346] = 4, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2697), 1, + anon_sym_EQ, + STATE(1628), 1, + sym_type_parameters, + [43448] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2976), 1, + ACTIONS(2252), 1, + anon_sym_COLON_COLON, + ACTIONS(2961), 2, anon_sym_COMMA, - ACTIONS(2978), 1, anon_sym_GT, - STATE(1210), 1, - aux_sym_type_arguments_repeat1, - [43359] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2980), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [43368] = 2, + [43459] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2982), 3, - anon_sym_RBRACE, + ACTIONS(2582), 1, + anon_sym_LBRACE, + ACTIONS(2963), 1, anon_sym_SEMI, - anon_sym_COMMA, - [43377] = 4, + STATE(310), 1, + sym_declaration_list, + [43472] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(2984), 1, + ACTIONS(2965), 1, anon_sym_SEMI, - STATE(491), 1, + STATE(332), 1, sym_declaration_list, - [43390] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2387), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43399] = 2, + [43485] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2986), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2693), 1, + anon_sym_COLON_COLON, + ACTIONS(2961), 2, anon_sym_COMMA, - [43408] = 2, + anon_sym_GT, + [43496] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2988), 3, - anon_sym_RBRACE, + ACTIONS(384), 1, + anon_sym_LBRACE, + ACTIONS(2967), 1, anon_sym_SEMI, - anon_sym_COMMA, - [43417] = 4, + STATE(546), 1, + sym_block, + [43509] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2990), 1, - anon_sym_PIPE, - ACTIONS(2992), 1, - anon_sym_EQ_GT, - ACTIONS(2994), 1, - anon_sym_if, - [43430] = 4, + ACTIONS(1829), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + anon_sym_COLON_COLON, + STATE(795), 1, + sym_field_initializer_list, + [43522] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2799), 1, + ACTIONS(2971), 1, anon_sym_COMMA, - ACTIONS(2801), 1, + ACTIONS(2973), 1, anon_sym_GT, - STATE(1262), 1, - aux_sym_type_parameters_repeat1, - [43443] = 2, + STATE(1204), 1, + aux_sym_type_arguments_repeat1, + [43535] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2381), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43452] = 2, + ACTIONS(2586), 1, + anon_sym_COMMA, + ACTIONS(2588), 1, + anon_sym_RPAREN, + STATE(1226), 1, + aux_sym_parameters_repeat1, + [43548] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 3, + ACTIONS(485), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43461] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2569), 1, - anon_sym_LBRACE, - ACTIONS(2996), 1, - anon_sym_SEMI, - STATE(301), 1, - sym_declaration_list, - [43474] = 4, + [43557] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1833), 1, - anon_sym_RPAREN, - ACTIONS(2998), 1, + ACTIONS(690), 1, + anon_sym_RBRACK, + ACTIONS(2975), 1, anon_sym_COMMA, - STATE(1200), 1, - aux_sym_function_repeat1, - [43487] = 3, + STATE(1262), 1, + aux_sym_array_expression_repeat1, + [43570] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2383), 3, anon_sym_PIPE, - ACTIONS(3000), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [43498] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - ACTIONS(3002), 1, - anon_sym_COLON_COLON, - STATE(861), 1, - sym_type_arguments, - [43511] = 4, + anon_sym_EQ_GT, + anon_sym_if, + [43579] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2276), 1, + ACTIONS(2389), 1, anon_sym_RBRACE, - ACTIONS(3004), 1, + ACTIONS(2977), 1, anon_sym_COMMA, - STATE(1159), 1, - aux_sym_field_initializer_list_repeat1, - [43524] = 4, + STATE(1240), 1, + aux_sym_field_declaration_list_repeat1, + [43592] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - sym_identifier, - ACTIONS(2531), 1, - sym_mutable_specifier, - STATE(1399), 1, - sym_field_pattern, - [43537] = 3, + ACTIONS(2202), 1, + anon_sym_fn, + ACTIONS(2979), 1, + anon_sym_type, + STATE(1589), 1, + sym_function, + [43605] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3008), 1, + ACTIONS(2983), 1, anon_sym_COLON, - ACTIONS(3006), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [43548] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3010), 3, + ACTIONS(2981), 2, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [43557] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(593), 1, - anon_sym_RPAREN, - ACTIONS(1885), 1, - anon_sym_COMMA, - STATE(1165), 1, - aux_sym_arguments_repeat1, - [43570] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(593), 1, - anon_sym_RPAREN, - ACTIONS(1885), 1, anon_sym_COMMA, - STATE(1166), 1, - aux_sym_arguments_repeat1, - [43583] = 4, + [43616] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(3012), 1, + ACTIONS(2985), 1, anon_sym_SEMI, - STATE(271), 1, + STATE(557), 1, sym_declaration_list, - [43596] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2377), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43605] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2579), 1, - anon_sym_LBRACE, - ACTIONS(3014), 1, - anon_sym_SEMI, - STATE(274), 1, - sym_field_declaration_list, - [43618] = 4, + [43629] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3016), 1, + ACTIONS(2389), 1, anon_sym_RBRACE, - ACTIONS(3018), 1, + ACTIONS(2977), 1, anon_sym_COMMA, - STATE(1183), 1, - aux_sym_struct_pattern_repeat1, - [43631] = 4, + STATE(1236), 1, + aux_sym_field_declaration_list_repeat1, + [43642] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2196), 1, - anon_sym_fn, - ACTIONS(3020), 1, - anon_sym_type, - STATE(1474), 1, - sym_function, - [43644] = 4, + ACTIONS(2989), 1, + anon_sym_COLON, + ACTIONS(2987), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43653] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3022), 1, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(3024), 1, - anon_sym_RPAREN, - STATE(1226), 1, - aux_sym_function_repeat1, - [43657] = 2, + STATE(1232), 1, + aux_sym_enum_variant_list_repeat2, + [43666] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2375), 3, + ACTIONS(2379), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43666] = 4, + [43675] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1532), 1, - anon_sym_LBRACE, - ACTIONS(3026), 1, - anon_sym_COLON_COLON, - STATE(450), 1, - sym_field_initializer_list, - [43679] = 2, + ACTIONS(958), 1, + anon_sym_RPAREN, + ACTIONS(2616), 1, + anon_sym_COMMA, + STATE(1201), 1, + aux_sym_parameters_repeat1, + [43688] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 3, + ACTIONS(2377), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43688] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(384), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_SEMI, - STATE(489), 1, - sym_block, - [43701] = 2, + [43697] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2391), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(958), 1, + anon_sym_RPAREN, + ACTIONS(2616), 1, + anon_sym_COMMA, + STATE(1189), 1, + aux_sym_parameters_repeat1, [43710] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2359), 3, + ACTIONS(2373), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, [43719] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3030), 1, - anon_sym_RBRACE, - ACTIONS(3032), 1, - anon_sym_COMMA, - STATE(1247), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(2582), 1, + anon_sym_LBRACE, + ACTIONS(2993), 1, + anon_sym_SEMI, + STATE(292), 1, + sym_declaration_list, [43732] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(3035), 1, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2995), 1, anon_sym_SEMI, - STATE(321), 1, - sym_block, + STATE(1486), 1, + sym_type_parameters, [43745] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, - ACTIONS(3037), 1, - anon_sym_SEMI, - STATE(530), 1, - sym_declaration_list, - [43758] = 2, + ACTIONS(2359), 1, + anon_sym_RBRACE, + ACTIONS(2997), 1, + anon_sym_COMMA, + STATE(1233), 1, + aux_sym_enum_variant_list_repeat2, + [43758] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2361), 3, + ACTIONS(2999), 1, + anon_sym_RBRACE, + ACTIONS(3001), 1, + anon_sym_COMMA, + STATE(1233), 1, + aux_sym_enum_variant_list_repeat2, + [43771] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2429), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43767] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, - ACTIONS(3039), 1, - anon_sym_SEMI, - STATE(508), 1, - sym_declaration_list, [43780] = 2, ACTIONS(3), 1, sym_line_comment, @@ -64309,2426 +64378,2609 @@ static const uint16_t ts_small_parse_table[] = { [43789] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(694), 1, - anon_sym_RBRACK, - ACTIONS(1808), 1, + ACTIONS(2375), 1, + anon_sym_RBRACE, + ACTIONS(3004), 1, anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [43802] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2425), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43811] = 4, + STATE(1240), 1, + aux_sym_field_declaration_list_repeat1, + [43802] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, - anon_sym_LBRACE, - ACTIONS(3041), 1, - anon_sym_SEMI, - STATE(276), 1, - sym_declaration_list, - [43824] = 3, + ACTIONS(3006), 1, + anon_sym_RBRACE, + ACTIONS(3008), 1, + anon_sym_COMMA, + STATE(1322), 1, + aux_sym_enum_variant_list_repeat2, + [43815] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, - anon_sym_COLON_COLON, - ACTIONS(3043), 2, - anon_sym_COMMA, + ACTIONS(1524), 1, anon_sym_GT, - [43835] = 4, + ACTIONS(3010), 1, + anon_sym_COMMA, + STATE(1177), 1, + aux_sym_type_arguments_repeat1, + [43828] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2610), 1, - anon_sym_LBRACE, - ACTIONS(3045), 1, + ACTIONS(3012), 3, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(538), 1, - sym_field_declaration_list, - [43848] = 3, + anon_sym_COMMA, + [43837] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, - anon_sym_COLON_COLON, - ACTIONS(3047), 2, + ACTIONS(3014), 1, + anon_sym_RBRACE, + ACTIONS(3016), 1, anon_sym_COMMA, - anon_sym_GT, - [43859] = 3, + STATE(1240), 1, + aux_sym_field_declaration_list_repeat1, + [43850] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(3049), 2, + ACTIONS(3021), 1, + anon_sym_COLON, + ACTIONS(3019), 2, anon_sym_RBRACE, anon_sym_COMMA, - [43870] = 3, + [43861] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2724), 1, - anon_sym_COLON_COLON, - ACTIONS(3047), 2, + ACTIONS(595), 1, + anon_sym_RPAREN, + ACTIONS(1881), 1, anon_sym_COMMA, - anon_sym_GT, - [43881] = 4, + STATE(1282), 1, + aux_sym_arguments_repeat1, + [43874] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1875), 1, - anon_sym_GT, - ACTIONS(3051), 1, - anon_sym_COMMA, - STATE(1276), 1, - aux_sym_type_parameters_repeat1, - [43894] = 4, + ACTIONS(2421), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43883] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1873), 1, - anon_sym_GT, - ACTIONS(2722), 1, + ACTIONS(2759), 1, + anon_sym_RBRACE, + ACTIONS(3023), 1, anon_sym_COMMA, - STATE(1276), 1, - aux_sym_type_parameters_repeat1, + STATE(1156), 1, + aux_sym_struct_pattern_repeat1, + [43896] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3025), 1, + anon_sym_in, + ACTIONS(3027), 2, + sym_super, + sym_crate, [43907] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1873), 1, - anon_sym_GT, - ACTIONS(2722), 1, + ACTIONS(3029), 1, + anon_sym_RBRACE, + ACTIONS(3031), 1, anon_sym_COMMA, - STATE(1290), 1, - aux_sym_type_parameters_repeat1, - [43920] = 4, + STATE(1172), 1, + aux_sym_use_list_repeat1, + [43920] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, - anon_sym_LBRACE, - ACTIONS(3053), 1, + ACTIONS(3033), 3, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(258), 1, - sym_declaration_list, - [43933] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2357), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43942] = 3, + anon_sym_COMMA, + [43929] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2724), 1, - anon_sym_COLON_COLON, - ACTIONS(3043), 2, - anon_sym_COMMA, - anon_sym_GT, - [43953] = 2, + ACTIONS(384), 1, + anon_sym_LBRACE, + ACTIONS(3035), 1, + anon_sym_SEMI, + STATE(504), 1, + sym_block, + [43942] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2363), 3, + ACTIONS(2415), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43962] = 4, + [43951] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(696), 1, - anon_sym_RBRACK, - ACTIONS(3055), 1, - anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [43975] = 2, + ACTIONS(2202), 1, + anon_sym_fn, + ACTIONS(3037), 1, + anon_sym_type, + STATE(1492), 1, + sym_function, + [43964] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2367), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43984] = 4, + ACTIONS(1480), 1, + anon_sym_RPAREN, + ACTIONS(3039), 1, + anon_sym_COMMA, + STATE(1094), 1, + aux_sym_tuple_pattern_repeat1, + [43977] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2351), 1, + ACTIONS(3041), 1, anon_sym_RBRACE, - ACTIONS(3057), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1323), 1, - aux_sym_enum_variant_list_repeat2, - [43997] = 2, + STATE(1218), 1, + aux_sym_field_declaration_list_repeat1, + [43990] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2618), 1, + anon_sym_LBRACE, + ACTIONS(3045), 1, + anon_sym_SEMI, + STATE(488), 1, + sym_declaration_list, + [44003] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2373), 3, + ACTIONS(2363), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44006] = 2, + [44012] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2383), 3, + ACTIONS(2419), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44015] = 4, + [44021] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3059), 1, - anon_sym_COMMA, - ACTIONS(3062), 1, - anon_sym_GT, - STATE(1273), 1, - aux_sym_type_arguments_repeat1, - [44028] = 4, + ACTIONS(2618), 1, + anon_sym_LBRACE, + ACTIONS(3047), 1, + anon_sym_SEMI, + STATE(526), 1, + sym_declaration_list, + [44034] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2379), 1, - anon_sym_RBRACE, - ACTIONS(3064), 1, + ACTIONS(688), 1, + anon_sym_RBRACK, + ACTIONS(1819), 1, anon_sym_COMMA, - STATE(1308), 1, - aux_sym_field_declaration_list_repeat1, - [44041] = 2, + STATE(1262), 1, + aux_sym_array_expression_repeat1, + [44047] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2385), 3, + ACTIONS(2166), 1, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [44050] = 4, + ACTIONS(2817), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44058] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3043), 1, - anon_sym_GT, - ACTIONS(3066), 1, - anon_sym_COMMA, - STATE(1276), 1, - aux_sym_type_parameters_repeat1, - [44063] = 4, + ACTIONS(2176), 1, + anon_sym_LT2, + ACTIONS(3049), 1, + anon_sym_LBRACE, + STATE(868), 1, + sym_type_arguments, + [44071] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(3069), 1, - anon_sym_SEMI, - STATE(1573), 1, - sym_type_parameters, - [44076] = 4, + ACTIONS(706), 1, + anon_sym_RBRACK, + ACTIONS(1879), 1, + anon_sym_COMMA, + STATE(1262), 1, + aux_sym_array_expression_repeat1, + [44084] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(2525), 1, anon_sym_LBRACE, - ACTIONS(3071), 1, + ACTIONS(3051), 1, anon_sym_SEMI, - STATE(523), 1, - sym_declaration_list, - [44089] = 4, + STATE(514), 1, + sym_field_declaration_list, + [44097] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(597), 1, - anon_sym_RPAREN, - ACTIONS(3073), 1, + ACTIONS(1975), 1, + anon_sym_RBRACK, + ACTIONS(3053), 1, anon_sym_COMMA, - STATE(1165), 1, - aux_sym_arguments_repeat1, - [44102] = 2, + STATE(1262), 1, + aux_sym_array_expression_repeat1, + [44110] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3075), 3, + ACTIONS(2675), 1, + anon_sym_PIPE, + ACTIONS(3056), 2, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_COMMA, - [44111] = 4, + [44121] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3077), 1, - anon_sym_RBRACE, - ACTIONS(3079), 1, + ACTIONS(2544), 1, + anon_sym_RPAREN, + ACTIONS(3058), 1, anon_sym_COMMA, - STATE(1202), 1, - aux_sym_use_list_repeat1, - [44124] = 4, + STATE(1264), 1, + aux_sym_function_repeat1, + [44134] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2698), 1, + ACTIONS(2737), 1, anon_sym_RBRACE, - ACTIONS(3081), 1, + ACTIONS(3061), 1, anon_sym_COMMA, - STATE(1247), 1, + STATE(1156), 1, aux_sym_struct_pattern_repeat1, - [44137] = 4, + [44147] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3083), 1, - anon_sym_RBRACE, - ACTIONS(3085), 1, - anon_sym_COMMA, - STATE(1324), 1, - aux_sym_field_initializer_list_repeat1, - [44150] = 4, + ACTIONS(1496), 1, + anon_sym_LBRACE, + ACTIONS(3063), 1, + anon_sym_SEMI, + STATE(305), 1, + sym_block, + [44160] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2393), 1, - anon_sym_RBRACE, - ACTIONS(3087), 1, + ACTIONS(3065), 1, anon_sym_COMMA, - STATE(1308), 1, - aux_sym_field_declaration_list_repeat1, - [44163] = 4, + ACTIONS(3068), 1, + anon_sym_GT, + STATE(1267), 1, + aux_sym_type_parameters_repeat1, + [44173] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1474), 1, - anon_sym_RPAREN, - ACTIONS(3089), 1, + ACTIONS(2341), 1, + anon_sym_RBRACE, + ACTIONS(3070), 1, anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [44176] = 4, + STATE(1233), 1, + aux_sym_enum_variant_list_repeat2, + [44186] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2393), 1, + ACTIONS(3072), 3, anon_sym_RBRACE, - ACTIONS(3087), 1, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1318), 1, - aux_sym_field_declaration_list_repeat1, - [44189] = 4, + [44195] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1843), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_RPAREN, - STATE(1325), 1, - aux_sym_arguments_repeat1, - [44202] = 4, + ACTIONS(2555), 1, + sym_identifier, + ACTIONS(2557), 1, + sym_mutable_specifier, + STATE(1392), 1, + sym_field_pattern, + [44208] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1857), 1, - anon_sym_GT, - ACTIONS(3091), 1, + ACTIONS(3074), 1, + anon_sym_RBRACE, + ACTIONS(3076), 1, anon_sym_COMMA, - STATE(1276), 1, - aux_sym_type_parameters_repeat1, - [44215] = 4, + STATE(1271), 1, + aux_sym_use_list_repeat1, + [44221] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(1544), 1, anon_sym_LBRACE, - ACTIONS(3093), 1, - anon_sym_SEMI, - STATE(565), 1, - sym_declaration_list, - [44228] = 4, + ACTIONS(3079), 1, + anon_sym_COLON_COLON, + STATE(444), 1, + sym_field_initializer_list, + [44234] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1865), 1, - anon_sym_GT, - ACTIONS(3095), 1, - anon_sym_COMMA, - STATE(1276), 1, - aux_sym_type_parameters_repeat1, - [44241] = 4, + ACTIONS(3081), 1, + anon_sym_in, + ACTIONS(3083), 2, + sym_super, + sym_crate, + [44245] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2343), 1, + ACTIONS(3087), 1, + anon_sym_COLON, + ACTIONS(3085), 2, anon_sym_RBRACE, - ACTIONS(3097), 1, anon_sym_COMMA, - STATE(1323), 1, - aux_sym_enum_variant_list_repeat2, - [44254] = 2, + [44256] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2202), 1, + anon_sym_fn, + ACTIONS(3089), 1, + anon_sym_type, + STATE(1532), 1, + sym_function, + [44269] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3099), 3, + ACTIONS(3091), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3093), 1, anon_sym_COMMA, - [44263] = 4, + STATE(1276), 1, + aux_sym_field_initializer_list_repeat1, + [44282] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(3101), 1, + ACTIONS(1544), 1, + anon_sym_LBRACE, + ACTIONS(3096), 1, + anon_sym_COLON_COLON, + STATE(444), 1, + sym_field_initializer_list, + [44295] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2397), 1, + anon_sym_RBRACE, + ACTIONS(3098), 1, anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [44276] = 4, + STATE(1240), 1, + aux_sym_field_declaration_list_repeat1, + [44308] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(3103), 1, + ACTIONS(1496), 1, + anon_sym_LBRACE, + ACTIONS(3100), 1, anon_sym_SEMI, - STATE(1601), 1, - sym_type_parameters, - [44289] = 3, + STATE(275), 1, + sym_block, + [44321] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3107), 1, - anon_sym_COLON, - ACTIONS(3105), 2, - anon_sym_RBRACE, + ACTIONS(1935), 1, + anon_sym_RPAREN, + ACTIONS(3102), 1, anon_sym_COMMA, - [44300] = 4, + STATE(1280), 1, + aux_sym_arguments_repeat1, + [44334] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2690), 1, + ACTIONS(3105), 1, anon_sym_RBRACE, + ACTIONS(3107), 1, + anon_sym_COMMA, + STATE(1152), 1, + aux_sym_field_initializer_list_repeat1, + [44347] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(593), 1, + anon_sym_RPAREN, ACTIONS(3109), 1, anon_sym_COMMA, - STATE(1247), 1, - aux_sym_struct_pattern_repeat1, - [44313] = 4, + STATE(1280), 1, + aux_sym_arguments_repeat1, + [44360] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, ACTIONS(3111), 1, anon_sym_SEMI, - STATE(504), 1, + STATE(496), 1, sym_declaration_list, - [44326] = 4, + [44373] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2343), 1, - anon_sym_RBRACE, - ACTIONS(3097), 1, + ACTIONS(591), 1, + anon_sym_RPAREN, + ACTIONS(3113), 1, anon_sym_COMMA, - STATE(1326), 1, - aux_sym_enum_variant_list_repeat2, - [44339] = 4, + STATE(1280), 1, + aux_sym_arguments_repeat1, + [44386] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1514), 1, - anon_sym_GT, - ACTIONS(3113), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - STATE(1273), 1, - aux_sym_type_arguments_repeat1, - [44352] = 4, + ACTIONS(1857), 1, + anon_sym_RPAREN, + STATE(1149), 1, + aux_sym_arguments_repeat1, + [44399] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(956), 1, - anon_sym_RPAREN, - ACTIONS(3115), 1, - anon_sym_COMMA, - STATE(1203), 1, - aux_sym_parameters_repeat1, - [44365] = 4, + ACTIONS(2423), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44408] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2341), 1, + ACTIONS(3115), 1, anon_sym_RBRACE, ACTIONS(3117), 1, anon_sym_COMMA, - STATE(1270), 1, - aux_sym_enum_variant_list_repeat2, - [44378] = 4, + STATE(1312), 1, + aux_sym_field_initializer_list_repeat1, + [44421] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2341), 1, + ACTIONS(2399), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44430] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2707), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(3119), 1, anon_sym_COMMA, - STATE(1323), 1, - aux_sym_enum_variant_list_repeat2, - [44391] = 4, + STATE(1156), 1, + aux_sym_struct_pattern_repeat1, + [44443] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 1, + ACTIONS(2413), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44452] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1875), 1, + anon_sym_COMMA, + ACTIONS(1877), 1, + anon_sym_RPAREN, + STATE(1316), 1, + aux_sym_arguments_repeat1, + [44465] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2582), 1, anon_sym_LBRACE, - ACTIONS(3119), 1, + ACTIONS(3121), 1, anon_sym_SEMI, - STATE(262), 1, + STATE(324), 1, sym_declaration_list, - [44404] = 4, + [44478] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(690), 1, - anon_sym_RBRACK, - ACTIONS(1841), 1, - anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [44417] = 4, + ACTIONS(2618), 1, + anon_sym_LBRACE, + ACTIONS(3123), 1, + anon_sym_SEMI, + STATE(541), 1, + sym_declaration_list, + [44491] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2688), 1, - anon_sym_EQ, - STATE(1570), 1, - sym_type_parameters, - [44430] = 4, + ACTIONS(2166), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44500] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3121), 1, - anon_sym_RBRACE, - ACTIONS(3123), 1, + ACTIONS(1887), 1, + anon_sym_GT, + ACTIONS(3125), 1, anon_sym_COMMA, - STATE(1333), 1, - aux_sym_field_declaration_list_repeat1, - [44443] = 4, + STATE(1267), 1, + aux_sym_type_parameters_repeat1, + [44513] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3125), 1, - anon_sym_RBRACE, + ACTIONS(1484), 1, + anon_sym_RPAREN, ACTIONS(3127), 1, anon_sym_COMMA, - STATE(1302), 1, - aux_sym_enum_variant_list_repeat2, - [44456] = 4, + STATE(1094), 1, + aux_sym_tuple_pattern_repeat1, + [44526] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + anon_sym_LT, + ACTIONS(2711), 1, + anon_sym_EQ, + STATE(1483), 1, + sym_type_parameters, + [44539] = 4, ACTIONS(3), 1, sym_line_comment, + ACTIONS(2529), 1, + anon_sym_LT, ACTIONS(3129), 1, - anon_sym_RBRACE, - ACTIONS(3131), 1, - anon_sym_COMMA, - STATE(1308), 1, - aux_sym_field_declaration_list_repeat1, - [44469] = 4, + anon_sym_SEMI, + STATE(1598), 1, + sym_type_parameters, + [44552] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(952), 1, - anon_sym_RPAREN, - ACTIONS(2651), 1, - anon_sym_COMMA, - STATE(1203), 1, - aux_sym_parameters_repeat1, - [44482] = 4, + ACTIONS(2411), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44561] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1484), 1, - anon_sym_RBRACK, - ACTIONS(3134), 1, - anon_sym_COMMA, - STATE(1045), 1, - aux_sym_tuple_pattern_repeat1, - [44495] = 4, + ACTIONS(2385), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44570] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1867), 1, - anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_RPAREN, - STATE(1233), 1, - aux_sym_arguments_repeat1, - [44508] = 4, + ACTIONS(2618), 1, + anon_sym_LBRACE, + ACTIONS(3131), 1, + anon_sym_SEMI, + STATE(522), 1, + sym_declaration_list, + [44583] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1472), 1, + ACTIONS(1458), 1, anon_sym_RPAREN, - ACTIONS(3136), 1, + ACTIONS(3133), 1, anon_sym_COMMA, - STATE(1045), 1, + STATE(1094), 1, aux_sym_tuple_pattern_repeat1, - [44521] = 4, + [44596] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3138), 1, - anon_sym_COMMA, - ACTIONS(3140), 1, - anon_sym_GT, - STATE(1299), 1, - aux_sym_type_arguments_repeat1, - [44534] = 4, + ACTIONS(2582), 1, + anon_sym_LBRACE, + ACTIONS(3135), 1, + anon_sym_SEMI, + STATE(284), 1, + sym_declaration_list, + [44609] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3142), 1, + ACTIONS(2699), 1, anon_sym_RBRACE, - ACTIONS(3144), 1, + ACTIONS(3137), 1, anon_sym_COMMA, - STATE(1296), 1, + STATE(1156), 1, aux_sym_struct_pattern_repeat1, - [44547] = 4, + [44622] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(952), 1, - anon_sym_RPAREN, - ACTIONS(2651), 1, + ACTIONS(2405), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44631] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1883), 1, + anon_sym_GT, + ACTIONS(3139), 1, anon_sym_COMMA, - STATE(1300), 1, - aux_sym_parameters_repeat1, - [44560] = 3, + STATE(1267), 1, + aux_sym_type_parameters_repeat1, + [44644] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2724), 1, - anon_sym_COLON_COLON, - ACTIONS(2900), 2, + ACTIONS(702), 1, + anon_sym_RBRACK, + ACTIONS(3141), 1, anon_sym_COMMA, - anon_sym_GT, - [44571] = 4, + STATE(1262), 1, + aux_sym_array_expression_repeat1, + [44657] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2401), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44666] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3146), 1, + ACTIONS(2367), 1, anon_sym_RBRACE, - ACTIONS(3148), 1, + ACTIONS(3143), 1, anon_sym_COMMA, - STATE(1282), 1, - aux_sym_struct_pattern_repeat1, - [44584] = 4, + STATE(1240), 1, + aux_sym_field_declaration_list_repeat1, + [44679] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2411), 1, + ACTIONS(696), 1, + anon_sym_RBRACK, + ACTIONS(1873), 1, + anon_sym_COMMA, + STATE(1262), 1, + aux_sym_array_expression_repeat1, + [44692] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2367), 1, anon_sym_RBRACE, - ACTIONS(3150), 1, + ACTIONS(3143), 1, anon_sym_COMMA, - STATE(1308), 1, + STATE(1278), 1, aux_sym_field_declaration_list_repeat1, - [44597] = 4, + [44705] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3152), 1, + ACTIONS(2305), 1, anon_sym_RBRACE, - ACTIONS(3154), 1, + ACTIONS(3145), 1, anon_sym_COMMA, - STATE(1229), 1, + STATE(1276), 1, aux_sym_field_initializer_list_repeat1, - [44610] = 3, + [44718] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3158), 1, - anon_sym_COLON, - ACTIONS(3156), 2, + ACTIONS(3147), 1, anon_sym_RBRACE, + ACTIONS(3149), 1, anon_sym_COMMA, - [44621] = 4, + STATE(1309), 1, + aux_sym_field_declaration_list_repeat1, + [44731] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(2674), 1, - anon_sym_EQ, - STATE(1622), 1, - sym_type_parameters, - [44634] = 2, + ACTIONS(2582), 1, + anon_sym_LBRACE, + ACTIONS(3151), 1, + anon_sym_SEMI, + STATE(271), 1, + sym_declaration_list, + [44744] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2407), 3, + ACTIONS(3153), 1, + anon_sym_RBRACE, + ACTIONS(3155), 1, + anon_sym_COMMA, + STATE(1335), 1, + aux_sym_enum_variant_list_repeat2, + [44757] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(599), 1, + anon_sym_RPAREN, + ACTIONS(1859), 1, + anon_sym_COMMA, + STATE(1280), 1, + aux_sym_arguments_repeat1, + [44770] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2393), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44643] = 4, + [44779] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3160), 1, - anon_sym_RBRACE, - ACTIONS(3162), 1, + ACTIONS(1472), 1, + anon_sym_RBRACK, + ACTIONS(3157), 1, anon_sym_COMMA, - STATE(1323), 1, - aux_sym_enum_variant_list_repeat2, - [44656] = 4, + STATE(1094), 1, + aux_sym_tuple_pattern_repeat1, + [44792] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2306), 1, - anon_sym_RBRACE, - ACTIONS(3165), 1, - anon_sym_COMMA, - STATE(1159), 1, - aux_sym_field_initializer_list_repeat1, - [44669] = 4, + ACTIONS(2391), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44801] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(599), 1, + ACTIONS(1482), 1, anon_sym_RPAREN, - ACTIONS(1839), 1, + ACTIONS(3159), 1, anon_sym_COMMA, - STATE(1165), 1, - aux_sym_arguments_repeat1, - [44682] = 4, + STATE(1094), 1, + aux_sym_tuple_pattern_repeat1, + [44814] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2349), 1, + ACTIONS(3161), 1, + anon_sym_COMMA, + ACTIONS(3163), 1, + anon_sym_GT, + STATE(1330), 1, + aux_sym_type_arguments_repeat1, + [44827] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2335), 1, anon_sym_RBRACE, - ACTIONS(3167), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - STATE(1323), 1, + STATE(1233), 1, aux_sym_enum_variant_list_repeat2, - [44695] = 4, + [44840] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3165), 1, + anon_sym_RBRACE, + ACTIONS(3167), 1, + anon_sym_COMMA, + STATE(1304), 1, + aux_sym_struct_pattern_repeat1, + [44853] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(599), 1, anon_sym_RPAREN, - ACTIONS(1839), 1, + ACTIONS(1859), 1, anon_sym_COMMA, - STATE(1279), 1, + STATE(1284), 1, aux_sym_arguments_repeat1, - [44708] = 4, + [44866] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, - anon_sym_LBRACE, + ACTIONS(1885), 1, + anon_sym_RPAREN, ACTIONS(3169), 1, - anon_sym_SEMI, - STATE(560), 1, - sym_declaration_list, - [44721] = 4, + anon_sym_COMMA, + STATE(1264), 1, + aux_sym_function_repeat1, + [44879] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, ACTIONS(3171), 1, anon_sym_SEMI, - STATE(558), 1, - sym_field_declaration_list, - [44734] = 4, + STATE(561), 1, + sym_declaration_list, + [44892] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 1, - anon_sym_LT, - ACTIONS(3173), 1, - anon_sym_SEMI, - STATE(1555), 1, - sym_type_parameters, - [44747] = 4, + ACTIONS(2252), 1, + anon_sym_COLON_COLON, + ACTIONS(3068), 2, + anon_sym_COMMA, + anon_sym_GT, + [44903] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2545), 1, + ACTIONS(2525), 1, anon_sym_LBRACE, - ACTIONS(3175), 1, + ACTIONS(3173), 1, anon_sym_SEMI, - STATE(552), 1, - sym_declaration_list, - [44760] = 4, + STATE(548), 1, + sym_field_declaration_list, + [44916] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(704), 1, - anon_sym_RBRACK, - ACTIONS(3177), 1, + ACTIONS(2689), 1, anon_sym_COMMA, - STATE(1193), 1, - aux_sym_array_expression_repeat1, - [44773] = 4, + ACTIONS(2691), 1, + anon_sym_GT, + STATE(1202), 1, + aux_sym_type_parameters_repeat1, + [44929] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2405), 1, - anon_sym_RBRACE, - ACTIONS(3179), 1, + ACTIONS(1516), 1, + anon_sym_GT, + ACTIONS(3175), 1, anon_sym_COMMA, - STATE(1308), 1, - aux_sym_field_declaration_list_repeat1, - [44786] = 4, + STATE(1177), 1, + aux_sym_type_arguments_repeat1, + [44942] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2405), 1, + ACTIONS(3177), 1, anon_sym_RBRACE, ACTIONS(3179), 1, anon_sym_COMMA, - STATE(1274), 1, - aux_sym_field_declaration_list_repeat1, - [44799] = 3, + STATE(1289), 1, + aux_sym_struct_pattern_repeat1, + [44955] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2399), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44964] = 4, ACTIONS(3), 1, sym_line_comment, + ACTIONS(2371), 1, + anon_sym_LT2, ACTIONS(3181), 1, anon_sym_COLON_COLON, + STATE(869), 1, + sym_type_arguments, + [44977] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2529), 1, + anon_sym_LT, ACTIONS(3183), 1, - anon_sym_RPAREN, - [44809] = 2, + anon_sym_SEMI, + STATE(1566), 1, + sym_type_parameters, + [44990] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2339), 1, + anon_sym_RBRACE, + ACTIONS(3185), 1, + anon_sym_COMMA, + STATE(1233), 1, + aux_sym_enum_variant_list_repeat2, + [45003] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2618), 1, + anon_sym_LBRACE, + ACTIONS(3187), 1, + anon_sym_SEMI, + STATE(537), 1, + sym_declaration_list, + [45016] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2339), 1, + anon_sym_RBRACE, + ACTIONS(3185), 1, + anon_sym_COMMA, + STATE(1268), 1, + aux_sym_enum_variant_list_repeat2, + [45029] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2693), 1, + anon_sym_COLON_COLON, + ACTIONS(3068), 2, + anon_sym_COMMA, + anon_sym_GT, + [45040] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3189), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45048] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2702), 2, + ACTIONS(3191), 2, sym_identifier, sym_super, - [44817] = 3, + [45056] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3185), 1, + ACTIONS(3193), 1, anon_sym_BANG, - ACTIONS(3187), 1, + ACTIONS(3195), 1, anon_sym_LBRACK, - [44827] = 3, + [45066] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3183), 1, - anon_sym_RPAREN, - ACTIONS(3189), 1, + ACTIONS(2459), 1, anon_sym_COLON_COLON, - [44837] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3191), 1, - anon_sym_SEMI, - ACTIONS(3193), 1, - anon_sym_EQ, - [44847] = 3, + ACTIONS(3197), 1, + anon_sym_BANG, + [45076] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3195), 1, + ACTIONS(3199), 1, anon_sym_of, - ACTIONS(3197), 1, + ACTIONS(3201), 1, anon_sym_EQ, - [44857] = 3, + [45086] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(3199), 1, - anon_sym_EQ, - [44867] = 2, + ACTIONS(2371), 1, + anon_sym_LT2, + STATE(868), 1, + sym_type_arguments, + [45096] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3201), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [44875] = 3, + ACTIONS(2842), 2, + sym_identifier, + sym_super, + [45104] = 3, ACTIONS(3), 1, sym_line_comment, + ACTIONS(2254), 1, + sym_identifier, ACTIONS(3203), 1, - anon_sym_of, + anon_sym_LPAREN, + [45114] = 3, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(3205), 1, + anon_sym_of, + ACTIONS(3207), 1, anon_sym_EQ, - [44885] = 3, + [45124] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3207), 1, - anon_sym_BANG, - ACTIONS(3209), 1, - anon_sym_LBRACK, - [44895] = 3, + ACTIONS(3209), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45132] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(3211), 1, anon_sym_BANG, ACTIONS(3213), 1, anon_sym_LBRACK, - [44905] = 2, + [45142] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3215), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [44913] = 3, + ACTIONS(3215), 1, + anon_sym_BANG, + ACTIONS(3217), 1, + anon_sym_LBRACK, + [45152] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2694), 1, - anon_sym_LBRACE, - STATE(556), 1, - sym_enum_variant_list, - [44923] = 2, + ACTIONS(3219), 1, + anon_sym_SEMI, + ACTIONS(3221), 1, + anon_sym_EQ, + [45162] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3217), 2, + ACTIONS(3223), 2, anon_sym_LBRACE, anon_sym_SEMI, - [44931] = 3, + [45170] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(3219), 1, - anon_sym_COLON, - [44941] = 2, + ACTIONS(3225), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45178] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3160), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [44949] = 3, + ACTIONS(3227), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45186] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2852), 1, + ACTIONS(2842), 1, sym_super, - ACTIONS(3221), 1, - sym_identifier, - [44959] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2900), 2, - anon_sym_COMMA, - anon_sym_GT, - [44967] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3229), 1, sym_identifier, - sym_super, - [44975] = 2, + [45196] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3225), 2, + ACTIONS(3231), 2, anon_sym_type, anon_sym_fn, - [44983] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2742), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [44991] = 3, + [45204] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(70), 1, + STATE(81), 1, sym_block, - [45001] = 2, + [45214] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3227), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45009] = 3, + ACTIONS(3233), 1, + anon_sym_COLON_COLON, + ACTIONS(3235), 1, + anon_sym_RPAREN, + [45224] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3183), 1, + ACTIONS(3237), 1, + anon_sym_COLON_COLON, + ACTIONS(3239), 1, anon_sym_RPAREN, - ACTIONS(3229), 1, + [45234] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3235), 1, + anon_sym_RPAREN, + ACTIONS(3241), 1, anon_sym_COLON_COLON, - [45019] = 2, + [45244] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3129), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45027] = 3, + ACTIONS(3235), 1, + anon_sym_RPAREN, + ACTIONS(3243), 1, + anon_sym_COLON_COLON, + [45254] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2381), 1, - anon_sym_PIPE, - ACTIONS(3219), 1, - anon_sym_COLON, - [45037] = 3, + ACTIONS(2278), 1, + anon_sym_BANG, + ACTIONS(2665), 1, + anon_sym_COLON_COLON, + [45264] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2172), 1, - anon_sym_LT2, - STATE(445), 1, - sym_type_arguments, - [45047] = 2, + ACTIONS(2703), 1, + anon_sym_LBRACE, + STATE(544), 1, + sym_enum_variant_list, + [45274] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3245), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45055] = 3, + [45282] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3233), 1, + ACTIONS(3247), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3235), 1, - anon_sym_EQ, - [45065] = 3, + [45290] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 1, + ACTIONS(2170), 1, anon_sym_BANG, - ACTIONS(2589), 1, + ACTIONS(2665), 1, anon_sym_COLON_COLON, - [45075] = 3, + [45300] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2229), 1, - sym_identifier, - ACTIONS(3237), 1, - anon_sym_LPAREN, - [45085] = 3, + ACTIONS(3249), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45308] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 1, - anon_sym_BANG, - ACTIONS(3239), 1, - anon_sym_COLON_COLON, - [45095] = 3, + ACTIONS(3251), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45316] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3241), 1, + ACTIONS(3253), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3243), 1, - anon_sym_RBRACK, - [45105] = 2, + [45324] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3245), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45113] = 3, + ACTIONS(2170), 1, + anon_sym_BANG, + ACTIONS(3255), 1, + anon_sym_COLON_COLON, + [45334] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3247), 1, + ACTIONS(2453), 1, + anon_sym_COLON_COLON, + ACTIONS(3257), 1, + anon_sym_BANG, + [45344] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3259), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3249), 1, - anon_sym_EQ, - [45123] = 2, + [45352] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3251), 2, + ACTIONS(3261), 2, anon_sym_COMMA, anon_sym_RPAREN, - [45131] = 3, + [45360] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3263), 1, + anon_sym_SEMI, + ACTIONS(3265), 1, + anon_sym_EQ, + [45370] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1532), 1, + ACTIONS(1544), 1, anon_sym_LBRACE, - STATE(450), 1, + STATE(444), 1, sym_field_initializer_list, - [45141] = 2, + [45380] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(482), 2, + ACTIONS(2743), 2, anon_sym_COMMA, - anon_sym_GT, - [45149] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2696), 1, - anon_sym_LBRACE, - STATE(275), 1, - sym_enum_variant_list, - [45159] = 3, + anon_sym_RPAREN, + [45388] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3253), 1, - anon_sym_of, - ACTIONS(3255), 1, - anon_sym_EQ, - [45169] = 3, + ACTIONS(3267), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45396] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3189), 1, - anon_sym_COLON_COLON, - ACTIONS(3257), 1, - anon_sym_RPAREN, - [45179] = 3, + ACTIONS(3269), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45404] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3181), 1, + ACTIONS(2449), 1, anon_sym_COLON_COLON, ACTIONS(3257), 1, - anon_sym_RPAREN, - [45189] = 3, + anon_sym_BANG, + [45414] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3259), 1, - anon_sym_COLON_COLON, - ACTIONS(3261), 1, - anon_sym_RPAREN, - [45199] = 2, + ACTIONS(3271), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45422] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3263), 2, - anon_sym_LBRACE, + ACTIONS(3273), 1, anon_sym_SEMI, - [45207] = 3, + ACTIONS(3275), 1, + anon_sym_EQ, + [45432] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3229), 1, - anon_sym_COLON_COLON, - ACTIONS(3257), 1, - anon_sym_RPAREN, - [45217] = 3, + ACTIONS(2439), 2, + sym_identifier, + sym_super, + [45440] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3265), 1, - anon_sym_SEMI, - ACTIONS(3267), 1, - anon_sym_EQ, - [45227] = 3, + ACTIONS(2961), 2, + anon_sym_COMMA, + anon_sym_GT, + [45448] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, - anon_sym_PIPE, - ACTIONS(3269), 1, - anon_sym_EQ, - [45237] = 3, + ACTIONS(3277), 2, + anon_sym_COMMA, + anon_sym_GT, + [45456] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - sym_super, - [45247] = 3, + ACTIONS(3279), 2, + anon_sym_COMMA, + anon_sym_GT, + [45464] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3275), 1, + ACTIONS(3281), 1, anon_sym_SEMI, - ACTIONS(3277), 1, + ACTIONS(3283), 1, anon_sym_EQ, - [45257] = 3, + [45474] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1913), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45482] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3279), 1, + ACTIONS(3285), 1, anon_sym_SEMI, - ACTIONS(3281), 1, + ACTIONS(3287), 1, anon_sym_EQ, - [45267] = 2, + [45492] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3283), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45275] = 2, + ACTIONS(3191), 1, + sym_super, + ACTIONS(3289), 1, + sym_identifier, + [45502] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3285), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45283] = 2, + ACTIONS(2675), 1, + anon_sym_PIPE, + ACTIONS(3291), 1, + anon_sym_EQ, + [45512] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3062), 2, - anon_sym_COMMA, - anon_sym_GT, - [45291] = 2, + ACTIONS(2723), 2, + sym_identifier, + sym_super, + [45520] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3287), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45299] = 2, + ACTIONS(2880), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45528] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3289), 2, - sym_identifier, - sym_super, - [45307] = 2, + ACTIONS(2715), 1, + anon_sym_LPAREN, + ACTIONS(3293), 1, + anon_sym_COLON_COLON, + [45538] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2465), 2, + ACTIONS(3295), 2, sym_identifier, sym_super, - [45315] = 3, + [45546] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3289), 1, + ACTIONS(3295), 1, sym_super, - ACTIONS(3291), 1, + ACTIONS(3297), 1, sym_identifier, - [45325] = 3, + [45556] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3289), 1, - sym_super, - ACTIONS(3293), 1, - sym_identifier, - [45335] = 3, + ACTIONS(2928), 2, + anon_sym_COMMA, + anon_sym_GT, + [45564] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2700), 1, + ACTIONS(2721), 1, sym_identifier, - ACTIONS(2702), 1, + ACTIONS(2723), 1, sym_super, - [45345] = 2, + [45574] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3295), 2, + ACTIONS(3299), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45353] = 3, + [45582] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - [45363] = 2, + ACTIONS(3301), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45590] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3299), 2, + ACTIONS(2675), 1, + anon_sym_PIPE, + ACTIONS(3303), 1, + anon_sym_EQ, + [45600] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3305), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45371] = 3, + [45608] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2694), 1, + ACTIONS(2703), 1, anon_sym_LBRACE, - STATE(568), 1, + STATE(523), 1, sym_enum_variant_list, - [45381] = 2, + [45618] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3301), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45389] = 2, + ACTIONS(3307), 2, + sym_identifier, + sym_super, + [45626] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3030), 2, - anon_sym_RBRACE, + ACTIONS(3309), 2, anon_sym_COMMA, - [45397] = 2, + anon_sym_RPAREN, + [45634] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3043), 2, + ACTIONS(2813), 2, anon_sym_COMMA, - anon_sym_GT, - [45405] = 2, + anon_sym_RPAREN, + [45642] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2874), 2, + ACTIONS(2999), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45413] = 2, + [45650] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2891), 2, + ACTIONS(3014), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45421] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3205), 1, - anon_sym_EQ, - ACTIONS(3303), 1, - anon_sym_SEMI, - [45431] = 3, + [45658] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2292), 1, - anon_sym_BANG, - ACTIONS(2589), 1, - anon_sym_COLON_COLON, - [45441] = 2, + ACTIONS(3311), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45666] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3305), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45449] = 3, + ACTIONS(2439), 1, + sym_super, + ACTIONS(2751), 1, + sym_identifier, + [45676] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2785), 1, - anon_sym_LT2, - STATE(800), 1, - sym_type_arguments, - [45459] = 3, + ACTIONS(3207), 1, + anon_sym_EQ, + ACTIONS(3313), 1, + anon_sym_SEMI, + [45686] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3307), 1, - sym_numeric_literal, - ACTIONS(3309), 1, - sym_identifier, - [45469] = 3, + ACTIONS(481), 2, + anon_sym_COMMA, + anon_sym_GT, + [45694] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3311), 1, + ACTIONS(3315), 1, anon_sym_COLON_COLON, - ACTIONS(3313), 1, + ACTIONS(3317), 1, anon_sym_LPAREN, - [45479] = 3, + [45704] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3315), 1, + ACTIONS(1935), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [45712] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3319), 1, sym_identifier, - ACTIONS(3317), 1, + ACTIONS(3321), 1, sym_super, - [45489] = 3, + [45722] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(802), 1, anon_sym_LBRACE, - STATE(249), 1, + STATE(244), 1, sym_block, - [45499] = 3, + [45732] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2716), 1, - sym_identifier, - [45509] = 3, + ACTIONS(2769), 1, + anon_sym_LT2, + STATE(792), 1, + sym_type_arguments, + [45742] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3223), 1, - sym_super, - ACTIONS(3319), 1, - sym_identifier, - [45519] = 3, + ACTIONS(3091), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45750] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2852), 1, + ACTIONS(2842), 1, sym_super, - ACTIONS(3271), 1, + ACTIONS(3289), 1, sym_identifier, - [45529] = 3, + [45760] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2787), 1, + ACTIONS(2771), 1, sym_identifier, - ACTIONS(2789), 1, + ACTIONS(2773), 1, sym_super, - [45539] = 2, + [45770] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2850), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45547] = 3, + ACTIONS(3323), 1, + sym_numeric_literal, + ACTIONS(3325), 1, + sym_identifier, + [45780] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, + ACTIONS(3327), 1, anon_sym_LBRACE, - STATE(807), 1, + STATE(83), 1, sym_block, - [45557] = 3, + [45790] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3321), 1, + ACTIONS(3329), 1, anon_sym_LBRACE, - STATE(642), 1, + STATE(596), 1, sym_block, - [45567] = 2, + [45800] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3323), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45575] = 3, + ACTIONS(3307), 1, + sym_super, + ACTIONS(3331), 1, + sym_identifier, + [45810] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(802), 1, anon_sym_LBRACE, - STATE(257), 1, + STATE(251), 1, sym_block, - [45585] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3325), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45593] = 2, + [45820] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3327), 2, + ACTIONS(3074), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45601] = 3, + [45828] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3329), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(415), 1, + STATE(78), 1, sym_block, - [45611] = 3, + [45838] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3331), 1, - sym_identifier, - ACTIONS(3333), 1, - sym_super, - [45621] = 3, + ACTIONS(384), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_block, + [45848] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2465), 1, - sym_super, - ACTIONS(2749), 1, + ACTIONS(3333), 1, sym_identifier, - [45631] = 2, + ACTIONS(3335), 1, + sym_super, + [45858] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3335), 2, + ACTIONS(2981), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45639] = 2, + [45866] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3337), 2, + ACTIONS(3337), 1, anon_sym_LBRACE, + STATE(417), 1, + sym_block, + [45876] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3339), 1, anon_sym_SEMI, - [45647] = 3, + ACTIONS(3341), 1, + anon_sym_EQ, + [45886] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2465), 1, + ACTIONS(2439), 1, sym_super, - ACTIONS(2716), 1, + ACTIONS(2784), 1, sym_identifier, - [45657] = 2, + [45896] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1959), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45665] = 3, + ACTIONS(3343), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45904] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2465), 1, + ACTIONS(2439), 1, sym_super, - ACTIONS(2838), 1, + ACTIONS(2753), 1, sym_identifier, - [45675] = 3, + [45914] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3223), 1, + ACTIONS(3307), 1, sym_super, - ACTIONS(3293), 1, + ACTIONS(3345), 1, sym_identifier, - [45685] = 3, + [45924] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3273), 1, + ACTIONS(3307), 1, sym_super, - ACTIONS(3339), 1, + ACTIONS(3347), 1, sym_identifier, - [45695] = 3, + [45934] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2657), 1, + ACTIONS(2675), 1, anon_sym_PIPE, - ACTIONS(3341), 1, + ACTIONS(3349), 1, anon_sym_COLON, - [45705] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3343), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45713] = 3, + [45944] = 3, ACTIONS(3), 1, sym_line_comment, + ACTIONS(3295), 1, + sym_super, ACTIONS(3345), 1, - anon_sym_LBRACE, - STATE(83), 1, - sym_block, - [45723] = 3, + sym_identifier, + [45954] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_block, - [45733] = 2, + ACTIONS(2176), 1, + anon_sym_LT2, + STATE(479), 1, + sym_type_arguments, + [45964] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3347), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45741] = 3, + ACTIONS(2417), 1, + anon_sym_PIPE, + ACTIONS(3349), 1, + anon_sym_COLON, + [45974] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2823), 1, - anon_sym_LPAREN, - STATE(973), 1, - sym_parameters, - [45751] = 2, + ACTIONS(3295), 1, + sym_super, + ACTIONS(3351), 1, + sym_identifier, + [45984] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3349), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45759] = 2, + ACTIONS(3191), 1, + sym_super, + ACTIONS(3353), 1, + sym_identifier, + [45994] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1985), 2, + ACTIONS(3068), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [45767] = 3, + anon_sym_GT, + [46002] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(1829), 1, anon_sym_LBRACE, - STATE(292), 1, - sym_enum_variant_list, - [45777] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2852), 2, - sym_identifier, - sym_super, - [45785] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3223), 1, - sym_super, - ACTIONS(3351), 1, - sym_identifier, - [45795] = 2, + STATE(795), 1, + sym_field_initializer_list, + [46012] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2925), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45803] = 3, + ACTIONS(384), 1, + anon_sym_LBRACE, + STATE(807), 1, + sym_block, + [46022] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3353), 1, - anon_sym_SEMI, + ACTIONS(2675), 1, + anon_sym_PIPE, ACTIONS(3355), 1, - anon_sym_EQ, - [45813] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2415), 1, - anon_sym_LT2, - STATE(874), 1, - sym_type_arguments, - [45823] = 3, + anon_sym_COLON, + [46032] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3289), 1, + ACTIONS(2842), 1, sym_super, ACTIONS(3357), 1, sym_identifier, - [45833] = 3, + [46042] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2702), 1, + ACTIONS(2723), 1, sym_super, - ACTIONS(2836), 1, + ACTIONS(2786), 1, sym_identifier, - [45843] = 3, + [46052] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3273), 1, + ACTIONS(2723), 1, sym_super, - ACTIONS(3359), 1, + ACTIONS(2784), 1, sym_identifier, - [45853] = 3, + [46062] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1798), 1, + ACTIONS(3359), 2, anon_sym_LBRACE, - STATE(783), 1, - sym_field_initializer_list, - [45863] = 3, + anon_sym_SEMI, + [46070] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(3361), 1, sym_numeric_literal, ACTIONS(3363), 1, sym_identifier, - [45873] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3367), 1, - sym_super, - [45883] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(384), 1, - anon_sym_LBRACE, - STATE(789), 1, - sym_block, - [45893] = 3, + [46080] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3369), 1, + ACTIONS(3365), 2, anon_sym_LBRACE, - STATE(229), 1, - sym_block, - [45903] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3259), 1, - anon_sym_COLON_COLON, - ACTIONS(3371), 1, - anon_sym_RPAREN, - [45913] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2461), 1, - anon_sym_COLON_COLON, - ACTIONS(3373), 1, - anon_sym_BANG, - [45923] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3289), 1, - sym_super, - ACTIONS(3375), 1, - sym_identifier, - [45933] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2702), 1, - sym_super, - ACTIONS(2819), 1, - sym_identifier, - [45943] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(2821), 1, - sym_super, - [45953] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2439), 1, - anon_sym_COLON_COLON, - ACTIONS(3377), 1, - anon_sym_BANG, - [45963] = 3, + anon_sym_SEMI, + [46088] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2852), 1, + ACTIONS(3191), 1, sym_super, - ACTIONS(3379), 1, + ACTIONS(3367), 1, sym_identifier, - [45973] = 3, + [46098] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3369), 1, + anon_sym_of, + ACTIONS(3371), 1, + anon_sym_EQ, + [46108] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3371), 1, + anon_sym_EQ, + ACTIONS(3373), 1, + anon_sym_SEMI, + [46118] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(3375), 1, sym_identifier, - ACTIONS(3381), 1, + ACTIONS(3377), 1, sym_super, - [45983] = 3, + [46128] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2467), 1, - anon_sym_COLON_COLON, - ACTIONS(3377), 1, - anon_sym_BANG, - [45993] = 3, + ACTIONS(3379), 1, + anon_sym_SEMI, + ACTIONS(3381), 1, + anon_sym_EQ, + [46138] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(3383), 1, - anon_sym_SEMI, - ACTIONS(3385), 1, - anon_sym_EQ, - [46003] = 2, + anon_sym_LBRACE, + STATE(230), 1, + sym_block, + [46148] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3387), 2, - anon_sym_COMMA, - anon_sym_GT, - [46011] = 2, + ACTIONS(3385), 1, + anon_sym_SEMI, + ACTIONS(3387), 1, + anon_sym_RBRACK, + [46158] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3389), 2, - anon_sym_COMMA, - anon_sym_GT, - [46019] = 2, + ACTIONS(2767), 1, + anon_sym_LBRACE, + STATE(328), 1, + sym_enum_variant_list, + [46168] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3273), 2, - sym_identifier, + ACTIONS(3295), 1, sym_super, - [46027] = 3, + ACTIONS(3389), 1, + sym_identifier, + [46178] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(3391), 1, - anon_sym_SEMI, + anon_sym_of, ACTIONS(3393), 1, anon_sym_EQ, - [46037] = 3, + [46188] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2852), 1, + sym_identifier, + ACTIONS(2854), 1, + sym_super, + [46198] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3393), 1, - anon_sym_EQ, ACTIONS(3395), 1, - anon_sym_of, - [46047] = 3, + anon_sym_SEMI, + ACTIONS(3397), 1, + anon_sym_EQ, + [46208] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3273), 1, + ACTIONS(2723), 1, sym_super, - ACTIONS(3365), 1, + ACTIONS(2852), 1, sym_identifier, - [46057] = 2, + [46218] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3397), 1, + ACTIONS(3389), 1, sym_identifier, - [46064] = 2, + ACTIONS(3399), 1, + sym_super, + [46228] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3399), 1, + ACTIONS(3191), 1, + sym_super, + ACTIONS(3375), 1, sym_identifier, - [46071] = 2, + [46238] = 3, ACTIONS(3), 1, sym_line_comment, + ACTIONS(3243), 1, + anon_sym_COLON_COLON, ACTIONS(3401), 1, - anon_sym_RBRACK, - [46078] = 2, + anon_sym_RPAREN, + [46248] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - [46085] = 2, + ACTIONS(2848), 1, + anon_sym_LPAREN, + STATE(978), 1, + sym_parameters, + [46258] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3405), 1, - anon_sym_SEMI, - [46092] = 2, + ACTIONS(3233), 1, + anon_sym_COLON_COLON, + ACTIONS(3401), 1, + anon_sym_RPAREN, + [46268] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3407), 1, - anon_sym_RBRACK, - [46099] = 2, + ACTIONS(2767), 1, + anon_sym_LBRACE, + STATE(283), 1, + sym_enum_variant_list, + [46278] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2455), 1, + ACTIONS(3237), 1, anon_sym_COLON_COLON, - [46106] = 2, + ACTIONS(3403), 1, + anon_sym_RPAREN, + [46288] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3409), 1, - anon_sym_RBRACK, - [46113] = 2, + ACTIONS(3241), 1, + anon_sym_COLON_COLON, + ACTIONS(3401), 1, + anon_sym_RPAREN, + [46298] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3411), 1, + ACTIONS(704), 1, anon_sym_RBRACK, - [46120] = 2, + [46305] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3413), 1, + ACTIONS(3405), 1, + anon_sym_EQ_GT, + [46312] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3407), 1, anon_sym_RBRACK, - [46127] = 2, + [46319] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2933), 1, + ACTIONS(3409), 1, anon_sym_RBRACE, - [46134] = 2, + [46326] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2927), 1, + ACTIONS(3411), 1, + anon_sym_DQUOTE, + [46333] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3413), 1, anon_sym_COLON, - [46141] = 2, + [46340] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3415), 1, - sym_identifier, - [46148] = 2, + anon_sym_RBRACK, + [46347] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2989), 1, + anon_sym_COLON, + [46354] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3417), 1, - sym_identifier, - [46155] = 2, + anon_sym_RBRACK, + [46361] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3419), 1, + ACTIONS(3393), 1, + anon_sym_EQ, + [46368] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2824), 1, anon_sym_RBRACK, - [46162] = 2, + [46375] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2840), 1, + anon_sym_RPAREN, + [46382] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3419), 1, + anon_sym_SEMI, + [46389] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3421), 1, - sym_identifier, - [46169] = 2, + anon_sym_DQUOTE, + [46396] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2830), 1, + anon_sym_RPAREN, + [46403] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3423), 1, sym_identifier, - [46176] = 2, + [46410] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3425), 1, - sym_identifier, - [46183] = 2, + anon_sym_COLON, + [46417] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2822), 1, + anon_sym_RPAREN, + [46424] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3427), 1, - sym_identifier, - [46190] = 2, + anon_sym_SEMI, + [46431] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3429), 1, - anon_sym_DQUOTE, - [46197] = 2, + sym_identifier, + [46438] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3431), 1, anon_sym_SEMI, - [46204] = 2, + [46445] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3433), 1, - sym_identifier, - [46211] = 2, + ACTIONS(2938), 1, + anon_sym_RBRACE, + [46452] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3435), 1, - anon_sym_RBRACK, - [46218] = 2, + ACTIONS(3433), 1, + anon_sym_RBRACE, + [46459] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(706), 1, + ACTIONS(3435), 1, anon_sym_RBRACK, - [46225] = 2, + [46466] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3437), 1, - anon_sym_SEMI, - [46232] = 2, + anon_sym_RBRACE, + [46473] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3439), 1, - anon_sym_SEMI, - [46239] = 2, + ACTIONS(684), 1, + anon_sym_RBRACK, + [46480] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3121), 1, - anon_sym_RBRACE, - [46246] = 2, + ACTIONS(3439), 1, + anon_sym_COLON, + [46487] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2921), 1, - anon_sym_RBRACE, - [46253] = 2, + ACTIONS(3441), 1, + anon_sym_RBRACK, + [46494] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3441), 1, - anon_sym_RBRACE, - [46260] = 2, + ACTIONS(2588), 1, + anon_sym_RPAREN, + [46501] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3443), 1, - anon_sym_RBRACE, - [46267] = 2, + sym_identifier, + [46508] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3445), 1, sym_identifier, - [46274] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(684), 1, - anon_sym_RBRACK, - [46281] = 2, + [46515] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3447), 1, - anon_sym_RBRACK, - [46288] = 2, + sym_identifier, + [46522] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3449), 1, - anon_sym_COLON_COLON, - [46295] = 2, + sym_identifier, + [46529] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3451), 1, - anon_sym_DQUOTE, - [46302] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3453), 1, anon_sym_RBRACK, - [46309] = 2, + [46536] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2593), 1, - anon_sym_RPAREN, - [46316] = 2, + ACTIONS(3453), 1, + sym_identifier, + [46543] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3455), 1, - anon_sym_RBRACK, - [46323] = 2, + sym_identifier, + [46550] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3457), 1, sym_identifier, - [46330] = 2, + [46557] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3459), 1, sym_identifier, - [46337] = 2, + [46564] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3461), 1, - sym_identifier, - [46344] = 2, + anon_sym_RBRACK, + [46571] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3463), 1, sym_identifier, - [46351] = 2, + [46578] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3465), 1, sym_identifier, - [46358] = 2, + [46585] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3467), 1, - anon_sym_EQ_GT, - [46365] = 2, + sym_identifier, + [46592] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3469), 1, sym_identifier, - [46372] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2653), 1, - anon_sym_RBRACK, - [46379] = 2, + [46599] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3471), 1, - anon_sym_EQ_GT, - [46386] = 2, + sym_identifier, + [46606] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3473), 1, - sym_numeric_literal, - [46393] = 2, + sym_identifier, + [46613] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3475), 1, - anon_sym_COLON_COLON, - [46400] = 2, + sym_numeric_literal, + [46620] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3477), 1, anon_sym_SEMI, - [46407] = 2, - ACTIONS(3479), 1, - aux_sym_string_literal_token2, - ACTIONS(3481), 1, + [46627] = 2, + ACTIONS(3), 1, sym_line_comment, - [46414] = 2, + ACTIONS(3479), 1, + sym_identifier, + [46634] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2011), 1, - anon_sym_COLON_COLON, - [46421] = 2, + ACTIONS(3481), 1, + anon_sym_RBRACK, + [46641] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3483), 1, - anon_sym_SEMI, - [46428] = 2, + anon_sym_DQUOTE, + [46648] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3485), 1, - anon_sym_RBRACK, - [46435] = 2, - ACTIONS(3), 1, + anon_sym_DQUOTE, + [46655] = 2, + ACTIONS(3487), 1, + aux_sym_string_literal_token2, + ACTIONS(3489), 1, sym_line_comment, - ACTIONS(2767), 1, - anon_sym_RPAREN, - [46442] = 2, + [46662] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3487), 1, - sym_identifier, - [46449] = 2, + ACTIONS(2089), 1, + anon_sym_COLON_COLON, + [46669] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3489), 1, + ACTIONS(3491), 1, anon_sym_DQUOTE, - [46456] = 2, + [46676] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2278), 1, - sym_identifier, - [46463] = 2, + ACTIONS(3493), 1, + anon_sym_RBRACE, + [46683] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3152), 1, + ACTIONS(3006), 1, anon_sym_RBRACE, - [46470] = 2, + [46690] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2254), 1, - anon_sym_COLON_COLON, - [46477] = 2, + ACTIONS(3495), 1, + anon_sym_EQ_GT, + [46697] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3491), 1, - anon_sym_DQUOTE, - [46484] = 2, + ACTIONS(3029), 1, + anon_sym_RBRACE, + [46704] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3493), 1, + ACTIONS(3497), 1, anon_sym_SEMI, - [46491] = 2, + [46711] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3495), 1, + ACTIONS(3499), 1, anon_sym_SEMI, - [46498] = 2, + [46718] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3497), 1, + ACTIONS(2272), 1, anon_sym_COLON_COLON, - [46505] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3499), 1, - anon_sym_EQ_GT, - [46512] = 2, + [46725] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3501), 1, - anon_sym_RBRACE, - [46519] = 2, + sym_identifier, + [46732] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3503), 1, - anon_sym_RBRACK, - [46526] = 2, + anon_sym_SEMI, + [46739] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3505), 1, sym_identifier, - [46533] = 2, + [46746] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3507), 1, - sym_identifier, - [46540] = 2, + anon_sym_COLON_COLON, + [46753] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3509), 1, sym_identifier, - [46547] = 2, + [46760] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3511), 1, - sym_identifier, - [46554] = 2, + anon_sym_RBRACK, + [46767] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3016), 1, - anon_sym_RBRACE, - [46561] = 2, + ACTIONS(2983), 1, + anon_sym_COLON, + [46774] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3513), 1, sym_identifier, - [46568] = 2, + [46781] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3515), 1, sym_identifier, - [46575] = 2, + [46788] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3517), 1, - anon_sym_SEMI, - [46582] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(694), 1, - anon_sym_RBRACK, - [46589] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2842), 1, - anon_sym_RPAREN, - [46596] = 2, + sym_identifier, + [46795] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2728), 1, - anon_sym_RBRACK, - [46603] = 2, + ACTIONS(3519), 1, + sym_identifier, + [46802] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2260), 1, + ACTIONS(3521), 1, anon_sym_COLON_COLON, - [46610] = 2, + [46809] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2353), 1, - anon_sym_COLON_COLON, - [46617] = 2, + ACTIONS(2323), 1, + sym_identifier, + [46816] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2720), 1, - anon_sym_RPAREN, - [46624] = 2, + ACTIONS(3523), 1, + sym_identifier, + [46823] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3519), 1, - sym_identifier, - [46631] = 2, + ACTIONS(3525), 1, + anon_sym_SEMI, + [46830] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3521), 1, - sym_numeric_literal, - [46638] = 2, + ACTIONS(2325), 1, + sym_identifier, + [46837] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3523), 1, + ACTIONS(3527), 1, anon_sym_SEMI, - [46645] = 2, + [46844] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2830), 1, - anon_sym_RPAREN, - [46652] = 2, + ACTIONS(688), 1, + anon_sym_RBRACK, + [46851] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3525), 1, - anon_sym_SEMI, - [46659] = 2, + ACTIONS(3041), 1, + anon_sym_RBRACE, + [46858] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3527), 1, - sym_identifier, - [46666] = 2, + ACTIONS(2733), 1, + anon_sym_RBRACK, + [46865] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3529), 1, - anon_sym_SEMI, - [46673] = 2, + anon_sym_RPAREN, + [46872] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2944), 1, - anon_sym_RBRACE, - [46680] = 2, + ACTIONS(2673), 1, + anon_sym_RPAREN, + [46879] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3531), 1, - anon_sym_EQ_GT, - [46687] = 2, + anon_sym_COLON, + [46886] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3533), 1, - sym_identifier, - [46694] = 2, + anon_sym_RBRACK, + [46893] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3535), 1, - anon_sym_RPAREN, - [46701] = 2, + ACTIONS(2252), 1, + anon_sym_COLON_COLON, + [46900] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3537), 1, - anon_sym_RBRACE, - [46708] = 2, + ACTIONS(2357), 1, + anon_sym_COLON_COLON, + [46907] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3077), 1, - anon_sym_RBRACE, - [46715] = 2, + ACTIONS(3535), 1, + anon_sym_RBRACK, + [46914] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3539), 1, - anon_sym_COLON, - [46722] = 2, + ACTIONS(3537), 1, + sym_identifier, + [46921] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(676), 1, - anon_sym_RBRACK, - [46729] = 2, + ACTIONS(3539), 1, + sym_numeric_literal, + [46928] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3541), 1, - anon_sym_LBRACK, - [46736] = 2, + ACTIONS(2291), 1, + sym_identifier, + [46935] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3083), 1, - anon_sym_RBRACE, - [46743] = 2, + ACTIONS(3541), 1, + anon_sym_EQ_GT, + [46942] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3543), 1, - anon_sym_LBRACK, - [46750] = 2, + anon_sym_SEMI, + [46949] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3545), 1, - anon_sym_COLON, - [46757] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3255), 1, - anon_sym_EQ, - [46764] = 2, + anon_sym_EQ_GT, + [46956] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3547), 1, - anon_sym_EQ_GT, - [46771] = 2, + anon_sym_SEMI, + [46963] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3549), 1, anon_sym_SEMI, - [46778] = 2, + [46970] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3551), 1, - anon_sym_SEMI, - [46785] = 2, + anon_sym_RBRACK, + [46977] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1845), 1, + ACTIONS(3553), 1, anon_sym_RPAREN, - [46792] = 2, + [46984] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3553), 1, - anon_sym_SEMI, - [46799] = 2, + ACTIONS(1857), 1, + anon_sym_RPAREN, + [46991] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3115), 1, + anon_sym_RBRACE, + [46998] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3555), 1, - anon_sym_SEMI, - [46806] = 2, + anon_sym_RBRACE, + [47005] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(676), 1, + anon_sym_RBRACK, + [47012] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3557), 1, - anon_sym_COLON, - [46813] = 2, + anon_sym_LBRACK, + [47019] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3559), 1, - anon_sym_COLON, - [46820] = 2, + anon_sym_LBRACK, + [47026] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3561), 1, - anon_sym_RBRACE, - [46827] = 2, + anon_sym_COLON, + [47033] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1877), 1, + anon_sym_RPAREN, + [47040] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3563), 1, anon_sym_SEMI, - [46834] = 2, + [47047] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3107), 1, - anon_sym_COLON, - [46841] = 2, + ACTIONS(3565), 1, + anon_sym_SEMI, + [47054] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3565), 1, - sym_identifier, - [46848] = 2, + ACTIONS(2921), 1, + anon_sym_RBRACE, + [47061] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3567), 1, - anon_sym_SEMI, - [46855] = 2, + anon_sym_COLON, + [47068] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3569), 1, - ts_builtin_sym_end, - [46862] = 2, + anon_sym_SEMI, + [47075] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1768), 1, - anon_sym_COLON_COLON, - [46869] = 2, - ACTIONS(3481), 1, - sym_line_comment, ACTIONS(3571), 1, - aux_sym_string_literal_token2, - [46876] = 2, - ACTIONS(3481), 1, + anon_sym_SEMI, + [47082] = 2, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(3573), 1, - aux_sym_string_literal_token2, - [46883] = 2, + ACTIONS(3105), 1, + anon_sym_RBRACE, + [47089] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2043), 1, - anon_sym_COLON_COLON, - [46890] = 2, + ACTIONS(3573), 1, + anon_sym_SEMI, + [47096] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3575), 1, sym_identifier, - [46897] = 2, + [47103] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3577), 1, - sym_identifier, - [46904] = 2, + anon_sym_SEMI, + [47110] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3579), 1, - anon_sym_COLON_COLON, - [46911] = 2, + anon_sym_EQ_GT, + [47117] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3581), 1, - anon_sym_RBRACK, - [46918] = 2, + ts_builtin_sym_end, + [47124] = 2, ACTIONS(3), 1, sym_line_comment, + ACTIONS(1642), 1, + anon_sym_COLON_COLON, + [47131] = 2, + ACTIONS(3489), 1, + sym_line_comment, ACTIONS(3583), 1, - anon_sym_RBRACE, - [46925] = 2, + aux_sym_string_literal_token2, + [47138] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2670), 1, - anon_sym_RPAREN, - [46932] = 2, - ACTIONS(3), 1, + ACTIONS(2063), 1, + anon_sym_COLON_COLON, + [47145] = 2, + ACTIONS(3489), 1, sym_line_comment, ACTIONS(3585), 1, - anon_sym_RPAREN, - [46939] = 2, + aux_sym_string_literal_token2, + [47152] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3587), 1, anon_sym_SEMI, - [46946] = 2, + [47159] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3589), 1, - sym_identifier, - [46953] = 2, + anon_sym_COLON_COLON, + [47166] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3591), 1, - sym_identifier, - [46960] = 2, - ACTIONS(3481), 1, + anon_sym_SEMI, + [47173] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3593), 1, - aux_sym_string_literal_token2, - [46967] = 2, + anon_sym_RBRACE, + [47180] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3595), 1, - sym_identifier, - [46974] = 2, + anon_sym_SEMI, + [47187] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3597), 1, anon_sym_SEMI, - [46981] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2797), 1, - anon_sym_COLON_COLON, - [46988] = 2, + [47194] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3599), 1, - anon_sym_COLON, - [46995] = 2, - ACTIONS(3481), 1, + sym_identifier, + [47201] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3601), 1, - aux_sym_string_literal_token2, - [47002] = 2, + sym_identifier, + [47208] = 2, ACTIONS(3), 1, sym_line_comment, ACTIONS(3603), 1, sym_identifier, - [47009] = 2, + [47215] = 2, + ACTIONS(3489), 1, + sym_line_comment, + ACTIONS(3605), 1, + aux_sym_string_literal_token2, + [47222] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3607), 1, + sym_identifier, + [47229] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2639), 1, + ACTIONS(3609), 1, + sym_identifier, + [47236] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2705), 1, anon_sym_COLON_COLON, - [47016] = 2, + [47243] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3125), 1, + ACTIONS(3177), 1, anon_sym_RBRACE, - [47023] = 2, + [47250] = 2, + ACTIONS(3489), 1, + sym_line_comment, + ACTIONS(3611), 1, + aux_sym_string_literal_token2, + [47257] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2856), 1, + ACTIONS(3613), 1, + sym_identifier, + [47264] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2576), 1, anon_sym_COLON_COLON, - [47030] = 2, + [47271] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3605), 1, + ACTIONS(2681), 1, + anon_sym_RPAREN, + [47278] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2860), 1, + anon_sym_COLON_COLON, + [47285] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3615), 1, sym_identifier, - [47037] = 2, + [47292] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3607), 1, + ACTIONS(3617), 1, sym_identifier, - [47044] = 2, + [47299] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2684), 1, + ACTIONS(2685), 1, anon_sym_RPAREN, - [47051] = 2, + [47306] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2270), 1, - sym_identifier, - [47058] = 2, + ACTIONS(3165), 1, + anon_sym_RBRACE, + [47313] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3609), 1, + ACTIONS(3619), 1, anon_sym_COLON, - [47065] = 2, + [47320] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3611), 1, + ACTIONS(3621), 1, anon_sym_LBRACK, - [47072] = 2, + [47327] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3613), 1, + ACTIONS(3623), 1, anon_sym_LBRACK, - [47079] = 2, + [47334] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3615), 1, + ACTIONS(3625), 1, sym_identifier, - [47086] = 2, + [47341] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3617), 1, - anon_sym_COLON, - [47093] = 2, + ACTIONS(3627), 1, + anon_sym_COLON_COLON, + [47348] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2272), 1, - sym_identifier, - [47100] = 2, + ACTIONS(3153), 1, + anon_sym_RBRACE, + [47355] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3142), 1, + ACTIONS(3147), 1, anon_sym_RBRACE, - [47107] = 2, + [47362] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3619), 1, + ACTIONS(3629), 1, anon_sym_COLON, - [47114] = 2, + [47369] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3146), 1, - anon_sym_RBRACE, - [47121] = 2, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + [47376] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3197), 1, + ACTIONS(3201), 1, anon_sym_EQ, - [47128] = 2, + [47383] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1869), 1, - anon_sym_RPAREN, - [47135] = 2, + ACTIONS(3631), 1, + anon_sym_RBRACK, + [47390] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3621), 1, + ACTIONS(3633), 1, anon_sym_LBRACK, - [47142] = 2, + [47397] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3623), 1, + ACTIONS(3635), 1, anon_sym_LBRACK, - [47149] = 2, + [47404] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3625), 1, + ACTIONS(3637), 1, anon_sym_LBRACK, - [47156] = 2, + [47411] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3627), 1, + ACTIONS(3639), 1, anon_sym_LBRACK, - [47163] = 2, + [47418] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3629), 1, + ACTIONS(3641), 1, sym_identifier, - [47170] = 2, + [47425] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3631), 1, + ACTIONS(3643), 1, sym_identifier, - [47177] = 2, + [47432] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3633), 1, + ACTIONS(3645), 1, sym_identifier, - [47184] = 2, + [47439] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3635), 1, + ACTIONS(3647), 1, sym_identifier, - [47191] = 2, + [47446] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3637), 1, + ACTIONS(3649), 1, sym_identifier, }; @@ -66741,1410 +66993,1416 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(226)] = 350, [SMALL_STATE(227)] = 420, [SMALL_STATE(228)] = 490, - [SMALL_STATE(229)] = 618, - [SMALL_STATE(230)] = 688, - [SMALL_STATE(231)] = 801, - [SMALL_STATE(232)] = 926, - [SMALL_STATE(233)] = 1039, - [SMALL_STATE(234)] = 1104, - [SMALL_STATE(235)] = 1217, - [SMALL_STATE(236)] = 1282, - [SMALL_STATE(237)] = 1407, - [SMALL_STATE(238)] = 1472, - [SMALL_STATE(239)] = 1537, - [SMALL_STATE(240)] = 1602, - [SMALL_STATE(241)] = 1715, - [SMALL_STATE(242)] = 1840, - [SMALL_STATE(243)] = 1905, - [SMALL_STATE(244)] = 2018, - [SMALL_STATE(245)] = 2082, - [SMALL_STATE(246)] = 2204, - [SMALL_STATE(247)] = 2268, - [SMALL_STATE(248)] = 2332, - [SMALL_STATE(249)] = 2396, - [SMALL_STATE(250)] = 2460, - [SMALL_STATE(251)] = 2524, - [SMALL_STATE(252)] = 2592, - [SMALL_STATE(253)] = 2656, - [SMALL_STATE(254)] = 2720, - [SMALL_STATE(255)] = 2784, - [SMALL_STATE(256)] = 2852, - [SMALL_STATE(257)] = 2916, - [SMALL_STATE(258)] = 2980, - [SMALL_STATE(259)] = 3043, - [SMALL_STATE(260)] = 3106, - [SMALL_STATE(261)] = 3169, - [SMALL_STATE(262)] = 3232, - [SMALL_STATE(263)] = 3295, - [SMALL_STATE(264)] = 3358, - [SMALL_STATE(265)] = 3421, - [SMALL_STATE(266)] = 3484, - [SMALL_STATE(267)] = 3547, - [SMALL_STATE(268)] = 3610, - [SMALL_STATE(269)] = 3673, - [SMALL_STATE(270)] = 3736, - [SMALL_STATE(271)] = 3799, - [SMALL_STATE(272)] = 3862, - [SMALL_STATE(273)] = 3925, - [SMALL_STATE(274)] = 3988, - [SMALL_STATE(275)] = 4051, - [SMALL_STATE(276)] = 4114, - [SMALL_STATE(277)] = 4177, - [SMALL_STATE(278)] = 4240, - [SMALL_STATE(279)] = 4303, - [SMALL_STATE(280)] = 4366, - [SMALL_STATE(281)] = 4429, - [SMALL_STATE(282)] = 4492, - [SMALL_STATE(283)] = 4555, - [SMALL_STATE(284)] = 4618, - [SMALL_STATE(285)] = 4681, - [SMALL_STATE(286)] = 4744, - [SMALL_STATE(287)] = 4807, - [SMALL_STATE(288)] = 4870, - [SMALL_STATE(289)] = 4933, - [SMALL_STATE(290)] = 4996, - [SMALL_STATE(291)] = 5059, - [SMALL_STATE(292)] = 5122, - [SMALL_STATE(293)] = 5185, - [SMALL_STATE(294)] = 5248, - [SMALL_STATE(295)] = 5311, - [SMALL_STATE(296)] = 5374, - [SMALL_STATE(297)] = 5437, - [SMALL_STATE(298)] = 5500, - [SMALL_STATE(299)] = 5563, - [SMALL_STATE(300)] = 5626, - [SMALL_STATE(301)] = 5689, - [SMALL_STATE(302)] = 5752, - [SMALL_STATE(303)] = 5815, - [SMALL_STATE(304)] = 5878, - [SMALL_STATE(305)] = 5941, - [SMALL_STATE(306)] = 6004, - [SMALL_STATE(307)] = 6067, - [SMALL_STATE(308)] = 6130, - [SMALL_STATE(309)] = 6193, - [SMALL_STATE(310)] = 6256, - [SMALL_STATE(311)] = 6319, - [SMALL_STATE(312)] = 6382, - [SMALL_STATE(313)] = 6445, - [SMALL_STATE(314)] = 6508, - [SMALL_STATE(315)] = 6571, - [SMALL_STATE(316)] = 6634, - [SMALL_STATE(317)] = 6697, - [SMALL_STATE(318)] = 6760, - [SMALL_STATE(319)] = 6823, - [SMALL_STATE(320)] = 6886, - [SMALL_STATE(321)] = 6949, - [SMALL_STATE(322)] = 7012, - [SMALL_STATE(323)] = 7075, - [SMALL_STATE(324)] = 7138, - [SMALL_STATE(325)] = 7201, - [SMALL_STATE(326)] = 7264, - [SMALL_STATE(327)] = 7327, - [SMALL_STATE(328)] = 7390, - [SMALL_STATE(329)] = 7453, - [SMALL_STATE(330)] = 7516, - [SMALL_STATE(331)] = 7579, - [SMALL_STATE(332)] = 7642, - [SMALL_STATE(333)] = 7705, - [SMALL_STATE(334)] = 7768, - [SMALL_STATE(335)] = 7831, - [SMALL_STATE(336)] = 7894, - [SMALL_STATE(337)] = 7957, - [SMALL_STATE(338)] = 8073, - [SMALL_STATE(339)] = 8189, - [SMALL_STATE(340)] = 8305, - [SMALL_STATE(341)] = 8421, - [SMALL_STATE(342)] = 8537, - [SMALL_STATE(343)] = 8650, - [SMALL_STATE(344)] = 8765, - [SMALL_STATE(345)] = 8878, - [SMALL_STATE(346)] = 8993, - [SMALL_STATE(347)] = 9108, - [SMALL_STATE(348)] = 9221, - [SMALL_STATE(349)] = 9336, - [SMALL_STATE(350)] = 9446, - [SMALL_STATE(351)] = 9552, - [SMALL_STATE(352)] = 9658, - [SMALL_STATE(353)] = 9759, - [SMALL_STATE(354)] = 9860, - [SMALL_STATE(355)] = 9961, - [SMALL_STATE(356)] = 10062, - [SMALL_STATE(357)] = 10163, - [SMALL_STATE(358)] = 10264, - [SMALL_STATE(359)] = 10365, - [SMALL_STATE(360)] = 10466, - [SMALL_STATE(361)] = 10564, - [SMALL_STATE(362)] = 10662, - [SMALL_STATE(363)] = 10760, - [SMALL_STATE(364)] = 10858, - [SMALL_STATE(365)] = 10956, - [SMALL_STATE(366)] = 11054, - [SMALL_STATE(367)] = 11152, - [SMALL_STATE(368)] = 11250, - [SMALL_STATE(369)] = 11348, - [SMALL_STATE(370)] = 11446, - [SMALL_STATE(371)] = 11544, - [SMALL_STATE(372)] = 11642, - [SMALL_STATE(373)] = 11740, - [SMALL_STATE(374)] = 11838, - [SMALL_STATE(375)] = 11936, - [SMALL_STATE(376)] = 12034, - [SMALL_STATE(377)] = 12129, - [SMALL_STATE(378)] = 12224, - [SMALL_STATE(379)] = 12319, - [SMALL_STATE(380)] = 12414, - [SMALL_STATE(381)] = 12509, - [SMALL_STATE(382)] = 12604, - [SMALL_STATE(383)] = 12699, - [SMALL_STATE(384)] = 12794, - [SMALL_STATE(385)] = 12889, - [SMALL_STATE(386)] = 12946, - [SMALL_STATE(387)] = 13041, - [SMALL_STATE(388)] = 13136, - [SMALL_STATE(389)] = 13231, - [SMALL_STATE(390)] = 13326, - [SMALL_STATE(391)] = 13421, - [SMALL_STATE(392)] = 13516, - [SMALL_STATE(393)] = 13611, - [SMALL_STATE(394)] = 13706, - [SMALL_STATE(395)] = 13798, - [SMALL_STATE(396)] = 13890, - [SMALL_STATE(397)] = 13982, - [SMALL_STATE(398)] = 14074, - [SMALL_STATE(399)] = 14166, - [SMALL_STATE(400)] = 14258, - [SMALL_STATE(401)] = 14309, - [SMALL_STATE(402)] = 14398, - [SMALL_STATE(403)] = 14487, - [SMALL_STATE(404)] = 14576, - [SMALL_STATE(405)] = 14665, - [SMALL_STATE(406)] = 14713, - [SMALL_STATE(407)] = 14758, - [SMALL_STATE(408)] = 14803, - [SMALL_STATE(409)] = 14856, - [SMALL_STATE(410)] = 14901, - [SMALL_STATE(411)] = 14946, - [SMALL_STATE(412)] = 14991, - [SMALL_STATE(413)] = 15036, - [SMALL_STATE(414)] = 15081, - [SMALL_STATE(415)] = 15127, - [SMALL_STATE(416)] = 15175, - [SMALL_STATE(417)] = 15221, - [SMALL_STATE(418)] = 15267, - [SMALL_STATE(419)] = 15313, - [SMALL_STATE(420)] = 15358, - [SMALL_STATE(421)] = 15431, - [SMALL_STATE(422)] = 15474, - [SMALL_STATE(423)] = 15521, - [SMALL_STATE(424)] = 15574, - [SMALL_STATE(425)] = 15617, - [SMALL_STATE(426)] = 15670, - [SMALL_STATE(427)] = 15723, - [SMALL_STATE(428)] = 15766, - [SMALL_STATE(429)] = 15819, - [SMALL_STATE(430)] = 15864, - [SMALL_STATE(431)] = 15907, - [SMALL_STATE(432)] = 15950, - [SMALL_STATE(433)] = 15997, - [SMALL_STATE(434)] = 16070, - [SMALL_STATE(435)] = 16123, - [SMALL_STATE(436)] = 16196, - [SMALL_STATE(437)] = 16241, - [SMALL_STATE(438)] = 16314, - [SMALL_STATE(439)] = 16356, - [SMALL_STATE(440)] = 16398, - [SMALL_STATE(441)] = 16452, - [SMALL_STATE(442)] = 16516, - [SMALL_STATE(443)] = 16558, - [SMALL_STATE(444)] = 16600, - [SMALL_STATE(445)] = 16642, - [SMALL_STATE(446)] = 16684, - [SMALL_STATE(447)] = 16756, - [SMALL_STATE(448)] = 16812, - [SMALL_STATE(449)] = 16854, - [SMALL_STATE(450)] = 16896, - [SMALL_STATE(451)] = 16938, - [SMALL_STATE(452)] = 17010, - [SMALL_STATE(453)] = 17052, - [SMALL_STATE(454)] = 17094, - [SMALL_STATE(455)] = 17164, - [SMALL_STATE(456)] = 17206, - [SMALL_STATE(457)] = 17248, - [SMALL_STATE(458)] = 17290, - [SMALL_STATE(459)] = 17332, - [SMALL_STATE(460)] = 17374, - [SMALL_STATE(461)] = 17416, - [SMALL_STATE(462)] = 17488, - [SMALL_STATE(463)] = 17530, - [SMALL_STATE(464)] = 17572, - [SMALL_STATE(465)] = 17640, - [SMALL_STATE(466)] = 17682, - [SMALL_STATE(467)] = 17744, - [SMALL_STATE(468)] = 17786, - [SMALL_STATE(469)] = 17828, - [SMALL_STATE(470)] = 17870, - [SMALL_STATE(471)] = 17912, - [SMALL_STATE(472)] = 17954, - [SMALL_STATE(473)] = 17996, - [SMALL_STATE(474)] = 18038, - [SMALL_STATE(475)] = 18080, - [SMALL_STATE(476)] = 18122, - [SMALL_STATE(477)] = 18166, - [SMALL_STATE(478)] = 18238, - [SMALL_STATE(479)] = 18280, - [SMALL_STATE(480)] = 18322, - [SMALL_STATE(481)] = 18364, - [SMALL_STATE(482)] = 18406, - [SMALL_STATE(483)] = 18448, - [SMALL_STATE(484)] = 18506, - [SMALL_STATE(485)] = 18548, - [SMALL_STATE(486)] = 18590, - [SMALL_STATE(487)] = 18650, - [SMALL_STATE(488)] = 18691, - [SMALL_STATE(489)] = 18732, - [SMALL_STATE(490)] = 18773, - [SMALL_STATE(491)] = 18814, - [SMALL_STATE(492)] = 18855, - [SMALL_STATE(493)] = 18904, - [SMALL_STATE(494)] = 18983, - [SMALL_STATE(495)] = 19024, - [SMALL_STATE(496)] = 19065, - [SMALL_STATE(497)] = 19106, - [SMALL_STATE(498)] = 19147, - [SMALL_STATE(499)] = 19188, - [SMALL_STATE(500)] = 19229, - [SMALL_STATE(501)] = 19270, - [SMALL_STATE(502)] = 19311, - [SMALL_STATE(503)] = 19352, - [SMALL_STATE(504)] = 19393, - [SMALL_STATE(505)] = 19434, - [SMALL_STATE(506)] = 19475, - [SMALL_STATE(507)] = 19516, - [SMALL_STATE(508)] = 19557, - [SMALL_STATE(509)] = 19598, - [SMALL_STATE(510)] = 19639, - [SMALL_STATE(511)] = 19680, - [SMALL_STATE(512)] = 19721, - [SMALL_STATE(513)] = 19762, - [SMALL_STATE(514)] = 19803, - [SMALL_STATE(515)] = 19844, - [SMALL_STATE(516)] = 19885, - [SMALL_STATE(517)] = 19930, - [SMALL_STATE(518)] = 19971, - [SMALL_STATE(519)] = 20012, - [SMALL_STATE(520)] = 20053, - [SMALL_STATE(521)] = 20094, - [SMALL_STATE(522)] = 20135, - [SMALL_STATE(523)] = 20176, - [SMALL_STATE(524)] = 20217, - [SMALL_STATE(525)] = 20258, - [SMALL_STATE(526)] = 20299, - [SMALL_STATE(527)] = 20340, - [SMALL_STATE(528)] = 20381, - [SMALL_STATE(529)] = 20460, - [SMALL_STATE(530)] = 20501, - [SMALL_STATE(531)] = 20542, - [SMALL_STATE(532)] = 20583, - [SMALL_STATE(533)] = 20624, - [SMALL_STATE(534)] = 20665, - [SMALL_STATE(535)] = 20744, - [SMALL_STATE(536)] = 20785, - [SMALL_STATE(537)] = 20826, - [SMALL_STATE(538)] = 20867, - [SMALL_STATE(539)] = 20908, - [SMALL_STATE(540)] = 20949, - [SMALL_STATE(541)] = 20990, - [SMALL_STATE(542)] = 21031, - [SMALL_STATE(543)] = 21072, - [SMALL_STATE(544)] = 21113, - [SMALL_STATE(545)] = 21192, - [SMALL_STATE(546)] = 21233, - [SMALL_STATE(547)] = 21274, - [SMALL_STATE(548)] = 21315, - [SMALL_STATE(549)] = 21356, - [SMALL_STATE(550)] = 21397, - [SMALL_STATE(551)] = 21438, - [SMALL_STATE(552)] = 21479, - [SMALL_STATE(553)] = 21520, - [SMALL_STATE(554)] = 21561, - [SMALL_STATE(555)] = 21602, - [SMALL_STATE(556)] = 21643, - [SMALL_STATE(557)] = 21684, - [SMALL_STATE(558)] = 21725, - [SMALL_STATE(559)] = 21766, - [SMALL_STATE(560)] = 21807, - [SMALL_STATE(561)] = 21848, - [SMALL_STATE(562)] = 21889, - [SMALL_STATE(563)] = 21930, - [SMALL_STATE(564)] = 21971, - [SMALL_STATE(565)] = 22012, - [SMALL_STATE(566)] = 22053, - [SMALL_STATE(567)] = 22094, - [SMALL_STATE(568)] = 22135, - [SMALL_STATE(569)] = 22176, - [SMALL_STATE(570)] = 22217, - [SMALL_STATE(571)] = 22258, - [SMALL_STATE(572)] = 22304, - [SMALL_STATE(573)] = 22370, - [SMALL_STATE(574)] = 22412, - [SMALL_STATE(575)] = 22488, - [SMALL_STATE(576)] = 22564, - [SMALL_STATE(577)] = 22606, - [SMALL_STATE(578)] = 22682, - [SMALL_STATE(579)] = 22724, - [SMALL_STATE(580)] = 22790, - [SMALL_STATE(581)] = 22856, - [SMALL_STATE(582)] = 22932, - [SMALL_STATE(583)] = 22998, - [SMALL_STATE(584)] = 23064, - [SMALL_STATE(585)] = 23130, - [SMALL_STATE(586)] = 23196, - [SMALL_STATE(587)] = 23262, - [SMALL_STATE(588)] = 23328, - [SMALL_STATE(589)] = 23404, - [SMALL_STATE(590)] = 23480, - [SMALL_STATE(591)] = 23522, - [SMALL_STATE(592)] = 23588, - [SMALL_STATE(593)] = 23659, - [SMALL_STATE(594)] = 23722, - [SMALL_STATE(595)] = 23763, - [SMALL_STATE(596)] = 23826, - [SMALL_STATE(597)] = 23869, - [SMALL_STATE(598)] = 23932, - [SMALL_STATE(599)] = 23995, - [SMALL_STATE(600)] = 24058, - [SMALL_STATE(601)] = 24131, - [SMALL_STATE(602)] = 24194, - [SMALL_STATE(603)] = 24257, - [SMALL_STATE(604)] = 24320, - [SMALL_STATE(605)] = 24393, - [SMALL_STATE(606)] = 24466, - [SMALL_STATE(607)] = 24529, - [SMALL_STATE(608)] = 24592, - [SMALL_STATE(609)] = 24655, - [SMALL_STATE(610)] = 24718, - [SMALL_STATE(611)] = 24759, - [SMALL_STATE(612)] = 24822, - [SMALL_STATE(613)] = 24893, - [SMALL_STATE(614)] = 24956, - [SMALL_STATE(615)] = 24999, - [SMALL_STATE(616)] = 25062, - [SMALL_STATE(617)] = 25101, - [SMALL_STATE(618)] = 25164, - [SMALL_STATE(619)] = 25203, - [SMALL_STATE(620)] = 25266, - [SMALL_STATE(621)] = 25329, - [SMALL_STATE(622)] = 25400, - [SMALL_STATE(623)] = 25471, - [SMALL_STATE(624)] = 25514, - [SMALL_STATE(625)] = 25557, - [SMALL_STATE(626)] = 25630, - [SMALL_STATE(627)] = 25703, - [SMALL_STATE(628)] = 25776, - [SMALL_STATE(629)] = 25839, - [SMALL_STATE(630)] = 25902, - [SMALL_STATE(631)] = 25965, - [SMALL_STATE(632)] = 26036, - [SMALL_STATE(633)] = 26109, - [SMALL_STATE(634)] = 26180, - [SMALL_STATE(635)] = 26251, - [SMALL_STATE(636)] = 26324, - [SMALL_STATE(637)] = 26387, - [SMALL_STATE(638)] = 26460, - [SMALL_STATE(639)] = 26533, - [SMALL_STATE(640)] = 26596, - [SMALL_STATE(641)] = 26659, - [SMALL_STATE(642)] = 26732, - [SMALL_STATE(643)] = 26775, - [SMALL_STATE(644)] = 26848, - [SMALL_STATE(645)] = 26921, - [SMALL_STATE(646)] = 26962, - [SMALL_STATE(647)] = 27003, - [SMALL_STATE(648)] = 27076, - [SMALL_STATE(649)] = 27139, - [SMALL_STATE(650)] = 27202, - [SMALL_STATE(651)] = 27265, - [SMALL_STATE(652)] = 27328, - [SMALL_STATE(653)] = 27391, - [SMALL_STATE(654)] = 27464, - [SMALL_STATE(655)] = 27537, - [SMALL_STATE(656)] = 27600, - [SMALL_STATE(657)] = 27663, - [SMALL_STATE(658)] = 27736, - [SMALL_STATE(659)] = 27809, - [SMALL_STATE(660)] = 27882, - [SMALL_STATE(661)] = 27955, - [SMALL_STATE(662)] = 28026, - [SMALL_STATE(663)] = 28089, - [SMALL_STATE(664)] = 28160, - [SMALL_STATE(665)] = 28199, - [SMALL_STATE(666)] = 28238, - [SMALL_STATE(667)] = 28301, - [SMALL_STATE(668)] = 28340, - [SMALL_STATE(669)] = 28411, - [SMALL_STATE(670)] = 28474, - [SMALL_STATE(671)] = 28513, - [SMALL_STATE(672)] = 28576, - [SMALL_STATE(673)] = 28615, - [SMALL_STATE(674)] = 28654, - [SMALL_STATE(675)] = 28717, - [SMALL_STATE(676)] = 28790, - [SMALL_STATE(677)] = 28863, - [SMALL_STATE(678)] = 28936, - [SMALL_STATE(679)] = 29009, - [SMALL_STATE(680)] = 29080, - [SMALL_STATE(681)] = 29143, - [SMALL_STATE(682)] = 29206, - [SMALL_STATE(683)] = 29279, - [SMALL_STATE(684)] = 29352, - [SMALL_STATE(685)] = 29415, - [SMALL_STATE(686)] = 29488, - [SMALL_STATE(687)] = 29527, - [SMALL_STATE(688)] = 29600, - [SMALL_STATE(689)] = 29663, - [SMALL_STATE(690)] = 29702, - [SMALL_STATE(691)] = 29775, - [SMALL_STATE(692)] = 29814, - [SMALL_STATE(693)] = 29877, - [SMALL_STATE(694)] = 29940, - [SMALL_STATE(695)] = 29979, - [SMALL_STATE(696)] = 30019, - [SMALL_STATE(697)] = 30077, - [SMALL_STATE(698)] = 30129, - [SMALL_STATE(699)] = 30195, - [SMALL_STATE(700)] = 30259, - [SMALL_STATE(701)] = 30317, - [SMALL_STATE(702)] = 30371, - [SMALL_STATE(703)] = 30427, - [SMALL_STATE(704)] = 30477, - [SMALL_STATE(705)] = 30515, - [SMALL_STATE(706)] = 30575, - [SMALL_STATE(707)] = 30645, - [SMALL_STATE(708)] = 30693, - [SMALL_STATE(709)] = 30761, - [SMALL_STATE(710)] = 30799, - [SMALL_STATE(711)] = 30839, - [SMALL_STATE(712)] = 30879, - [SMALL_STATE(713)] = 30949, - [SMALL_STATE(714)] = 30997, - [SMALL_STATE(715)] = 31067, - [SMALL_STATE(716)] = 31137, - [SMALL_STATE(717)] = 31207, - [SMALL_STATE(718)] = 31247, - [SMALL_STATE(719)] = 31285, - [SMALL_STATE(720)] = 31353, - [SMALL_STATE(721)] = 31421, - [SMALL_STATE(722)] = 31489, - [SMALL_STATE(723)] = 31529, - [SMALL_STATE(724)] = 31567, - [SMALL_STATE(725)] = 31605, - [SMALL_STATE(726)] = 31653, - [SMALL_STATE(727)] = 31723, - [SMALL_STATE(728)] = 31793, - [SMALL_STATE(729)] = 31863, - [SMALL_STATE(730)] = 31933, - [SMALL_STATE(731)] = 32003, - [SMALL_STATE(732)] = 32073, - [SMALL_STATE(733)] = 32143, - [SMALL_STATE(734)] = 32181, - [SMALL_STATE(735)] = 32251, - [SMALL_STATE(736)] = 32321, - [SMALL_STATE(737)] = 32359, - [SMALL_STATE(738)] = 32429, - [SMALL_STATE(739)] = 32497, - [SMALL_STATE(740)] = 32567, - [SMALL_STATE(741)] = 32637, - [SMALL_STATE(742)] = 32707, - [SMALL_STATE(743)] = 32777, - [SMALL_STATE(744)] = 32847, - [SMALL_STATE(745)] = 32917, - [SMALL_STATE(746)] = 32985, - [SMALL_STATE(747)] = 33033, - [SMALL_STATE(748)] = 33103, - [SMALL_STATE(749)] = 33141, - [SMALL_STATE(750)] = 33209, - [SMALL_STATE(751)] = 33279, - [SMALL_STATE(752)] = 33349, - [SMALL_STATE(753)] = 33401, - [SMALL_STATE(754)] = 33471, - [SMALL_STATE(755)] = 33537, - [SMALL_STATE(756)] = 33601, - [SMALL_STATE(757)] = 33671, - [SMALL_STATE(758)] = 33741, - [SMALL_STATE(759)] = 33795, - [SMALL_STATE(760)] = 33851, - [SMALL_STATE(761)] = 33901, - [SMALL_STATE(762)] = 33971, - [SMALL_STATE(763)] = 34031, - [SMALL_STATE(764)] = 34101, - [SMALL_STATE(765)] = 34139, - [SMALL_STATE(766)] = 34209, - [SMALL_STATE(767)] = 34277, - [SMALL_STATE(768)] = 34347, - [SMALL_STATE(769)] = 34384, - [SMALL_STATE(770)] = 34421, - [SMALL_STATE(771)] = 34458, - [SMALL_STATE(772)] = 34495, - [SMALL_STATE(773)] = 34532, - [SMALL_STATE(774)] = 34569, - [SMALL_STATE(775)] = 34606, - [SMALL_STATE(776)] = 34643, - [SMALL_STATE(777)] = 34680, - [SMALL_STATE(778)] = 34717, - [SMALL_STATE(779)] = 34754, - [SMALL_STATE(780)] = 34791, - [SMALL_STATE(781)] = 34828, - [SMALL_STATE(782)] = 34865, - [SMALL_STATE(783)] = 34902, - [SMALL_STATE(784)] = 34939, - [SMALL_STATE(785)] = 34994, - [SMALL_STATE(786)] = 35031, - [SMALL_STATE(787)] = 35068, - [SMALL_STATE(788)] = 35105, - [SMALL_STATE(789)] = 35142, - [SMALL_STATE(790)] = 35179, - [SMALL_STATE(791)] = 35216, - [SMALL_STATE(792)] = 35253, - [SMALL_STATE(793)] = 35290, - [SMALL_STATE(794)] = 35327, - [SMALL_STATE(795)] = 35364, - [SMALL_STATE(796)] = 35401, - [SMALL_STATE(797)] = 35438, - [SMALL_STATE(798)] = 35475, - [SMALL_STATE(799)] = 35512, - [SMALL_STATE(800)] = 35549, - [SMALL_STATE(801)] = 35586, - [SMALL_STATE(802)] = 35623, - [SMALL_STATE(803)] = 35660, - [SMALL_STATE(804)] = 35697, - [SMALL_STATE(805)] = 35734, - [SMALL_STATE(806)] = 35771, - [SMALL_STATE(807)] = 35808, - [SMALL_STATE(808)] = 35845, - [SMALL_STATE(809)] = 35882, - [SMALL_STATE(810)] = 35919, - [SMALL_STATE(811)] = 35956, - [SMALL_STATE(812)] = 35993, - [SMALL_STATE(813)] = 36030, - [SMALL_STATE(814)] = 36067, - [SMALL_STATE(815)] = 36119, - [SMALL_STATE(816)] = 36171, - [SMALL_STATE(817)] = 36220, - [SMALL_STATE(818)] = 36269, - [SMALL_STATE(819)] = 36318, - [SMALL_STATE(820)] = 36367, - [SMALL_STATE(821)] = 36416, - [SMALL_STATE(822)] = 36453, - [SMALL_STATE(823)] = 36484, - [SMALL_STATE(824)] = 36526, - [SMALL_STATE(825)] = 36565, - [SMALL_STATE(826)] = 36604, - [SMALL_STATE(827)] = 36643, - [SMALL_STATE(828)] = 36682, - [SMALL_STATE(829)] = 36721, - [SMALL_STATE(830)] = 36760, - [SMALL_STATE(831)] = 36799, - [SMALL_STATE(832)] = 36838, - [SMALL_STATE(833)] = 36877, - [SMALL_STATE(834)] = 36916, - [SMALL_STATE(835)] = 36955, - [SMALL_STATE(836)] = 36991, - [SMALL_STATE(837)] = 37027, - [SMALL_STATE(838)] = 37053, - [SMALL_STATE(839)] = 37079, - [SMALL_STATE(840)] = 37105, - [SMALL_STATE(841)] = 37131, - [SMALL_STATE(842)] = 37165, - [SMALL_STATE(843)] = 37188, - [SMALL_STATE(844)] = 37209, - [SMALL_STATE(845)] = 37232, - [SMALL_STATE(846)] = 37255, - [SMALL_STATE(847)] = 37276, - [SMALL_STATE(848)] = 37299, - [SMALL_STATE(849)] = 37320, - [SMALL_STATE(850)] = 37341, - [SMALL_STATE(851)] = 37359, - [SMALL_STATE(852)] = 37377, - [SMALL_STATE(853)] = 37405, - [SMALL_STATE(854)] = 37423, - [SMALL_STATE(855)] = 37441, - [SMALL_STATE(856)] = 37481, - [SMALL_STATE(857)] = 37499, - [SMALL_STATE(858)] = 37517, - [SMALL_STATE(859)] = 37557, - [SMALL_STATE(860)] = 37575, - [SMALL_STATE(861)] = 37596, - [SMALL_STATE(862)] = 37613, - [SMALL_STATE(863)] = 37632, - [SMALL_STATE(864)] = 37651, - [SMALL_STATE(865)] = 37682, - [SMALL_STATE(866)] = 37699, - [SMALL_STATE(867)] = 37724, - [SMALL_STATE(868)] = 37745, - [SMALL_STATE(869)] = 37764, - [SMALL_STATE(870)] = 37781, - [SMALL_STATE(871)] = 37812, - [SMALL_STATE(872)] = 37831, - [SMALL_STATE(873)] = 37852, - [SMALL_STATE(874)] = 37873, - [SMALL_STATE(875)] = 37890, - [SMALL_STATE(876)] = 37906, - [SMALL_STATE(877)] = 37922, - [SMALL_STATE(878)] = 37938, - [SMALL_STATE(879)] = 37966, - [SMALL_STATE(880)] = 37982, - [SMALL_STATE(881)] = 38014, - [SMALL_STATE(882)] = 38030, - [SMALL_STATE(883)] = 38054, - [SMALL_STATE(884)] = 38070, - [SMALL_STATE(885)] = 38086, - [SMALL_STATE(886)] = 38118, - [SMALL_STATE(887)] = 38134, - [SMALL_STATE(888)] = 38162, - [SMALL_STATE(889)] = 38178, - [SMALL_STATE(890)] = 38210, - [SMALL_STATE(891)] = 38226, - [SMALL_STATE(892)] = 38254, - [SMALL_STATE(893)] = 38282, - [SMALL_STATE(894)] = 38314, - [SMALL_STATE(895)] = 38334, - [SMALL_STATE(896)] = 38350, - [SMALL_STATE(897)] = 38377, - [SMALL_STATE(898)] = 38406, - [SMALL_STATE(899)] = 38421, - [SMALL_STATE(900)] = 38450, - [SMALL_STATE(901)] = 38465, - [SMALL_STATE(902)] = 38488, - [SMALL_STATE(903)] = 38517, - [SMALL_STATE(904)] = 38546, - [SMALL_STATE(905)] = 38575, - [SMALL_STATE(906)] = 38604, - [SMALL_STATE(907)] = 38633, - [SMALL_STATE(908)] = 38662, - [SMALL_STATE(909)] = 38677, - [SMALL_STATE(910)] = 38702, - [SMALL_STATE(911)] = 38721, - [SMALL_STATE(912)] = 38750, - [SMALL_STATE(913)] = 38764, - [SMALL_STATE(914)] = 38790, - [SMALL_STATE(915)] = 38804, - [SMALL_STATE(916)] = 38818, - [SMALL_STATE(917)] = 38832, - [SMALL_STATE(918)] = 38846, - [SMALL_STATE(919)] = 38860, - [SMALL_STATE(920)] = 38886, - [SMALL_STATE(921)] = 38912, - [SMALL_STATE(922)] = 38930, - [SMALL_STATE(923)] = 38944, - [SMALL_STATE(924)] = 38958, - [SMALL_STATE(925)] = 38976, - [SMALL_STATE(926)] = 38990, - [SMALL_STATE(927)] = 39008, - [SMALL_STATE(928)] = 39022, - [SMALL_STATE(929)] = 39048, - [SMALL_STATE(930)] = 39062, - [SMALL_STATE(931)] = 39080, - [SMALL_STATE(932)] = 39094, - [SMALL_STATE(933)] = 39108, - [SMALL_STATE(934)] = 39122, - [SMALL_STATE(935)] = 39136, - [SMALL_STATE(936)] = 39150, - [SMALL_STATE(937)] = 39176, - [SMALL_STATE(938)] = 39190, - [SMALL_STATE(939)] = 39216, - [SMALL_STATE(940)] = 39230, - [SMALL_STATE(941)] = 39256, - [SMALL_STATE(942)] = 39270, - [SMALL_STATE(943)] = 39284, - [SMALL_STATE(944)] = 39310, - [SMALL_STATE(945)] = 39324, - [SMALL_STATE(946)] = 39338, - [SMALL_STATE(947)] = 39352, - [SMALL_STATE(948)] = 39378, - [SMALL_STATE(949)] = 39404, - [SMALL_STATE(950)] = 39426, - [SMALL_STATE(951)] = 39440, - [SMALL_STATE(952)] = 39454, - [SMALL_STATE(953)] = 39468, - [SMALL_STATE(954)] = 39482, - [SMALL_STATE(955)] = 39496, - [SMALL_STATE(956)] = 39510, - [SMALL_STATE(957)] = 39524, - [SMALL_STATE(958)] = 39543, - [SMALL_STATE(959)] = 39568, - [SMALL_STATE(960)] = 39589, - [SMALL_STATE(961)] = 39610, - [SMALL_STATE(962)] = 39633, - [SMALL_STATE(963)] = 39654, - [SMALL_STATE(964)] = 39677, - [SMALL_STATE(965)] = 39700, - [SMALL_STATE(966)] = 39725, - [SMALL_STATE(967)] = 39750, - [SMALL_STATE(968)] = 39773, - [SMALL_STATE(969)] = 39798, - [SMALL_STATE(970)] = 39821, - [SMALL_STATE(971)] = 39844, - [SMALL_STATE(972)] = 39867, - [SMALL_STATE(973)] = 39879, - [SMALL_STATE(974)] = 39899, - [SMALL_STATE(975)] = 39917, - [SMALL_STATE(976)] = 39937, - [SMALL_STATE(977)] = 39957, - [SMALL_STATE(978)] = 39975, - [SMALL_STATE(979)] = 39995, - [SMALL_STATE(980)] = 40015, - [SMALL_STATE(981)] = 40035, - [SMALL_STATE(982)] = 40057, - [SMALL_STATE(983)] = 40069, - [SMALL_STATE(984)] = 40081, - [SMALL_STATE(985)] = 40097, - [SMALL_STATE(986)] = 40117, - [SMALL_STATE(987)] = 40137, - [SMALL_STATE(988)] = 40149, - [SMALL_STATE(989)] = 40167, - [SMALL_STATE(990)] = 40187, - [SMALL_STATE(991)] = 40209, - [SMALL_STATE(992)] = 40229, - [SMALL_STATE(993)] = 40251, - [SMALL_STATE(994)] = 40266, - [SMALL_STATE(995)] = 40285, - [SMALL_STATE(996)] = 40300, - [SMALL_STATE(997)] = 40319, - [SMALL_STATE(998)] = 40334, - [SMALL_STATE(999)] = 40345, - [SMALL_STATE(1000)] = 40364, - [SMALL_STATE(1001)] = 40381, - [SMALL_STATE(1002)] = 40400, - [SMALL_STATE(1003)] = 40411, - [SMALL_STATE(1004)] = 40422, - [SMALL_STATE(1005)] = 40433, - [SMALL_STATE(1006)] = 40448, - [SMALL_STATE(1007)] = 40465, - [SMALL_STATE(1008)] = 40484, - [SMALL_STATE(1009)] = 40499, - [SMALL_STATE(1010)] = 40518, - [SMALL_STATE(1011)] = 40529, - [SMALL_STATE(1012)] = 40544, - [SMALL_STATE(1013)] = 40555, - [SMALL_STATE(1014)] = 40574, - [SMALL_STATE(1015)] = 40591, - [SMALL_STATE(1016)] = 40606, - [SMALL_STATE(1017)] = 40625, - [SMALL_STATE(1018)] = 40642, - [SMALL_STATE(1019)] = 40659, - [SMALL_STATE(1020)] = 40678, - [SMALL_STATE(1021)] = 40695, - [SMALL_STATE(1022)] = 40714, - [SMALL_STATE(1023)] = 40725, - [SMALL_STATE(1024)] = 40736, - [SMALL_STATE(1025)] = 40747, - [SMALL_STATE(1026)] = 40758, - [SMALL_STATE(1027)] = 40769, - [SMALL_STATE(1028)] = 40788, - [SMALL_STATE(1029)] = 40807, - [SMALL_STATE(1030)] = 40818, - [SMALL_STATE(1031)] = 40829, - [SMALL_STATE(1032)] = 40848, - [SMALL_STATE(1033)] = 40865, - [SMALL_STATE(1034)] = 40876, - [SMALL_STATE(1035)] = 40887, - [SMALL_STATE(1036)] = 40904, - [SMALL_STATE(1037)] = 40915, - [SMALL_STATE(1038)] = 40932, - [SMALL_STATE(1039)] = 40949, - [SMALL_STATE(1040)] = 40960, - [SMALL_STATE(1041)] = 40977, - [SMALL_STATE(1042)] = 40988, - [SMALL_STATE(1043)] = 40999, - [SMALL_STATE(1044)] = 41015, - [SMALL_STATE(1045)] = 41029, - [SMALL_STATE(1046)] = 41043, - [SMALL_STATE(1047)] = 41057, - [SMALL_STATE(1048)] = 41069, - [SMALL_STATE(1049)] = 41085, - [SMALL_STATE(1050)] = 41101, - [SMALL_STATE(1051)] = 41117, - [SMALL_STATE(1052)] = 41131, - [SMALL_STATE(1053)] = 41147, - [SMALL_STATE(1054)] = 41163, - [SMALL_STATE(1055)] = 41179, - [SMALL_STATE(1056)] = 41195, - [SMALL_STATE(1057)] = 41207, - [SMALL_STATE(1058)] = 41223, - [SMALL_STATE(1059)] = 41239, - [SMALL_STATE(1060)] = 41255, - [SMALL_STATE(1061)] = 41271, - [SMALL_STATE(1062)] = 41287, - [SMALL_STATE(1063)] = 41303, - [SMALL_STATE(1064)] = 41319, - [SMALL_STATE(1065)] = 41333, - [SMALL_STATE(1066)] = 41349, - [SMALL_STATE(1067)] = 41363, - [SMALL_STATE(1068)] = 41379, - [SMALL_STATE(1069)] = 41395, - [SMALL_STATE(1070)] = 41411, - [SMALL_STATE(1071)] = 41427, - [SMALL_STATE(1072)] = 41443, - [SMALL_STATE(1073)] = 41459, - [SMALL_STATE(1074)] = 41475, - [SMALL_STATE(1075)] = 41491, - [SMALL_STATE(1076)] = 41507, - [SMALL_STATE(1077)] = 41523, - [SMALL_STATE(1078)] = 41537, - [SMALL_STATE(1079)] = 41553, - [SMALL_STATE(1080)] = 41569, - [SMALL_STATE(1081)] = 41585, - [SMALL_STATE(1082)] = 41601, - [SMALL_STATE(1083)] = 41613, - [SMALL_STATE(1084)] = 41627, - [SMALL_STATE(1085)] = 41643, - [SMALL_STATE(1086)] = 41659, - [SMALL_STATE(1087)] = 41675, - [SMALL_STATE(1088)] = 41691, - [SMALL_STATE(1089)] = 41707, - [SMALL_STATE(1090)] = 41723, - [SMALL_STATE(1091)] = 41739, - [SMALL_STATE(1092)] = 41755, - [SMALL_STATE(1093)] = 41769, - [SMALL_STATE(1094)] = 41785, - [SMALL_STATE(1095)] = 41799, - [SMALL_STATE(1096)] = 41815, - [SMALL_STATE(1097)] = 41831, - [SMALL_STATE(1098)] = 41847, - [SMALL_STATE(1099)] = 41863, - [SMALL_STATE(1100)] = 41879, - [SMALL_STATE(1101)] = 41895, - [SMALL_STATE(1102)] = 41911, - [SMALL_STATE(1103)] = 41927, - [SMALL_STATE(1104)] = 41943, - [SMALL_STATE(1105)] = 41955, - [SMALL_STATE(1106)] = 41971, - [SMALL_STATE(1107)] = 41987, - [SMALL_STATE(1108)] = 42001, - [SMALL_STATE(1109)] = 42017, - [SMALL_STATE(1110)] = 42033, - [SMALL_STATE(1111)] = 42049, - [SMALL_STATE(1112)] = 42065, - [SMALL_STATE(1113)] = 42079, - [SMALL_STATE(1114)] = 42095, - [SMALL_STATE(1115)] = 42111, - [SMALL_STATE(1116)] = 42127, - [SMALL_STATE(1117)] = 42143, - [SMALL_STATE(1118)] = 42159, - [SMALL_STATE(1119)] = 42173, - [SMALL_STATE(1120)] = 42189, - [SMALL_STATE(1121)] = 42203, - [SMALL_STATE(1122)] = 42219, - [SMALL_STATE(1123)] = 42233, - [SMALL_STATE(1124)] = 42247, - [SMALL_STATE(1125)] = 42263, - [SMALL_STATE(1126)] = 42279, - [SMALL_STATE(1127)] = 42295, - [SMALL_STATE(1128)] = 42311, - [SMALL_STATE(1129)] = 42327, - [SMALL_STATE(1130)] = 42343, - [SMALL_STATE(1131)] = 42359, - [SMALL_STATE(1132)] = 42375, - [SMALL_STATE(1133)] = 42391, - [SMALL_STATE(1134)] = 42407, - [SMALL_STATE(1135)] = 42423, - [SMALL_STATE(1136)] = 42439, - [SMALL_STATE(1137)] = 42451, - [SMALL_STATE(1138)] = 42467, - [SMALL_STATE(1139)] = 42479, - [SMALL_STATE(1140)] = 42493, - [SMALL_STATE(1141)] = 42509, - [SMALL_STATE(1142)] = 42523, - [SMALL_STATE(1143)] = 42539, - [SMALL_STATE(1144)] = 42548, - [SMALL_STATE(1145)] = 42561, - [SMALL_STATE(1146)] = 42574, - [SMALL_STATE(1147)] = 42585, - [SMALL_STATE(1148)] = 42596, - [SMALL_STATE(1149)] = 42607, - [SMALL_STATE(1150)] = 42620, - [SMALL_STATE(1151)] = 42629, - [SMALL_STATE(1152)] = 42640, - [SMALL_STATE(1153)] = 42653, - [SMALL_STATE(1154)] = 42666, - [SMALL_STATE(1155)] = 42675, - [SMALL_STATE(1156)] = 42688, - [SMALL_STATE(1157)] = 42699, - [SMALL_STATE(1158)] = 42712, - [SMALL_STATE(1159)] = 42725, - [SMALL_STATE(1160)] = 42738, - [SMALL_STATE(1161)] = 42751, - [SMALL_STATE(1162)] = 42764, - [SMALL_STATE(1163)] = 42775, - [SMALL_STATE(1164)] = 42784, - [SMALL_STATE(1165)] = 42797, - [SMALL_STATE(1166)] = 42810, - [SMALL_STATE(1167)] = 42823, - [SMALL_STATE(1168)] = 42832, - [SMALL_STATE(1169)] = 42843, - [SMALL_STATE(1170)] = 42856, - [SMALL_STATE(1171)] = 42865, - [SMALL_STATE(1172)] = 42874, - [SMALL_STATE(1173)] = 42883, - [SMALL_STATE(1174)] = 42892, - [SMALL_STATE(1175)] = 42905, - [SMALL_STATE(1176)] = 42914, - [SMALL_STATE(1177)] = 42927, - [SMALL_STATE(1178)] = 42936, - [SMALL_STATE(1179)] = 42945, - [SMALL_STATE(1180)] = 42958, - [SMALL_STATE(1181)] = 42971, - [SMALL_STATE(1182)] = 42984, - [SMALL_STATE(1183)] = 42995, - [SMALL_STATE(1184)] = 43008, - [SMALL_STATE(1185)] = 43017, - [SMALL_STATE(1186)] = 43030, - [SMALL_STATE(1187)] = 43039, - [SMALL_STATE(1188)] = 43048, - [SMALL_STATE(1189)] = 43061, - [SMALL_STATE(1190)] = 43072, - [SMALL_STATE(1191)] = 43081, - [SMALL_STATE(1192)] = 43092, - [SMALL_STATE(1193)] = 43105, - [SMALL_STATE(1194)] = 43118, - [SMALL_STATE(1195)] = 43127, - [SMALL_STATE(1196)] = 43136, - [SMALL_STATE(1197)] = 43149, - [SMALL_STATE(1198)] = 43158, - [SMALL_STATE(1199)] = 43171, - [SMALL_STATE(1200)] = 43184, - [SMALL_STATE(1201)] = 43197, - [SMALL_STATE(1202)] = 43206, - [SMALL_STATE(1203)] = 43219, - [SMALL_STATE(1204)] = 43232, - [SMALL_STATE(1205)] = 43241, - [SMALL_STATE(1206)] = 43250, - [SMALL_STATE(1207)] = 43263, - [SMALL_STATE(1208)] = 43276, - [SMALL_STATE(1209)] = 43289, - [SMALL_STATE(1210)] = 43302, - [SMALL_STATE(1211)] = 43315, - [SMALL_STATE(1212)] = 43328, - [SMALL_STATE(1213)] = 43337, - [SMALL_STATE(1214)] = 43346, - [SMALL_STATE(1215)] = 43359, - [SMALL_STATE(1216)] = 43368, - [SMALL_STATE(1217)] = 43377, - [SMALL_STATE(1218)] = 43390, - [SMALL_STATE(1219)] = 43399, - [SMALL_STATE(1220)] = 43408, - [SMALL_STATE(1221)] = 43417, - [SMALL_STATE(1222)] = 43430, - [SMALL_STATE(1223)] = 43443, - [SMALL_STATE(1224)] = 43452, - [SMALL_STATE(1225)] = 43461, - [SMALL_STATE(1226)] = 43474, - [SMALL_STATE(1227)] = 43487, - [SMALL_STATE(1228)] = 43498, - [SMALL_STATE(1229)] = 43511, - [SMALL_STATE(1230)] = 43524, - [SMALL_STATE(1231)] = 43537, - [SMALL_STATE(1232)] = 43548, - [SMALL_STATE(1233)] = 43557, - [SMALL_STATE(1234)] = 43570, - [SMALL_STATE(1235)] = 43583, - [SMALL_STATE(1236)] = 43596, - [SMALL_STATE(1237)] = 43605, - [SMALL_STATE(1238)] = 43618, - [SMALL_STATE(1239)] = 43631, - [SMALL_STATE(1240)] = 43644, - [SMALL_STATE(1241)] = 43657, - [SMALL_STATE(1242)] = 43666, - [SMALL_STATE(1243)] = 43679, - [SMALL_STATE(1244)] = 43688, - [SMALL_STATE(1245)] = 43701, - [SMALL_STATE(1246)] = 43710, - [SMALL_STATE(1247)] = 43719, - [SMALL_STATE(1248)] = 43732, - [SMALL_STATE(1249)] = 43745, - [SMALL_STATE(1250)] = 43758, - [SMALL_STATE(1251)] = 43767, - [SMALL_STATE(1252)] = 43780, - [SMALL_STATE(1253)] = 43789, - [SMALL_STATE(1254)] = 43802, - [SMALL_STATE(1255)] = 43811, - [SMALL_STATE(1256)] = 43824, - [SMALL_STATE(1257)] = 43835, - [SMALL_STATE(1258)] = 43848, - [SMALL_STATE(1259)] = 43859, - [SMALL_STATE(1260)] = 43870, - [SMALL_STATE(1261)] = 43881, - [SMALL_STATE(1262)] = 43894, - [SMALL_STATE(1263)] = 43907, - [SMALL_STATE(1264)] = 43920, - [SMALL_STATE(1265)] = 43933, - [SMALL_STATE(1266)] = 43942, - [SMALL_STATE(1267)] = 43953, - [SMALL_STATE(1268)] = 43962, - [SMALL_STATE(1269)] = 43975, - [SMALL_STATE(1270)] = 43984, - [SMALL_STATE(1271)] = 43997, - [SMALL_STATE(1272)] = 44006, - [SMALL_STATE(1273)] = 44015, - [SMALL_STATE(1274)] = 44028, - [SMALL_STATE(1275)] = 44041, - [SMALL_STATE(1276)] = 44050, - [SMALL_STATE(1277)] = 44063, - [SMALL_STATE(1278)] = 44076, - [SMALL_STATE(1279)] = 44089, - [SMALL_STATE(1280)] = 44102, - [SMALL_STATE(1281)] = 44111, - [SMALL_STATE(1282)] = 44124, - [SMALL_STATE(1283)] = 44137, - [SMALL_STATE(1284)] = 44150, - [SMALL_STATE(1285)] = 44163, - [SMALL_STATE(1286)] = 44176, - [SMALL_STATE(1287)] = 44189, - [SMALL_STATE(1288)] = 44202, - [SMALL_STATE(1289)] = 44215, - [SMALL_STATE(1290)] = 44228, - [SMALL_STATE(1291)] = 44241, - [SMALL_STATE(1292)] = 44254, - [SMALL_STATE(1293)] = 44263, - [SMALL_STATE(1294)] = 44276, - [SMALL_STATE(1295)] = 44289, - [SMALL_STATE(1296)] = 44300, - [SMALL_STATE(1297)] = 44313, - [SMALL_STATE(1298)] = 44326, - [SMALL_STATE(1299)] = 44339, - [SMALL_STATE(1300)] = 44352, - [SMALL_STATE(1301)] = 44365, - [SMALL_STATE(1302)] = 44378, - [SMALL_STATE(1303)] = 44391, - [SMALL_STATE(1304)] = 44404, - [SMALL_STATE(1305)] = 44417, - [SMALL_STATE(1306)] = 44430, - [SMALL_STATE(1307)] = 44443, - [SMALL_STATE(1308)] = 44456, - [SMALL_STATE(1309)] = 44469, - [SMALL_STATE(1310)] = 44482, - [SMALL_STATE(1311)] = 44495, - [SMALL_STATE(1312)] = 44508, - [SMALL_STATE(1313)] = 44521, - [SMALL_STATE(1314)] = 44534, - [SMALL_STATE(1315)] = 44547, - [SMALL_STATE(1316)] = 44560, - [SMALL_STATE(1317)] = 44571, - [SMALL_STATE(1318)] = 44584, - [SMALL_STATE(1319)] = 44597, - [SMALL_STATE(1320)] = 44610, - [SMALL_STATE(1321)] = 44621, - [SMALL_STATE(1322)] = 44634, - [SMALL_STATE(1323)] = 44643, - [SMALL_STATE(1324)] = 44656, - [SMALL_STATE(1325)] = 44669, - [SMALL_STATE(1326)] = 44682, - [SMALL_STATE(1327)] = 44695, - [SMALL_STATE(1328)] = 44708, - [SMALL_STATE(1329)] = 44721, - [SMALL_STATE(1330)] = 44734, - [SMALL_STATE(1331)] = 44747, - [SMALL_STATE(1332)] = 44760, - [SMALL_STATE(1333)] = 44773, - [SMALL_STATE(1334)] = 44786, - [SMALL_STATE(1335)] = 44799, - [SMALL_STATE(1336)] = 44809, - [SMALL_STATE(1337)] = 44817, - [SMALL_STATE(1338)] = 44827, - [SMALL_STATE(1339)] = 44837, - [SMALL_STATE(1340)] = 44847, - [SMALL_STATE(1341)] = 44857, - [SMALL_STATE(1342)] = 44867, - [SMALL_STATE(1343)] = 44875, - [SMALL_STATE(1344)] = 44885, - [SMALL_STATE(1345)] = 44895, - [SMALL_STATE(1346)] = 44905, - [SMALL_STATE(1347)] = 44913, - [SMALL_STATE(1348)] = 44923, - [SMALL_STATE(1349)] = 44931, - [SMALL_STATE(1350)] = 44941, - [SMALL_STATE(1351)] = 44949, - [SMALL_STATE(1352)] = 44959, - [SMALL_STATE(1353)] = 44967, - [SMALL_STATE(1354)] = 44975, - [SMALL_STATE(1355)] = 44983, - [SMALL_STATE(1356)] = 44991, - [SMALL_STATE(1357)] = 45001, - [SMALL_STATE(1358)] = 45009, - [SMALL_STATE(1359)] = 45019, - [SMALL_STATE(1360)] = 45027, - [SMALL_STATE(1361)] = 45037, - [SMALL_STATE(1362)] = 45047, - [SMALL_STATE(1363)] = 45055, - [SMALL_STATE(1364)] = 45065, - [SMALL_STATE(1365)] = 45075, - [SMALL_STATE(1366)] = 45085, - [SMALL_STATE(1367)] = 45095, - [SMALL_STATE(1368)] = 45105, - [SMALL_STATE(1369)] = 45113, - [SMALL_STATE(1370)] = 45123, - [SMALL_STATE(1371)] = 45131, - [SMALL_STATE(1372)] = 45141, - [SMALL_STATE(1373)] = 45149, - [SMALL_STATE(1374)] = 45159, - [SMALL_STATE(1375)] = 45169, - [SMALL_STATE(1376)] = 45179, - [SMALL_STATE(1377)] = 45189, - [SMALL_STATE(1378)] = 45199, - [SMALL_STATE(1379)] = 45207, - [SMALL_STATE(1380)] = 45217, - [SMALL_STATE(1381)] = 45227, - [SMALL_STATE(1382)] = 45237, - [SMALL_STATE(1383)] = 45247, - [SMALL_STATE(1384)] = 45257, - [SMALL_STATE(1385)] = 45267, - [SMALL_STATE(1386)] = 45275, - [SMALL_STATE(1387)] = 45283, - [SMALL_STATE(1388)] = 45291, - [SMALL_STATE(1389)] = 45299, - [SMALL_STATE(1390)] = 45307, - [SMALL_STATE(1391)] = 45315, - [SMALL_STATE(1392)] = 45325, - [SMALL_STATE(1393)] = 45335, - [SMALL_STATE(1394)] = 45345, - [SMALL_STATE(1395)] = 45353, - [SMALL_STATE(1396)] = 45363, - [SMALL_STATE(1397)] = 45371, - [SMALL_STATE(1398)] = 45381, - [SMALL_STATE(1399)] = 45389, - [SMALL_STATE(1400)] = 45397, - [SMALL_STATE(1401)] = 45405, - [SMALL_STATE(1402)] = 45413, - [SMALL_STATE(1403)] = 45421, - [SMALL_STATE(1404)] = 45431, - [SMALL_STATE(1405)] = 45441, - [SMALL_STATE(1406)] = 45449, - [SMALL_STATE(1407)] = 45459, - [SMALL_STATE(1408)] = 45469, - [SMALL_STATE(1409)] = 45479, - [SMALL_STATE(1410)] = 45489, - [SMALL_STATE(1411)] = 45499, - [SMALL_STATE(1412)] = 45509, - [SMALL_STATE(1413)] = 45519, - [SMALL_STATE(1414)] = 45529, - [SMALL_STATE(1415)] = 45539, - [SMALL_STATE(1416)] = 45547, - [SMALL_STATE(1417)] = 45557, - [SMALL_STATE(1418)] = 45567, - [SMALL_STATE(1419)] = 45575, - [SMALL_STATE(1420)] = 45585, - [SMALL_STATE(1421)] = 45593, - [SMALL_STATE(1422)] = 45601, - [SMALL_STATE(1423)] = 45611, - [SMALL_STATE(1424)] = 45621, - [SMALL_STATE(1425)] = 45631, - [SMALL_STATE(1426)] = 45639, - [SMALL_STATE(1427)] = 45647, - [SMALL_STATE(1428)] = 45657, - [SMALL_STATE(1429)] = 45665, - [SMALL_STATE(1430)] = 45675, - [SMALL_STATE(1431)] = 45685, - [SMALL_STATE(1432)] = 45695, - [SMALL_STATE(1433)] = 45705, - [SMALL_STATE(1434)] = 45713, - [SMALL_STATE(1435)] = 45723, - [SMALL_STATE(1436)] = 45733, - [SMALL_STATE(1437)] = 45741, - [SMALL_STATE(1438)] = 45751, - [SMALL_STATE(1439)] = 45759, - [SMALL_STATE(1440)] = 45767, - [SMALL_STATE(1441)] = 45777, - [SMALL_STATE(1442)] = 45785, - [SMALL_STATE(1443)] = 45795, - [SMALL_STATE(1444)] = 45803, - [SMALL_STATE(1445)] = 45813, - [SMALL_STATE(1446)] = 45823, - [SMALL_STATE(1447)] = 45833, - [SMALL_STATE(1448)] = 45843, - [SMALL_STATE(1449)] = 45853, - [SMALL_STATE(1450)] = 45863, - [SMALL_STATE(1451)] = 45873, - [SMALL_STATE(1452)] = 45883, - [SMALL_STATE(1453)] = 45893, - [SMALL_STATE(1454)] = 45903, - [SMALL_STATE(1455)] = 45913, - [SMALL_STATE(1456)] = 45923, - [SMALL_STATE(1457)] = 45933, - [SMALL_STATE(1458)] = 45943, - [SMALL_STATE(1459)] = 45953, - [SMALL_STATE(1460)] = 45963, - [SMALL_STATE(1461)] = 45973, - [SMALL_STATE(1462)] = 45983, - [SMALL_STATE(1463)] = 45993, - [SMALL_STATE(1464)] = 46003, - [SMALL_STATE(1465)] = 46011, - [SMALL_STATE(1466)] = 46019, - [SMALL_STATE(1467)] = 46027, - [SMALL_STATE(1468)] = 46037, - [SMALL_STATE(1469)] = 46047, - [SMALL_STATE(1470)] = 46057, - [SMALL_STATE(1471)] = 46064, - [SMALL_STATE(1472)] = 46071, - [SMALL_STATE(1473)] = 46078, - [SMALL_STATE(1474)] = 46085, - [SMALL_STATE(1475)] = 46092, - [SMALL_STATE(1476)] = 46099, - [SMALL_STATE(1477)] = 46106, - [SMALL_STATE(1478)] = 46113, - [SMALL_STATE(1479)] = 46120, - [SMALL_STATE(1480)] = 46127, - [SMALL_STATE(1481)] = 46134, - [SMALL_STATE(1482)] = 46141, - [SMALL_STATE(1483)] = 46148, - [SMALL_STATE(1484)] = 46155, - [SMALL_STATE(1485)] = 46162, - [SMALL_STATE(1486)] = 46169, - [SMALL_STATE(1487)] = 46176, - [SMALL_STATE(1488)] = 46183, - [SMALL_STATE(1489)] = 46190, - [SMALL_STATE(1490)] = 46197, - [SMALL_STATE(1491)] = 46204, - [SMALL_STATE(1492)] = 46211, - [SMALL_STATE(1493)] = 46218, - [SMALL_STATE(1494)] = 46225, - [SMALL_STATE(1495)] = 46232, - [SMALL_STATE(1496)] = 46239, - [SMALL_STATE(1497)] = 46246, - [SMALL_STATE(1498)] = 46253, - [SMALL_STATE(1499)] = 46260, - [SMALL_STATE(1500)] = 46267, - [SMALL_STATE(1501)] = 46274, - [SMALL_STATE(1502)] = 46281, - [SMALL_STATE(1503)] = 46288, - [SMALL_STATE(1504)] = 46295, - [SMALL_STATE(1505)] = 46302, - [SMALL_STATE(1506)] = 46309, - [SMALL_STATE(1507)] = 46316, - [SMALL_STATE(1508)] = 46323, - [SMALL_STATE(1509)] = 46330, - [SMALL_STATE(1510)] = 46337, - [SMALL_STATE(1511)] = 46344, - [SMALL_STATE(1512)] = 46351, - [SMALL_STATE(1513)] = 46358, - [SMALL_STATE(1514)] = 46365, - [SMALL_STATE(1515)] = 46372, - [SMALL_STATE(1516)] = 46379, - [SMALL_STATE(1517)] = 46386, - [SMALL_STATE(1518)] = 46393, - [SMALL_STATE(1519)] = 46400, - [SMALL_STATE(1520)] = 46407, - [SMALL_STATE(1521)] = 46414, - [SMALL_STATE(1522)] = 46421, - [SMALL_STATE(1523)] = 46428, - [SMALL_STATE(1524)] = 46435, - [SMALL_STATE(1525)] = 46442, - [SMALL_STATE(1526)] = 46449, - [SMALL_STATE(1527)] = 46456, - [SMALL_STATE(1528)] = 46463, - [SMALL_STATE(1529)] = 46470, - [SMALL_STATE(1530)] = 46477, - [SMALL_STATE(1531)] = 46484, - [SMALL_STATE(1532)] = 46491, - [SMALL_STATE(1533)] = 46498, - [SMALL_STATE(1534)] = 46505, - [SMALL_STATE(1535)] = 46512, - [SMALL_STATE(1536)] = 46519, - [SMALL_STATE(1537)] = 46526, - [SMALL_STATE(1538)] = 46533, - [SMALL_STATE(1539)] = 46540, - [SMALL_STATE(1540)] = 46547, - [SMALL_STATE(1541)] = 46554, - [SMALL_STATE(1542)] = 46561, - [SMALL_STATE(1543)] = 46568, - [SMALL_STATE(1544)] = 46575, - [SMALL_STATE(1545)] = 46582, - [SMALL_STATE(1546)] = 46589, - [SMALL_STATE(1547)] = 46596, - [SMALL_STATE(1548)] = 46603, - [SMALL_STATE(1549)] = 46610, - [SMALL_STATE(1550)] = 46617, - [SMALL_STATE(1551)] = 46624, - [SMALL_STATE(1552)] = 46631, - [SMALL_STATE(1553)] = 46638, - [SMALL_STATE(1554)] = 46645, - [SMALL_STATE(1555)] = 46652, - [SMALL_STATE(1556)] = 46659, - [SMALL_STATE(1557)] = 46666, - [SMALL_STATE(1558)] = 46673, - [SMALL_STATE(1559)] = 46680, - [SMALL_STATE(1560)] = 46687, - [SMALL_STATE(1561)] = 46694, - [SMALL_STATE(1562)] = 46701, - [SMALL_STATE(1563)] = 46708, - [SMALL_STATE(1564)] = 46715, - [SMALL_STATE(1565)] = 46722, - [SMALL_STATE(1566)] = 46729, - [SMALL_STATE(1567)] = 46736, - [SMALL_STATE(1568)] = 46743, - [SMALL_STATE(1569)] = 46750, - [SMALL_STATE(1570)] = 46757, - [SMALL_STATE(1571)] = 46764, - [SMALL_STATE(1572)] = 46771, - [SMALL_STATE(1573)] = 46778, - [SMALL_STATE(1574)] = 46785, - [SMALL_STATE(1575)] = 46792, - [SMALL_STATE(1576)] = 46799, - [SMALL_STATE(1577)] = 46806, - [SMALL_STATE(1578)] = 46813, - [SMALL_STATE(1579)] = 46820, - [SMALL_STATE(1580)] = 46827, - [SMALL_STATE(1581)] = 46834, - [SMALL_STATE(1582)] = 46841, - [SMALL_STATE(1583)] = 46848, - [SMALL_STATE(1584)] = 46855, - [SMALL_STATE(1585)] = 46862, - [SMALL_STATE(1586)] = 46869, - [SMALL_STATE(1587)] = 46876, - [SMALL_STATE(1588)] = 46883, - [SMALL_STATE(1589)] = 46890, - [SMALL_STATE(1590)] = 46897, - [SMALL_STATE(1591)] = 46904, - [SMALL_STATE(1592)] = 46911, - [SMALL_STATE(1593)] = 46918, - [SMALL_STATE(1594)] = 46925, - [SMALL_STATE(1595)] = 46932, - [SMALL_STATE(1596)] = 46939, - [SMALL_STATE(1597)] = 46946, - [SMALL_STATE(1598)] = 46953, - [SMALL_STATE(1599)] = 46960, - [SMALL_STATE(1600)] = 46967, - [SMALL_STATE(1601)] = 46974, - [SMALL_STATE(1602)] = 46981, - [SMALL_STATE(1603)] = 46988, - [SMALL_STATE(1604)] = 46995, - [SMALL_STATE(1605)] = 47002, - [SMALL_STATE(1606)] = 47009, - [SMALL_STATE(1607)] = 47016, - [SMALL_STATE(1608)] = 47023, - [SMALL_STATE(1609)] = 47030, - [SMALL_STATE(1610)] = 47037, - [SMALL_STATE(1611)] = 47044, - [SMALL_STATE(1612)] = 47051, - [SMALL_STATE(1613)] = 47058, - [SMALL_STATE(1614)] = 47065, - [SMALL_STATE(1615)] = 47072, - [SMALL_STATE(1616)] = 47079, - [SMALL_STATE(1617)] = 47086, - [SMALL_STATE(1618)] = 47093, - [SMALL_STATE(1619)] = 47100, - [SMALL_STATE(1620)] = 47107, - [SMALL_STATE(1621)] = 47114, - [SMALL_STATE(1622)] = 47121, - [SMALL_STATE(1623)] = 47128, - [SMALL_STATE(1624)] = 47135, - [SMALL_STATE(1625)] = 47142, - [SMALL_STATE(1626)] = 47149, - [SMALL_STATE(1627)] = 47156, - [SMALL_STATE(1628)] = 47163, - [SMALL_STATE(1629)] = 47170, - [SMALL_STATE(1630)] = 47177, - [SMALL_STATE(1631)] = 47184, - [SMALL_STATE(1632)] = 47191, + [SMALL_STATE(229)] = 604, + [SMALL_STATE(230)] = 718, + [SMALL_STATE(231)] = 788, + [SMALL_STATE(232)] = 902, + [SMALL_STATE(233)] = 1030, + [SMALL_STATE(234)] = 1144, + [SMALL_STATE(235)] = 1258, + [SMALL_STATE(236)] = 1323, + [SMALL_STATE(237)] = 1388, + [SMALL_STATE(238)] = 1513, + [SMALL_STATE(239)] = 1638, + [SMALL_STATE(240)] = 1703, + [SMALL_STATE(241)] = 1768, + [SMALL_STATE(242)] = 1833, + [SMALL_STATE(243)] = 1898, + [SMALL_STATE(244)] = 2023, + [SMALL_STATE(245)] = 2087, + [SMALL_STATE(246)] = 2151, + [SMALL_STATE(247)] = 2215, + [SMALL_STATE(248)] = 2279, + [SMALL_STATE(249)] = 2343, + [SMALL_STATE(250)] = 2407, + [SMALL_STATE(251)] = 2471, + [SMALL_STATE(252)] = 2535, + [SMALL_STATE(253)] = 2603, + [SMALL_STATE(254)] = 2667, + [SMALL_STATE(255)] = 2731, + [SMALL_STATE(256)] = 2799, + [SMALL_STATE(257)] = 2921, + [SMALL_STATE(258)] = 2985, + [SMALL_STATE(259)] = 3048, + [SMALL_STATE(260)] = 3111, + [SMALL_STATE(261)] = 3174, + [SMALL_STATE(262)] = 3237, + [SMALL_STATE(263)] = 3300, + [SMALL_STATE(264)] = 3363, + [SMALL_STATE(265)] = 3426, + [SMALL_STATE(266)] = 3489, + [SMALL_STATE(267)] = 3552, + [SMALL_STATE(268)] = 3615, + [SMALL_STATE(269)] = 3678, + [SMALL_STATE(270)] = 3741, + [SMALL_STATE(271)] = 3804, + [SMALL_STATE(272)] = 3867, + [SMALL_STATE(273)] = 3930, + [SMALL_STATE(274)] = 3993, + [SMALL_STATE(275)] = 4056, + [SMALL_STATE(276)] = 4119, + [SMALL_STATE(277)] = 4182, + [SMALL_STATE(278)] = 4245, + [SMALL_STATE(279)] = 4308, + [SMALL_STATE(280)] = 4371, + [SMALL_STATE(281)] = 4434, + [SMALL_STATE(282)] = 4497, + [SMALL_STATE(283)] = 4560, + [SMALL_STATE(284)] = 4623, + [SMALL_STATE(285)] = 4686, + [SMALL_STATE(286)] = 4749, + [SMALL_STATE(287)] = 4812, + [SMALL_STATE(288)] = 4875, + [SMALL_STATE(289)] = 4938, + [SMALL_STATE(290)] = 5001, + [SMALL_STATE(291)] = 5064, + [SMALL_STATE(292)] = 5127, + [SMALL_STATE(293)] = 5190, + [SMALL_STATE(294)] = 5253, + [SMALL_STATE(295)] = 5316, + [SMALL_STATE(296)] = 5379, + [SMALL_STATE(297)] = 5442, + [SMALL_STATE(298)] = 5505, + [SMALL_STATE(299)] = 5568, + [SMALL_STATE(300)] = 5631, + [SMALL_STATE(301)] = 5694, + [SMALL_STATE(302)] = 5757, + [SMALL_STATE(303)] = 5820, + [SMALL_STATE(304)] = 5883, + [SMALL_STATE(305)] = 5946, + [SMALL_STATE(306)] = 6009, + [SMALL_STATE(307)] = 6072, + [SMALL_STATE(308)] = 6135, + [SMALL_STATE(309)] = 6198, + [SMALL_STATE(310)] = 6261, + [SMALL_STATE(311)] = 6324, + [SMALL_STATE(312)] = 6387, + [SMALL_STATE(313)] = 6450, + [SMALL_STATE(314)] = 6513, + [SMALL_STATE(315)] = 6576, + [SMALL_STATE(316)] = 6639, + [SMALL_STATE(317)] = 6702, + [SMALL_STATE(318)] = 6765, + [SMALL_STATE(319)] = 6828, + [SMALL_STATE(320)] = 6891, + [SMALL_STATE(321)] = 6954, + [SMALL_STATE(322)] = 7017, + [SMALL_STATE(323)] = 7080, + [SMALL_STATE(324)] = 7143, + [SMALL_STATE(325)] = 7206, + [SMALL_STATE(326)] = 7269, + [SMALL_STATE(327)] = 7332, + [SMALL_STATE(328)] = 7395, + [SMALL_STATE(329)] = 7458, + [SMALL_STATE(330)] = 7521, + [SMALL_STATE(331)] = 7584, + [SMALL_STATE(332)] = 7647, + [SMALL_STATE(333)] = 7710, + [SMALL_STATE(334)] = 7773, + [SMALL_STATE(335)] = 7836, + [SMALL_STATE(336)] = 7899, + [SMALL_STATE(337)] = 7962, + [SMALL_STATE(338)] = 8025, + [SMALL_STATE(339)] = 8141, + [SMALL_STATE(340)] = 8257, + [SMALL_STATE(341)] = 8373, + [SMALL_STATE(342)] = 8489, + [SMALL_STATE(343)] = 8605, + [SMALL_STATE(344)] = 8720, + [SMALL_STATE(345)] = 8835, + [SMALL_STATE(346)] = 8948, + [SMALL_STATE(347)] = 9063, + [SMALL_STATE(348)] = 9178, + [SMALL_STATE(349)] = 9291, + [SMALL_STATE(350)] = 9404, + [SMALL_STATE(351)] = 9514, + [SMALL_STATE(352)] = 9620, + [SMALL_STATE(353)] = 9726, + [SMALL_STATE(354)] = 9827, + [SMALL_STATE(355)] = 9928, + [SMALL_STATE(356)] = 10029, + [SMALL_STATE(357)] = 10130, + [SMALL_STATE(358)] = 10231, + [SMALL_STATE(359)] = 10332, + [SMALL_STATE(360)] = 10433, + [SMALL_STATE(361)] = 10534, + [SMALL_STATE(362)] = 10632, + [SMALL_STATE(363)] = 10730, + [SMALL_STATE(364)] = 10828, + [SMALL_STATE(365)] = 10926, + [SMALL_STATE(366)] = 11024, + [SMALL_STATE(367)] = 11122, + [SMALL_STATE(368)] = 11220, + [SMALL_STATE(369)] = 11318, + [SMALL_STATE(370)] = 11416, + [SMALL_STATE(371)] = 11514, + [SMALL_STATE(372)] = 11612, + [SMALL_STATE(373)] = 11710, + [SMALL_STATE(374)] = 11808, + [SMALL_STATE(375)] = 11906, + [SMALL_STATE(376)] = 12004, + [SMALL_STATE(377)] = 12102, + [SMALL_STATE(378)] = 12197, + [SMALL_STATE(379)] = 12292, + [SMALL_STATE(380)] = 12387, + [SMALL_STATE(381)] = 12444, + [SMALL_STATE(382)] = 12539, + [SMALL_STATE(383)] = 12634, + [SMALL_STATE(384)] = 12729, + [SMALL_STATE(385)] = 12824, + [SMALL_STATE(386)] = 12919, + [SMALL_STATE(387)] = 13014, + [SMALL_STATE(388)] = 13109, + [SMALL_STATE(389)] = 13204, + [SMALL_STATE(390)] = 13299, + [SMALL_STATE(391)] = 13394, + [SMALL_STATE(392)] = 13489, + [SMALL_STATE(393)] = 13584, + [SMALL_STATE(394)] = 13679, + [SMALL_STATE(395)] = 13774, + [SMALL_STATE(396)] = 13866, + [SMALL_STATE(397)] = 13958, + [SMALL_STATE(398)] = 14050, + [SMALL_STATE(399)] = 14142, + [SMALL_STATE(400)] = 14234, + [SMALL_STATE(401)] = 14326, + [SMALL_STATE(402)] = 14415, + [SMALL_STATE(403)] = 14504, + [SMALL_STATE(404)] = 14593, + [SMALL_STATE(405)] = 14644, + [SMALL_STATE(406)] = 14733, + [SMALL_STATE(407)] = 14781, + [SMALL_STATE(408)] = 14826, + [SMALL_STATE(409)] = 14871, + [SMALL_STATE(410)] = 14916, + [SMALL_STATE(411)] = 14961, + [SMALL_STATE(412)] = 15014, + [SMALL_STATE(413)] = 15059, + [SMALL_STATE(414)] = 15104, + [SMALL_STATE(415)] = 15149, + [SMALL_STATE(416)] = 15195, + [SMALL_STATE(417)] = 15241, + [SMALL_STATE(418)] = 15289, + [SMALL_STATE(419)] = 15335, + [SMALL_STATE(420)] = 15381, + [SMALL_STATE(421)] = 15426, + [SMALL_STATE(422)] = 15479, + [SMALL_STATE(423)] = 15552, + [SMALL_STATE(424)] = 15625, + [SMALL_STATE(425)] = 15670, + [SMALL_STATE(426)] = 15743, + [SMALL_STATE(427)] = 15796, + [SMALL_STATE(428)] = 15849, + [SMALL_STATE(429)] = 15902, + [SMALL_STATE(430)] = 15949, + [SMALL_STATE(431)] = 15996, + [SMALL_STATE(432)] = 16069, + [SMALL_STATE(433)] = 16112, + [SMALL_STATE(434)] = 16155, + [SMALL_STATE(435)] = 16200, + [SMALL_STATE(436)] = 16243, + [SMALL_STATE(437)] = 16286, + [SMALL_STATE(438)] = 16339, + [SMALL_STATE(439)] = 16382, + [SMALL_STATE(440)] = 16426, + [SMALL_STATE(441)] = 16486, + [SMALL_STATE(442)] = 16528, + [SMALL_STATE(443)] = 16570, + [SMALL_STATE(444)] = 16612, + [SMALL_STATE(445)] = 16654, + [SMALL_STATE(446)] = 16696, + [SMALL_STATE(447)] = 16768, + [SMALL_STATE(448)] = 16840, + [SMALL_STATE(449)] = 16882, + [SMALL_STATE(450)] = 16924, + [SMALL_STATE(451)] = 16966, + [SMALL_STATE(452)] = 17008, + [SMALL_STATE(453)] = 17050, + [SMALL_STATE(454)] = 17092, + [SMALL_STATE(455)] = 17134, + [SMALL_STATE(456)] = 17176, + [SMALL_STATE(457)] = 17218, + [SMALL_STATE(458)] = 17260, + [SMALL_STATE(459)] = 17302, + [SMALL_STATE(460)] = 17344, + [SMALL_STATE(461)] = 17386, + [SMALL_STATE(462)] = 17428, + [SMALL_STATE(463)] = 17470, + [SMALL_STATE(464)] = 17512, + [SMALL_STATE(465)] = 17554, + [SMALL_STATE(466)] = 17596, + [SMALL_STATE(467)] = 17638, + [SMALL_STATE(468)] = 17680, + [SMALL_STATE(469)] = 17722, + [SMALL_STATE(470)] = 17794, + [SMALL_STATE(471)] = 17836, + [SMALL_STATE(472)] = 17878, + [SMALL_STATE(473)] = 17948, + [SMALL_STATE(474)] = 17990, + [SMALL_STATE(475)] = 18044, + [SMALL_STATE(476)] = 18086, + [SMALL_STATE(477)] = 18154, + [SMALL_STATE(478)] = 18216, + [SMALL_STATE(479)] = 18274, + [SMALL_STATE(480)] = 18316, + [SMALL_STATE(481)] = 18358, + [SMALL_STATE(482)] = 18400, + [SMALL_STATE(483)] = 18442, + [SMALL_STATE(484)] = 18484, + [SMALL_STATE(485)] = 18556, + [SMALL_STATE(486)] = 18598, + [SMALL_STATE(487)] = 18662, + [SMALL_STATE(488)] = 18718, + [SMALL_STATE(489)] = 18759, + [SMALL_STATE(490)] = 18800, + [SMALL_STATE(491)] = 18841, + [SMALL_STATE(492)] = 18882, + [SMALL_STATE(493)] = 18923, + [SMALL_STATE(494)] = 18964, + [SMALL_STATE(495)] = 19009, + [SMALL_STATE(496)] = 19050, + [SMALL_STATE(497)] = 19091, + [SMALL_STATE(498)] = 19132, + [SMALL_STATE(499)] = 19173, + [SMALL_STATE(500)] = 19252, + [SMALL_STATE(501)] = 19293, + [SMALL_STATE(502)] = 19334, + [SMALL_STATE(503)] = 19413, + [SMALL_STATE(504)] = 19454, + [SMALL_STATE(505)] = 19495, + [SMALL_STATE(506)] = 19536, + [SMALL_STATE(507)] = 19577, + [SMALL_STATE(508)] = 19618, + [SMALL_STATE(509)] = 19659, + [SMALL_STATE(510)] = 19700, + [SMALL_STATE(511)] = 19741, + [SMALL_STATE(512)] = 19782, + [SMALL_STATE(513)] = 19823, + [SMALL_STATE(514)] = 19864, + [SMALL_STATE(515)] = 19905, + [SMALL_STATE(516)] = 19946, + [SMALL_STATE(517)] = 19987, + [SMALL_STATE(518)] = 20028, + [SMALL_STATE(519)] = 20107, + [SMALL_STATE(520)] = 20148, + [SMALL_STATE(521)] = 20189, + [SMALL_STATE(522)] = 20230, + [SMALL_STATE(523)] = 20271, + [SMALL_STATE(524)] = 20312, + [SMALL_STATE(525)] = 20353, + [SMALL_STATE(526)] = 20394, + [SMALL_STATE(527)] = 20435, + [SMALL_STATE(528)] = 20476, + [SMALL_STATE(529)] = 20517, + [SMALL_STATE(530)] = 20558, + [SMALL_STATE(531)] = 20599, + [SMALL_STATE(532)] = 20640, + [SMALL_STATE(533)] = 20681, + [SMALL_STATE(534)] = 20722, + [SMALL_STATE(535)] = 20763, + [SMALL_STATE(536)] = 20804, + [SMALL_STATE(537)] = 20845, + [SMALL_STATE(538)] = 20886, + [SMALL_STATE(539)] = 20927, + [SMALL_STATE(540)] = 20968, + [SMALL_STATE(541)] = 21009, + [SMALL_STATE(542)] = 21050, + [SMALL_STATE(543)] = 21091, + [SMALL_STATE(544)] = 21132, + [SMALL_STATE(545)] = 21173, + [SMALL_STATE(546)] = 21214, + [SMALL_STATE(547)] = 21255, + [SMALL_STATE(548)] = 21296, + [SMALL_STATE(549)] = 21337, + [SMALL_STATE(550)] = 21416, + [SMALL_STATE(551)] = 21457, + [SMALL_STATE(552)] = 21498, + [SMALL_STATE(553)] = 21539, + [SMALL_STATE(554)] = 21580, + [SMALL_STATE(555)] = 21621, + [SMALL_STATE(556)] = 21662, + [SMALL_STATE(557)] = 21711, + [SMALL_STATE(558)] = 21752, + [SMALL_STATE(559)] = 21793, + [SMALL_STATE(560)] = 21834, + [SMALL_STATE(561)] = 21875, + [SMALL_STATE(562)] = 21916, + [SMALL_STATE(563)] = 21957, + [SMALL_STATE(564)] = 21998, + [SMALL_STATE(565)] = 22039, + [SMALL_STATE(566)] = 22080, + [SMALL_STATE(567)] = 22121, + [SMALL_STATE(568)] = 22162, + [SMALL_STATE(569)] = 22203, + [SMALL_STATE(570)] = 22244, + [SMALL_STATE(571)] = 22285, + [SMALL_STATE(572)] = 22326, + [SMALL_STATE(573)] = 22367, + [SMALL_STATE(574)] = 22409, + [SMALL_STATE(575)] = 22475, + [SMALL_STATE(576)] = 22521, + [SMALL_STATE(577)] = 22597, + [SMALL_STATE(578)] = 22673, + [SMALL_STATE(579)] = 22739, + [SMALL_STATE(580)] = 22781, + [SMALL_STATE(581)] = 22847, + [SMALL_STATE(582)] = 22913, + [SMALL_STATE(583)] = 22979, + [SMALL_STATE(584)] = 23055, + [SMALL_STATE(585)] = 23131, + [SMALL_STATE(586)] = 23173, + [SMALL_STATE(587)] = 23249, + [SMALL_STATE(588)] = 23291, + [SMALL_STATE(589)] = 23367, + [SMALL_STATE(590)] = 23433, + [SMALL_STATE(591)] = 23499, + [SMALL_STATE(592)] = 23565, + [SMALL_STATE(593)] = 23631, + [SMALL_STATE(594)] = 23697, + [SMALL_STATE(595)] = 23760, + [SMALL_STATE(596)] = 23801, + [SMALL_STATE(597)] = 23844, + [SMALL_STATE(598)] = 23883, + [SMALL_STATE(599)] = 23956, + [SMALL_STATE(600)] = 24019, + [SMALL_STATE(601)] = 24060, + [SMALL_STATE(602)] = 24101, + [SMALL_STATE(603)] = 24164, + [SMALL_STATE(604)] = 24227, + [SMALL_STATE(605)] = 24300, + [SMALL_STATE(606)] = 24373, + [SMALL_STATE(607)] = 24436, + [SMALL_STATE(608)] = 24509, + [SMALL_STATE(609)] = 24582, + [SMALL_STATE(610)] = 24645, + [SMALL_STATE(611)] = 24708, + [SMALL_STATE(612)] = 24781, + [SMALL_STATE(613)] = 24854, + [SMALL_STATE(614)] = 24927, + [SMALL_STATE(615)] = 24990, + [SMALL_STATE(616)] = 25053, + [SMALL_STATE(617)] = 25116, + [SMALL_STATE(618)] = 25155, + [SMALL_STATE(619)] = 25218, + [SMALL_STATE(620)] = 25281, + [SMALL_STATE(621)] = 25352, + [SMALL_STATE(622)] = 25423, + [SMALL_STATE(623)] = 25494, + [SMALL_STATE(624)] = 25557, + [SMALL_STATE(625)] = 25620, + [SMALL_STATE(626)] = 25683, + [SMALL_STATE(627)] = 25746, + [SMALL_STATE(628)] = 25809, + [SMALL_STATE(629)] = 25880, + [SMALL_STATE(630)] = 25951, + [SMALL_STATE(631)] = 26014, + [SMALL_STATE(632)] = 26087, + [SMALL_STATE(633)] = 26160, + [SMALL_STATE(634)] = 26223, + [SMALL_STATE(635)] = 26294, + [SMALL_STATE(636)] = 26337, + [SMALL_STATE(637)] = 26408, + [SMALL_STATE(638)] = 26481, + [SMALL_STATE(639)] = 26552, + [SMALL_STATE(640)] = 26625, + [SMALL_STATE(641)] = 26696, + [SMALL_STATE(642)] = 26769, + [SMALL_STATE(643)] = 26832, + [SMALL_STATE(644)] = 26895, + [SMALL_STATE(645)] = 26966, + [SMALL_STATE(646)] = 27029, + [SMALL_STATE(647)] = 27092, + [SMALL_STATE(648)] = 27155, + [SMALL_STATE(649)] = 27228, + [SMALL_STATE(650)] = 27267, + [SMALL_STATE(651)] = 27330, + [SMALL_STATE(652)] = 27403, + [SMALL_STATE(653)] = 27466, + [SMALL_STATE(654)] = 27505, + [SMALL_STATE(655)] = 27578, + [SMALL_STATE(656)] = 27649, + [SMALL_STATE(657)] = 27712, + [SMALL_STATE(658)] = 27775, + [SMALL_STATE(659)] = 27818, + [SMALL_STATE(660)] = 27861, + [SMALL_STATE(661)] = 27924, + [SMALL_STATE(662)] = 27987, + [SMALL_STATE(663)] = 28050, + [SMALL_STATE(664)] = 28113, + [SMALL_STATE(665)] = 28176, + [SMALL_STATE(666)] = 28249, + [SMALL_STATE(667)] = 28288, + [SMALL_STATE(668)] = 28331, + [SMALL_STATE(669)] = 28394, + [SMALL_STATE(670)] = 28433, + [SMALL_STATE(671)] = 28472, + [SMALL_STATE(672)] = 28545, + [SMALL_STATE(673)] = 28584, + [SMALL_STATE(674)] = 28623, + [SMALL_STATE(675)] = 28686, + [SMALL_STATE(676)] = 28759, + [SMALL_STATE(677)] = 28800, + [SMALL_STATE(678)] = 28873, + [SMALL_STATE(679)] = 28936, + [SMALL_STATE(680)] = 29009, + [SMALL_STATE(681)] = 29082, + [SMALL_STATE(682)] = 29155, + [SMALL_STATE(683)] = 29228, + [SMALL_STATE(684)] = 29267, + [SMALL_STATE(685)] = 29330, + [SMALL_STATE(686)] = 29403, + [SMALL_STATE(687)] = 29466, + [SMALL_STATE(688)] = 29529, + [SMALL_STATE(689)] = 29602, + [SMALL_STATE(690)] = 29665, + [SMALL_STATE(691)] = 29738, + [SMALL_STATE(692)] = 29801, + [SMALL_STATE(693)] = 29864, + [SMALL_STATE(694)] = 29927, + [SMALL_STATE(695)] = 30000, + [SMALL_STATE(696)] = 30039, + [SMALL_STATE(697)] = 30078, + [SMALL_STATE(698)] = 30141, + [SMALL_STATE(699)] = 30214, + [SMALL_STATE(700)] = 30284, + [SMALL_STATE(701)] = 30348, + [SMALL_STATE(702)] = 30418, + [SMALL_STATE(703)] = 30456, + [SMALL_STATE(704)] = 30494, + [SMALL_STATE(705)] = 30534, + [SMALL_STATE(706)] = 30604, + [SMALL_STATE(707)] = 30674, + [SMALL_STATE(708)] = 30722, + [SMALL_STATE(709)] = 30792, + [SMALL_STATE(710)] = 30862, + [SMALL_STATE(711)] = 30932, + [SMALL_STATE(712)] = 30970, + [SMALL_STATE(713)] = 31038, + [SMALL_STATE(714)] = 31108, + [SMALL_STATE(715)] = 31176, + [SMALL_STATE(716)] = 31214, + [SMALL_STATE(717)] = 31254, + [SMALL_STATE(718)] = 31324, + [SMALL_STATE(719)] = 31394, + [SMALL_STATE(720)] = 31434, + [SMALL_STATE(721)] = 31472, + [SMALL_STATE(722)] = 31542, + [SMALL_STATE(723)] = 31582, + [SMALL_STATE(724)] = 31652, + [SMALL_STATE(725)] = 31720, + [SMALL_STATE(726)] = 31790, + [SMALL_STATE(727)] = 31838, + [SMALL_STATE(728)] = 31898, + [SMALL_STATE(729)] = 31948, + [SMALL_STATE(730)] = 32004, + [SMALL_STATE(731)] = 32058, + [SMALL_STATE(732)] = 32128, + [SMALL_STATE(733)] = 32198, + [SMALL_STATE(734)] = 32256, + [SMALL_STATE(735)] = 32326, + [SMALL_STATE(736)] = 32364, + [SMALL_STATE(737)] = 32434, + [SMALL_STATE(738)] = 32504, + [SMALL_STATE(739)] = 32574, + [SMALL_STATE(740)] = 32622, + [SMALL_STATE(741)] = 32688, + [SMALL_STATE(742)] = 32726, + [SMALL_STATE(743)] = 32794, + [SMALL_STATE(744)] = 32864, + [SMALL_STATE(745)] = 32916, + [SMALL_STATE(746)] = 32986, + [SMALL_STATE(747)] = 33054, + [SMALL_STATE(748)] = 33102, + [SMALL_STATE(749)] = 33142, + [SMALL_STATE(750)] = 33212, + [SMALL_STATE(751)] = 33280, + [SMALL_STATE(752)] = 33332, + [SMALL_STATE(753)] = 33400, + [SMALL_STATE(754)] = 33470, + [SMALL_STATE(755)] = 33540, + [SMALL_STATE(756)] = 33578, + [SMALL_STATE(757)] = 33644, + [SMALL_STATE(758)] = 33714, + [SMALL_STATE(759)] = 33778, + [SMALL_STATE(760)] = 33816, + [SMALL_STATE(761)] = 33874, + [SMALL_STATE(762)] = 33944, + [SMALL_STATE(763)] = 33998, + [SMALL_STATE(764)] = 34068, + [SMALL_STATE(765)] = 34138, + [SMALL_STATE(766)] = 34194, + [SMALL_STATE(767)] = 34244, + [SMALL_STATE(768)] = 34304, + [SMALL_STATE(769)] = 34372, + [SMALL_STATE(770)] = 34442, + [SMALL_STATE(771)] = 34512, + [SMALL_STATE(772)] = 34582, + [SMALL_STATE(773)] = 34619, + [SMALL_STATE(774)] = 34656, + [SMALL_STATE(775)] = 34693, + [SMALL_STATE(776)] = 34730, + [SMALL_STATE(777)] = 34767, + [SMALL_STATE(778)] = 34804, + [SMALL_STATE(779)] = 34841, + [SMALL_STATE(780)] = 34878, + [SMALL_STATE(781)] = 34915, + [SMALL_STATE(782)] = 34952, + [SMALL_STATE(783)] = 34989, + [SMALL_STATE(784)] = 35044, + [SMALL_STATE(785)] = 35081, + [SMALL_STATE(786)] = 35118, + [SMALL_STATE(787)] = 35155, + [SMALL_STATE(788)] = 35192, + [SMALL_STATE(789)] = 35229, + [SMALL_STATE(790)] = 35266, + [SMALL_STATE(791)] = 35303, + [SMALL_STATE(792)] = 35340, + [SMALL_STATE(793)] = 35377, + [SMALL_STATE(794)] = 35414, + [SMALL_STATE(795)] = 35451, + [SMALL_STATE(796)] = 35488, + [SMALL_STATE(797)] = 35525, + [SMALL_STATE(798)] = 35562, + [SMALL_STATE(799)] = 35599, + [SMALL_STATE(800)] = 35636, + [SMALL_STATE(801)] = 35673, + [SMALL_STATE(802)] = 35710, + [SMALL_STATE(803)] = 35747, + [SMALL_STATE(804)] = 35784, + [SMALL_STATE(805)] = 35821, + [SMALL_STATE(806)] = 35858, + [SMALL_STATE(807)] = 35895, + [SMALL_STATE(808)] = 35932, + [SMALL_STATE(809)] = 35969, + [SMALL_STATE(810)] = 36006, + [SMALL_STATE(811)] = 36043, + [SMALL_STATE(812)] = 36080, + [SMALL_STATE(813)] = 36117, + [SMALL_STATE(814)] = 36154, + [SMALL_STATE(815)] = 36191, + [SMALL_STATE(816)] = 36228, + [SMALL_STATE(817)] = 36265, + [SMALL_STATE(818)] = 36302, + [SMALL_STATE(819)] = 36354, + [SMALL_STATE(820)] = 36406, + [SMALL_STATE(821)] = 36455, + [SMALL_STATE(822)] = 36504, + [SMALL_STATE(823)] = 36553, + [SMALL_STATE(824)] = 36602, + [SMALL_STATE(825)] = 36651, + [SMALL_STATE(826)] = 36688, + [SMALL_STATE(827)] = 36719, + [SMALL_STATE(828)] = 36761, + [SMALL_STATE(829)] = 36800, + [SMALL_STATE(830)] = 36839, + [SMALL_STATE(831)] = 36878, + [SMALL_STATE(832)] = 36917, + [SMALL_STATE(833)] = 36956, + [SMALL_STATE(834)] = 36995, + [SMALL_STATE(835)] = 37034, + [SMALL_STATE(836)] = 37073, + [SMALL_STATE(837)] = 37112, + [SMALL_STATE(838)] = 37151, + [SMALL_STATE(839)] = 37190, + [SMALL_STATE(840)] = 37226, + [SMALL_STATE(841)] = 37262, + [SMALL_STATE(842)] = 37288, + [SMALL_STATE(843)] = 37314, + [SMALL_STATE(844)] = 37340, + [SMALL_STATE(845)] = 37366, + [SMALL_STATE(846)] = 37400, + [SMALL_STATE(847)] = 37423, + [SMALL_STATE(848)] = 37444, + [SMALL_STATE(849)] = 37467, + [SMALL_STATE(850)] = 37488, + [SMALL_STATE(851)] = 37509, + [SMALL_STATE(852)] = 37530, + [SMALL_STATE(853)] = 37553, + [SMALL_STATE(854)] = 37576, + [SMALL_STATE(855)] = 37594, + [SMALL_STATE(856)] = 37612, + [SMALL_STATE(857)] = 37630, + [SMALL_STATE(858)] = 37658, + [SMALL_STATE(859)] = 37676, + [SMALL_STATE(860)] = 37716, + [SMALL_STATE(861)] = 37734, + [SMALL_STATE(862)] = 37774, + [SMALL_STATE(863)] = 37792, + [SMALL_STATE(864)] = 37810, + [SMALL_STATE(865)] = 37835, + [SMALL_STATE(866)] = 37856, + [SMALL_STATE(867)] = 37873, + [SMALL_STATE(868)] = 37894, + [SMALL_STATE(869)] = 37911, + [SMALL_STATE(870)] = 37928, + [SMALL_STATE(871)] = 37959, + [SMALL_STATE(872)] = 37978, + [SMALL_STATE(873)] = 37995, + [SMALL_STATE(874)] = 38014, + [SMALL_STATE(875)] = 38045, + [SMALL_STATE(876)] = 38066, + [SMALL_STATE(877)] = 38087, + [SMALL_STATE(878)] = 38106, + [SMALL_STATE(879)] = 38125, + [SMALL_STATE(880)] = 38157, + [SMALL_STATE(881)] = 38181, + [SMALL_STATE(882)] = 38197, + [SMALL_STATE(883)] = 38213, + [SMALL_STATE(884)] = 38245, + [SMALL_STATE(885)] = 38261, + [SMALL_STATE(886)] = 38277, + [SMALL_STATE(887)] = 38309, + [SMALL_STATE(888)] = 38325, + [SMALL_STATE(889)] = 38353, + [SMALL_STATE(890)] = 38381, + [SMALL_STATE(891)] = 38413, + [SMALL_STATE(892)] = 38429, + [SMALL_STATE(893)] = 38449, + [SMALL_STATE(894)] = 38465, + [SMALL_STATE(895)] = 38493, + [SMALL_STATE(896)] = 38509, + [SMALL_STATE(897)] = 38525, + [SMALL_STATE(898)] = 38553, + [SMALL_STATE(899)] = 38569, + [SMALL_STATE(900)] = 38585, + [SMALL_STATE(901)] = 38614, + [SMALL_STATE(902)] = 38629, + [SMALL_STATE(903)] = 38652, + [SMALL_STATE(904)] = 38681, + [SMALL_STATE(905)] = 38710, + [SMALL_STATE(906)] = 38725, + [SMALL_STATE(907)] = 38754, + [SMALL_STATE(908)] = 38783, + [SMALL_STATE(909)] = 38812, + [SMALL_STATE(910)] = 38841, + [SMALL_STATE(911)] = 38870, + [SMALL_STATE(912)] = 38897, + [SMALL_STATE(913)] = 38916, + [SMALL_STATE(914)] = 38941, + [SMALL_STATE(915)] = 38970, + [SMALL_STATE(916)] = 38985, + [SMALL_STATE(917)] = 38999, + [SMALL_STATE(918)] = 39013, + [SMALL_STATE(919)] = 39027, + [SMALL_STATE(920)] = 39053, + [SMALL_STATE(921)] = 39075, + [SMALL_STATE(922)] = 39089, + [SMALL_STATE(923)] = 39115, + [SMALL_STATE(924)] = 39129, + [SMALL_STATE(925)] = 39143, + [SMALL_STATE(926)] = 39157, + [SMALL_STATE(927)] = 39183, + [SMALL_STATE(928)] = 39197, + [SMALL_STATE(929)] = 39211, + [SMALL_STATE(930)] = 39225, + [SMALL_STATE(931)] = 39251, + [SMALL_STATE(932)] = 39265, + [SMALL_STATE(933)] = 39279, + [SMALL_STATE(934)] = 39293, + [SMALL_STATE(935)] = 39319, + [SMALL_STATE(936)] = 39333, + [SMALL_STATE(937)] = 39347, + [SMALL_STATE(938)] = 39361, + [SMALL_STATE(939)] = 39375, + [SMALL_STATE(940)] = 39389, + [SMALL_STATE(941)] = 39415, + [SMALL_STATE(942)] = 39429, + [SMALL_STATE(943)] = 39443, + [SMALL_STATE(944)] = 39457, + [SMALL_STATE(945)] = 39471, + [SMALL_STATE(946)] = 39485, + [SMALL_STATE(947)] = 39499, + [SMALL_STATE(948)] = 39517, + [SMALL_STATE(949)] = 39531, + [SMALL_STATE(950)] = 39557, + [SMALL_STATE(951)] = 39571, + [SMALL_STATE(952)] = 39585, + [SMALL_STATE(953)] = 39611, + [SMALL_STATE(954)] = 39637, + [SMALL_STATE(955)] = 39655, + [SMALL_STATE(956)] = 39669, + [SMALL_STATE(957)] = 39683, + [SMALL_STATE(958)] = 39701, + [SMALL_STATE(959)] = 39715, + [SMALL_STATE(960)] = 39733, + [SMALL_STATE(961)] = 39759, + [SMALL_STATE(962)] = 39782, + [SMALL_STATE(963)] = 39805, + [SMALL_STATE(964)] = 39828, + [SMALL_STATE(965)] = 39851, + [SMALL_STATE(966)] = 39874, + [SMALL_STATE(967)] = 39897, + [SMALL_STATE(968)] = 39922, + [SMALL_STATE(969)] = 39947, + [SMALL_STATE(970)] = 39972, + [SMALL_STATE(971)] = 39997, + [SMALL_STATE(972)] = 40018, + [SMALL_STATE(973)] = 40039, + [SMALL_STATE(974)] = 40060, + [SMALL_STATE(975)] = 40079, + [SMALL_STATE(976)] = 40102, + [SMALL_STATE(977)] = 40122, + [SMALL_STATE(978)] = 40142, + [SMALL_STATE(979)] = 40162, + [SMALL_STATE(980)] = 40184, + [SMALL_STATE(981)] = 40206, + [SMALL_STATE(982)] = 40224, + [SMALL_STATE(983)] = 40244, + [SMALL_STATE(984)] = 40256, + [SMALL_STATE(985)] = 40274, + [SMALL_STATE(986)] = 40286, + [SMALL_STATE(987)] = 40298, + [SMALL_STATE(988)] = 40320, + [SMALL_STATE(989)] = 40332, + [SMALL_STATE(990)] = 40352, + [SMALL_STATE(991)] = 40372, + [SMALL_STATE(992)] = 40392, + [SMALL_STATE(993)] = 40412, + [SMALL_STATE(994)] = 40432, + [SMALL_STATE(995)] = 40450, + [SMALL_STATE(996)] = 40466, + [SMALL_STATE(997)] = 40486, + [SMALL_STATE(998)] = 40497, + [SMALL_STATE(999)] = 40516, + [SMALL_STATE(1000)] = 40531, + [SMALL_STATE(1001)] = 40550, + [SMALL_STATE(1002)] = 40569, + [SMALL_STATE(1003)] = 40586, + [SMALL_STATE(1004)] = 40601, + [SMALL_STATE(1005)] = 40612, + [SMALL_STATE(1006)] = 40631, + [SMALL_STATE(1007)] = 40642, + [SMALL_STATE(1008)] = 40653, + [SMALL_STATE(1009)] = 40664, + [SMALL_STATE(1010)] = 40683, + [SMALL_STATE(1011)] = 40694, + [SMALL_STATE(1012)] = 40711, + [SMALL_STATE(1013)] = 40728, + [SMALL_STATE(1014)] = 40745, + [SMALL_STATE(1015)] = 40764, + [SMALL_STATE(1016)] = 40781, + [SMALL_STATE(1017)] = 40792, + [SMALL_STATE(1018)] = 40807, + [SMALL_STATE(1019)] = 40818, + [SMALL_STATE(1020)] = 40829, + [SMALL_STATE(1021)] = 40844, + [SMALL_STATE(1022)] = 40855, + [SMALL_STATE(1023)] = 40874, + [SMALL_STATE(1024)] = 40891, + [SMALL_STATE(1025)] = 40902, + [SMALL_STATE(1026)] = 40913, + [SMALL_STATE(1027)] = 40924, + [SMALL_STATE(1028)] = 40941, + [SMALL_STATE(1029)] = 40960, + [SMALL_STATE(1030)] = 40977, + [SMALL_STATE(1031)] = 40988, + [SMALL_STATE(1032)] = 41005, + [SMALL_STATE(1033)] = 41022, + [SMALL_STATE(1034)] = 41037, + [SMALL_STATE(1035)] = 41052, + [SMALL_STATE(1036)] = 41071, + [SMALL_STATE(1037)] = 41090, + [SMALL_STATE(1038)] = 41109, + [SMALL_STATE(1039)] = 41128, + [SMALL_STATE(1040)] = 41143, + [SMALL_STATE(1041)] = 41162, + [SMALL_STATE(1042)] = 41173, + [SMALL_STATE(1043)] = 41192, + [SMALL_STATE(1044)] = 41203, + [SMALL_STATE(1045)] = 41214, + [SMALL_STATE(1046)] = 41225, + [SMALL_STATE(1047)] = 41236, + [SMALL_STATE(1048)] = 41255, + [SMALL_STATE(1049)] = 41272, + [SMALL_STATE(1050)] = 41288, + [SMALL_STATE(1051)] = 41304, + [SMALL_STATE(1052)] = 41318, + [SMALL_STATE(1053)] = 41334, + [SMALL_STATE(1054)] = 41350, + [SMALL_STATE(1055)] = 41366, + [SMALL_STATE(1056)] = 41382, + [SMALL_STATE(1057)] = 41398, + [SMALL_STATE(1058)] = 41414, + [SMALL_STATE(1059)] = 41430, + [SMALL_STATE(1060)] = 41446, + [SMALL_STATE(1061)] = 41462, + [SMALL_STATE(1062)] = 41478, + [SMALL_STATE(1063)] = 41490, + [SMALL_STATE(1064)] = 41506, + [SMALL_STATE(1065)] = 41522, + [SMALL_STATE(1066)] = 41536, + [SMALL_STATE(1067)] = 41550, + [SMALL_STATE(1068)] = 41566, + [SMALL_STATE(1069)] = 41582, + [SMALL_STATE(1070)] = 41596, + [SMALL_STATE(1071)] = 41612, + [SMALL_STATE(1072)] = 41626, + [SMALL_STATE(1073)] = 41642, + [SMALL_STATE(1074)] = 41658, + [SMALL_STATE(1075)] = 41674, + [SMALL_STATE(1076)] = 41690, + [SMALL_STATE(1077)] = 41706, + [SMALL_STATE(1078)] = 41722, + [SMALL_STATE(1079)] = 41738, + [SMALL_STATE(1080)] = 41754, + [SMALL_STATE(1081)] = 41770, + [SMALL_STATE(1082)] = 41786, + [SMALL_STATE(1083)] = 41802, + [SMALL_STATE(1084)] = 41814, + [SMALL_STATE(1085)] = 41830, + [SMALL_STATE(1086)] = 41846, + [SMALL_STATE(1087)] = 41862, + [SMALL_STATE(1088)] = 41878, + [SMALL_STATE(1089)] = 41894, + [SMALL_STATE(1090)] = 41910, + [SMALL_STATE(1091)] = 41926, + [SMALL_STATE(1092)] = 41942, + [SMALL_STATE(1093)] = 41958, + [SMALL_STATE(1094)] = 41974, + [SMALL_STATE(1095)] = 41988, + [SMALL_STATE(1096)] = 42000, + [SMALL_STATE(1097)] = 42016, + [SMALL_STATE(1098)] = 42032, + [SMALL_STATE(1099)] = 42048, + [SMALL_STATE(1100)] = 42064, + [SMALL_STATE(1101)] = 42080, + [SMALL_STATE(1102)] = 42096, + [SMALL_STATE(1103)] = 42112, + [SMALL_STATE(1104)] = 42128, + [SMALL_STATE(1105)] = 42144, + [SMALL_STATE(1106)] = 42160, + [SMALL_STATE(1107)] = 42176, + [SMALL_STATE(1108)] = 42188, + [SMALL_STATE(1109)] = 42204, + [SMALL_STATE(1110)] = 42218, + [SMALL_STATE(1111)] = 42234, + [SMALL_STATE(1112)] = 42250, + [SMALL_STATE(1113)] = 42264, + [SMALL_STATE(1114)] = 42278, + [SMALL_STATE(1115)] = 42294, + [SMALL_STATE(1116)] = 42310, + [SMALL_STATE(1117)] = 42324, + [SMALL_STATE(1118)] = 42336, + [SMALL_STATE(1119)] = 42350, + [SMALL_STATE(1120)] = 42366, + [SMALL_STATE(1121)] = 42380, + [SMALL_STATE(1122)] = 42396, + [SMALL_STATE(1123)] = 42412, + [SMALL_STATE(1124)] = 42426, + [SMALL_STATE(1125)] = 42442, + [SMALL_STATE(1126)] = 42454, + [SMALL_STATE(1127)] = 42468, + [SMALL_STATE(1128)] = 42482, + [SMALL_STATE(1129)] = 42498, + [SMALL_STATE(1130)] = 42514, + [SMALL_STATE(1131)] = 42530, + [SMALL_STATE(1132)] = 42546, + [SMALL_STATE(1133)] = 42562, + [SMALL_STATE(1134)] = 42576, + [SMALL_STATE(1135)] = 42592, + [SMALL_STATE(1136)] = 42608, + [SMALL_STATE(1137)] = 42624, + [SMALL_STATE(1138)] = 42638, + [SMALL_STATE(1139)] = 42654, + [SMALL_STATE(1140)] = 42670, + [SMALL_STATE(1141)] = 42686, + [SMALL_STATE(1142)] = 42702, + [SMALL_STATE(1143)] = 42718, + [SMALL_STATE(1144)] = 42734, + [SMALL_STATE(1145)] = 42750, + [SMALL_STATE(1146)] = 42764, + [SMALL_STATE(1147)] = 42780, + [SMALL_STATE(1148)] = 42793, + [SMALL_STATE(1149)] = 42806, + [SMALL_STATE(1150)] = 42819, + [SMALL_STATE(1151)] = 42830, + [SMALL_STATE(1152)] = 42841, + [SMALL_STATE(1153)] = 42854, + [SMALL_STATE(1154)] = 42867, + [SMALL_STATE(1155)] = 42880, + [SMALL_STATE(1156)] = 42891, + [SMALL_STATE(1157)] = 42904, + [SMALL_STATE(1158)] = 42917, + [SMALL_STATE(1159)] = 42930, + [SMALL_STATE(1160)] = 42943, + [SMALL_STATE(1161)] = 42956, + [SMALL_STATE(1162)] = 42967, + [SMALL_STATE(1163)] = 42976, + [SMALL_STATE(1164)] = 42985, + [SMALL_STATE(1165)] = 42994, + [SMALL_STATE(1166)] = 43003, + [SMALL_STATE(1167)] = 43012, + [SMALL_STATE(1168)] = 43021, + [SMALL_STATE(1169)] = 43030, + [SMALL_STATE(1170)] = 43043, + [SMALL_STATE(1171)] = 43052, + [SMALL_STATE(1172)] = 43061, + [SMALL_STATE(1173)] = 43074, + [SMALL_STATE(1174)] = 43083, + [SMALL_STATE(1175)] = 43092, + [SMALL_STATE(1176)] = 43101, + [SMALL_STATE(1177)] = 43114, + [SMALL_STATE(1178)] = 43127, + [SMALL_STATE(1179)] = 43136, + [SMALL_STATE(1180)] = 43145, + [SMALL_STATE(1181)] = 43154, + [SMALL_STATE(1182)] = 43167, + [SMALL_STATE(1183)] = 43176, + [SMALL_STATE(1184)] = 43189, + [SMALL_STATE(1185)] = 43200, + [SMALL_STATE(1186)] = 43209, + [SMALL_STATE(1187)] = 43218, + [SMALL_STATE(1188)] = 43229, + [SMALL_STATE(1189)] = 43238, + [SMALL_STATE(1190)] = 43251, + [SMALL_STATE(1191)] = 43260, + [SMALL_STATE(1192)] = 43269, + [SMALL_STATE(1193)] = 43282, + [SMALL_STATE(1194)] = 43291, + [SMALL_STATE(1195)] = 43302, + [SMALL_STATE(1196)] = 43313, + [SMALL_STATE(1197)] = 43326, + [SMALL_STATE(1198)] = 43335, + [SMALL_STATE(1199)] = 43348, + [SMALL_STATE(1200)] = 43361, + [SMALL_STATE(1201)] = 43374, + [SMALL_STATE(1202)] = 43387, + [SMALL_STATE(1203)] = 43400, + [SMALL_STATE(1204)] = 43413, + [SMALL_STATE(1205)] = 43426, + [SMALL_STATE(1206)] = 43435, + [SMALL_STATE(1207)] = 43448, + [SMALL_STATE(1208)] = 43459, + [SMALL_STATE(1209)] = 43472, + [SMALL_STATE(1210)] = 43485, + [SMALL_STATE(1211)] = 43496, + [SMALL_STATE(1212)] = 43509, + [SMALL_STATE(1213)] = 43522, + [SMALL_STATE(1214)] = 43535, + [SMALL_STATE(1215)] = 43548, + [SMALL_STATE(1216)] = 43557, + [SMALL_STATE(1217)] = 43570, + [SMALL_STATE(1218)] = 43579, + [SMALL_STATE(1219)] = 43592, + [SMALL_STATE(1220)] = 43605, + [SMALL_STATE(1221)] = 43616, + [SMALL_STATE(1222)] = 43629, + [SMALL_STATE(1223)] = 43642, + [SMALL_STATE(1224)] = 43653, + [SMALL_STATE(1225)] = 43666, + [SMALL_STATE(1226)] = 43675, + [SMALL_STATE(1227)] = 43688, + [SMALL_STATE(1228)] = 43697, + [SMALL_STATE(1229)] = 43710, + [SMALL_STATE(1230)] = 43719, + [SMALL_STATE(1231)] = 43732, + [SMALL_STATE(1232)] = 43745, + [SMALL_STATE(1233)] = 43758, + [SMALL_STATE(1234)] = 43771, + [SMALL_STATE(1235)] = 43780, + [SMALL_STATE(1236)] = 43789, + [SMALL_STATE(1237)] = 43802, + [SMALL_STATE(1238)] = 43815, + [SMALL_STATE(1239)] = 43828, + [SMALL_STATE(1240)] = 43837, + [SMALL_STATE(1241)] = 43850, + [SMALL_STATE(1242)] = 43861, + [SMALL_STATE(1243)] = 43874, + [SMALL_STATE(1244)] = 43883, + [SMALL_STATE(1245)] = 43896, + [SMALL_STATE(1246)] = 43907, + [SMALL_STATE(1247)] = 43920, + [SMALL_STATE(1248)] = 43929, + [SMALL_STATE(1249)] = 43942, + [SMALL_STATE(1250)] = 43951, + [SMALL_STATE(1251)] = 43964, + [SMALL_STATE(1252)] = 43977, + [SMALL_STATE(1253)] = 43990, + [SMALL_STATE(1254)] = 44003, + [SMALL_STATE(1255)] = 44012, + [SMALL_STATE(1256)] = 44021, + [SMALL_STATE(1257)] = 44034, + [SMALL_STATE(1258)] = 44047, + [SMALL_STATE(1259)] = 44058, + [SMALL_STATE(1260)] = 44071, + [SMALL_STATE(1261)] = 44084, + [SMALL_STATE(1262)] = 44097, + [SMALL_STATE(1263)] = 44110, + [SMALL_STATE(1264)] = 44121, + [SMALL_STATE(1265)] = 44134, + [SMALL_STATE(1266)] = 44147, + [SMALL_STATE(1267)] = 44160, + [SMALL_STATE(1268)] = 44173, + [SMALL_STATE(1269)] = 44186, + [SMALL_STATE(1270)] = 44195, + [SMALL_STATE(1271)] = 44208, + [SMALL_STATE(1272)] = 44221, + [SMALL_STATE(1273)] = 44234, + [SMALL_STATE(1274)] = 44245, + [SMALL_STATE(1275)] = 44256, + [SMALL_STATE(1276)] = 44269, + [SMALL_STATE(1277)] = 44282, + [SMALL_STATE(1278)] = 44295, + [SMALL_STATE(1279)] = 44308, + [SMALL_STATE(1280)] = 44321, + [SMALL_STATE(1281)] = 44334, + [SMALL_STATE(1282)] = 44347, + [SMALL_STATE(1283)] = 44360, + [SMALL_STATE(1284)] = 44373, + [SMALL_STATE(1285)] = 44386, + [SMALL_STATE(1286)] = 44399, + [SMALL_STATE(1287)] = 44408, + [SMALL_STATE(1288)] = 44421, + [SMALL_STATE(1289)] = 44430, + [SMALL_STATE(1290)] = 44443, + [SMALL_STATE(1291)] = 44452, + [SMALL_STATE(1292)] = 44465, + [SMALL_STATE(1293)] = 44478, + [SMALL_STATE(1294)] = 44491, + [SMALL_STATE(1295)] = 44500, + [SMALL_STATE(1296)] = 44513, + [SMALL_STATE(1297)] = 44526, + [SMALL_STATE(1298)] = 44539, + [SMALL_STATE(1299)] = 44552, + [SMALL_STATE(1300)] = 44561, + [SMALL_STATE(1301)] = 44570, + [SMALL_STATE(1302)] = 44583, + [SMALL_STATE(1303)] = 44596, + [SMALL_STATE(1304)] = 44609, + [SMALL_STATE(1305)] = 44622, + [SMALL_STATE(1306)] = 44631, + [SMALL_STATE(1307)] = 44644, + [SMALL_STATE(1308)] = 44657, + [SMALL_STATE(1309)] = 44666, + [SMALL_STATE(1310)] = 44679, + [SMALL_STATE(1311)] = 44692, + [SMALL_STATE(1312)] = 44705, + [SMALL_STATE(1313)] = 44718, + [SMALL_STATE(1314)] = 44731, + [SMALL_STATE(1315)] = 44744, + [SMALL_STATE(1316)] = 44757, + [SMALL_STATE(1317)] = 44770, + [SMALL_STATE(1318)] = 44779, + [SMALL_STATE(1319)] = 44792, + [SMALL_STATE(1320)] = 44801, + [SMALL_STATE(1321)] = 44814, + [SMALL_STATE(1322)] = 44827, + [SMALL_STATE(1323)] = 44840, + [SMALL_STATE(1324)] = 44853, + [SMALL_STATE(1325)] = 44866, + [SMALL_STATE(1326)] = 44879, + [SMALL_STATE(1327)] = 44892, + [SMALL_STATE(1328)] = 44903, + [SMALL_STATE(1329)] = 44916, + [SMALL_STATE(1330)] = 44929, + [SMALL_STATE(1331)] = 44942, + [SMALL_STATE(1332)] = 44955, + [SMALL_STATE(1333)] = 44964, + [SMALL_STATE(1334)] = 44977, + [SMALL_STATE(1335)] = 44990, + [SMALL_STATE(1336)] = 45003, + [SMALL_STATE(1337)] = 45016, + [SMALL_STATE(1338)] = 45029, + [SMALL_STATE(1339)] = 45040, + [SMALL_STATE(1340)] = 45048, + [SMALL_STATE(1341)] = 45056, + [SMALL_STATE(1342)] = 45066, + [SMALL_STATE(1343)] = 45076, + [SMALL_STATE(1344)] = 45086, + [SMALL_STATE(1345)] = 45096, + [SMALL_STATE(1346)] = 45104, + [SMALL_STATE(1347)] = 45114, + [SMALL_STATE(1348)] = 45124, + [SMALL_STATE(1349)] = 45132, + [SMALL_STATE(1350)] = 45142, + [SMALL_STATE(1351)] = 45152, + [SMALL_STATE(1352)] = 45162, + [SMALL_STATE(1353)] = 45170, + [SMALL_STATE(1354)] = 45178, + [SMALL_STATE(1355)] = 45186, + [SMALL_STATE(1356)] = 45196, + [SMALL_STATE(1357)] = 45204, + [SMALL_STATE(1358)] = 45214, + [SMALL_STATE(1359)] = 45224, + [SMALL_STATE(1360)] = 45234, + [SMALL_STATE(1361)] = 45244, + [SMALL_STATE(1362)] = 45254, + [SMALL_STATE(1363)] = 45264, + [SMALL_STATE(1364)] = 45274, + [SMALL_STATE(1365)] = 45282, + [SMALL_STATE(1366)] = 45290, + [SMALL_STATE(1367)] = 45300, + [SMALL_STATE(1368)] = 45308, + [SMALL_STATE(1369)] = 45316, + [SMALL_STATE(1370)] = 45324, + [SMALL_STATE(1371)] = 45334, + [SMALL_STATE(1372)] = 45344, + [SMALL_STATE(1373)] = 45352, + [SMALL_STATE(1374)] = 45360, + [SMALL_STATE(1375)] = 45370, + [SMALL_STATE(1376)] = 45380, + [SMALL_STATE(1377)] = 45388, + [SMALL_STATE(1378)] = 45396, + [SMALL_STATE(1379)] = 45404, + [SMALL_STATE(1380)] = 45414, + [SMALL_STATE(1381)] = 45422, + [SMALL_STATE(1382)] = 45432, + [SMALL_STATE(1383)] = 45440, + [SMALL_STATE(1384)] = 45448, + [SMALL_STATE(1385)] = 45456, + [SMALL_STATE(1386)] = 45464, + [SMALL_STATE(1387)] = 45474, + [SMALL_STATE(1388)] = 45482, + [SMALL_STATE(1389)] = 45492, + [SMALL_STATE(1390)] = 45502, + [SMALL_STATE(1391)] = 45512, + [SMALL_STATE(1392)] = 45520, + [SMALL_STATE(1393)] = 45528, + [SMALL_STATE(1394)] = 45538, + [SMALL_STATE(1395)] = 45546, + [SMALL_STATE(1396)] = 45556, + [SMALL_STATE(1397)] = 45564, + [SMALL_STATE(1398)] = 45574, + [SMALL_STATE(1399)] = 45582, + [SMALL_STATE(1400)] = 45590, + [SMALL_STATE(1401)] = 45600, + [SMALL_STATE(1402)] = 45608, + [SMALL_STATE(1403)] = 45618, + [SMALL_STATE(1404)] = 45626, + [SMALL_STATE(1405)] = 45634, + [SMALL_STATE(1406)] = 45642, + [SMALL_STATE(1407)] = 45650, + [SMALL_STATE(1408)] = 45658, + [SMALL_STATE(1409)] = 45666, + [SMALL_STATE(1410)] = 45676, + [SMALL_STATE(1411)] = 45686, + [SMALL_STATE(1412)] = 45694, + [SMALL_STATE(1413)] = 45704, + [SMALL_STATE(1414)] = 45712, + [SMALL_STATE(1415)] = 45722, + [SMALL_STATE(1416)] = 45732, + [SMALL_STATE(1417)] = 45742, + [SMALL_STATE(1418)] = 45750, + [SMALL_STATE(1419)] = 45760, + [SMALL_STATE(1420)] = 45770, + [SMALL_STATE(1421)] = 45780, + [SMALL_STATE(1422)] = 45790, + [SMALL_STATE(1423)] = 45800, + [SMALL_STATE(1424)] = 45810, + [SMALL_STATE(1425)] = 45820, + [SMALL_STATE(1426)] = 45828, + [SMALL_STATE(1427)] = 45838, + [SMALL_STATE(1428)] = 45848, + [SMALL_STATE(1429)] = 45858, + [SMALL_STATE(1430)] = 45866, + [SMALL_STATE(1431)] = 45876, + [SMALL_STATE(1432)] = 45886, + [SMALL_STATE(1433)] = 45896, + [SMALL_STATE(1434)] = 45904, + [SMALL_STATE(1435)] = 45914, + [SMALL_STATE(1436)] = 45924, + [SMALL_STATE(1437)] = 45934, + [SMALL_STATE(1438)] = 45944, + [SMALL_STATE(1439)] = 45954, + [SMALL_STATE(1440)] = 45964, + [SMALL_STATE(1441)] = 45974, + [SMALL_STATE(1442)] = 45984, + [SMALL_STATE(1443)] = 45994, + [SMALL_STATE(1444)] = 46002, + [SMALL_STATE(1445)] = 46012, + [SMALL_STATE(1446)] = 46022, + [SMALL_STATE(1447)] = 46032, + [SMALL_STATE(1448)] = 46042, + [SMALL_STATE(1449)] = 46052, + [SMALL_STATE(1450)] = 46062, + [SMALL_STATE(1451)] = 46070, + [SMALL_STATE(1452)] = 46080, + [SMALL_STATE(1453)] = 46088, + [SMALL_STATE(1454)] = 46098, + [SMALL_STATE(1455)] = 46108, + [SMALL_STATE(1456)] = 46118, + [SMALL_STATE(1457)] = 46128, + [SMALL_STATE(1458)] = 46138, + [SMALL_STATE(1459)] = 46148, + [SMALL_STATE(1460)] = 46158, + [SMALL_STATE(1461)] = 46168, + [SMALL_STATE(1462)] = 46178, + [SMALL_STATE(1463)] = 46188, + [SMALL_STATE(1464)] = 46198, + [SMALL_STATE(1465)] = 46208, + [SMALL_STATE(1466)] = 46218, + [SMALL_STATE(1467)] = 46228, + [SMALL_STATE(1468)] = 46238, + [SMALL_STATE(1469)] = 46248, + [SMALL_STATE(1470)] = 46258, + [SMALL_STATE(1471)] = 46268, + [SMALL_STATE(1472)] = 46278, + [SMALL_STATE(1473)] = 46288, + [SMALL_STATE(1474)] = 46298, + [SMALL_STATE(1475)] = 46305, + [SMALL_STATE(1476)] = 46312, + [SMALL_STATE(1477)] = 46319, + [SMALL_STATE(1478)] = 46326, + [SMALL_STATE(1479)] = 46333, + [SMALL_STATE(1480)] = 46340, + [SMALL_STATE(1481)] = 46347, + [SMALL_STATE(1482)] = 46354, + [SMALL_STATE(1483)] = 46361, + [SMALL_STATE(1484)] = 46368, + [SMALL_STATE(1485)] = 46375, + [SMALL_STATE(1486)] = 46382, + [SMALL_STATE(1487)] = 46389, + [SMALL_STATE(1488)] = 46396, + [SMALL_STATE(1489)] = 46403, + [SMALL_STATE(1490)] = 46410, + [SMALL_STATE(1491)] = 46417, + [SMALL_STATE(1492)] = 46424, + [SMALL_STATE(1493)] = 46431, + [SMALL_STATE(1494)] = 46438, + [SMALL_STATE(1495)] = 46445, + [SMALL_STATE(1496)] = 46452, + [SMALL_STATE(1497)] = 46459, + [SMALL_STATE(1498)] = 46466, + [SMALL_STATE(1499)] = 46473, + [SMALL_STATE(1500)] = 46480, + [SMALL_STATE(1501)] = 46487, + [SMALL_STATE(1502)] = 46494, + [SMALL_STATE(1503)] = 46501, + [SMALL_STATE(1504)] = 46508, + [SMALL_STATE(1505)] = 46515, + [SMALL_STATE(1506)] = 46522, + [SMALL_STATE(1507)] = 46529, + [SMALL_STATE(1508)] = 46536, + [SMALL_STATE(1509)] = 46543, + [SMALL_STATE(1510)] = 46550, + [SMALL_STATE(1511)] = 46557, + [SMALL_STATE(1512)] = 46564, + [SMALL_STATE(1513)] = 46571, + [SMALL_STATE(1514)] = 46578, + [SMALL_STATE(1515)] = 46585, + [SMALL_STATE(1516)] = 46592, + [SMALL_STATE(1517)] = 46599, + [SMALL_STATE(1518)] = 46606, + [SMALL_STATE(1519)] = 46613, + [SMALL_STATE(1520)] = 46620, + [SMALL_STATE(1521)] = 46627, + [SMALL_STATE(1522)] = 46634, + [SMALL_STATE(1523)] = 46641, + [SMALL_STATE(1524)] = 46648, + [SMALL_STATE(1525)] = 46655, + [SMALL_STATE(1526)] = 46662, + [SMALL_STATE(1527)] = 46669, + [SMALL_STATE(1528)] = 46676, + [SMALL_STATE(1529)] = 46683, + [SMALL_STATE(1530)] = 46690, + [SMALL_STATE(1531)] = 46697, + [SMALL_STATE(1532)] = 46704, + [SMALL_STATE(1533)] = 46711, + [SMALL_STATE(1534)] = 46718, + [SMALL_STATE(1535)] = 46725, + [SMALL_STATE(1536)] = 46732, + [SMALL_STATE(1537)] = 46739, + [SMALL_STATE(1538)] = 46746, + [SMALL_STATE(1539)] = 46753, + [SMALL_STATE(1540)] = 46760, + [SMALL_STATE(1541)] = 46767, + [SMALL_STATE(1542)] = 46774, + [SMALL_STATE(1543)] = 46781, + [SMALL_STATE(1544)] = 46788, + [SMALL_STATE(1545)] = 46795, + [SMALL_STATE(1546)] = 46802, + [SMALL_STATE(1547)] = 46809, + [SMALL_STATE(1548)] = 46816, + [SMALL_STATE(1549)] = 46823, + [SMALL_STATE(1550)] = 46830, + [SMALL_STATE(1551)] = 46837, + [SMALL_STATE(1552)] = 46844, + [SMALL_STATE(1553)] = 46851, + [SMALL_STATE(1554)] = 46858, + [SMALL_STATE(1555)] = 46865, + [SMALL_STATE(1556)] = 46872, + [SMALL_STATE(1557)] = 46879, + [SMALL_STATE(1558)] = 46886, + [SMALL_STATE(1559)] = 46893, + [SMALL_STATE(1560)] = 46900, + [SMALL_STATE(1561)] = 46907, + [SMALL_STATE(1562)] = 46914, + [SMALL_STATE(1563)] = 46921, + [SMALL_STATE(1564)] = 46928, + [SMALL_STATE(1565)] = 46935, + [SMALL_STATE(1566)] = 46942, + [SMALL_STATE(1567)] = 46949, + [SMALL_STATE(1568)] = 46956, + [SMALL_STATE(1569)] = 46963, + [SMALL_STATE(1570)] = 46970, + [SMALL_STATE(1571)] = 46977, + [SMALL_STATE(1572)] = 46984, + [SMALL_STATE(1573)] = 46991, + [SMALL_STATE(1574)] = 46998, + [SMALL_STATE(1575)] = 47005, + [SMALL_STATE(1576)] = 47012, + [SMALL_STATE(1577)] = 47019, + [SMALL_STATE(1578)] = 47026, + [SMALL_STATE(1579)] = 47033, + [SMALL_STATE(1580)] = 47040, + [SMALL_STATE(1581)] = 47047, + [SMALL_STATE(1582)] = 47054, + [SMALL_STATE(1583)] = 47061, + [SMALL_STATE(1584)] = 47068, + [SMALL_STATE(1585)] = 47075, + [SMALL_STATE(1586)] = 47082, + [SMALL_STATE(1587)] = 47089, + [SMALL_STATE(1588)] = 47096, + [SMALL_STATE(1589)] = 47103, + [SMALL_STATE(1590)] = 47110, + [SMALL_STATE(1591)] = 47117, + [SMALL_STATE(1592)] = 47124, + [SMALL_STATE(1593)] = 47131, + [SMALL_STATE(1594)] = 47138, + [SMALL_STATE(1595)] = 47145, + [SMALL_STATE(1596)] = 47152, + [SMALL_STATE(1597)] = 47159, + [SMALL_STATE(1598)] = 47166, + [SMALL_STATE(1599)] = 47173, + [SMALL_STATE(1600)] = 47180, + [SMALL_STATE(1601)] = 47187, + [SMALL_STATE(1602)] = 47194, + [SMALL_STATE(1603)] = 47201, + [SMALL_STATE(1604)] = 47208, + [SMALL_STATE(1605)] = 47215, + [SMALL_STATE(1606)] = 47222, + [SMALL_STATE(1607)] = 47229, + [SMALL_STATE(1608)] = 47236, + [SMALL_STATE(1609)] = 47243, + [SMALL_STATE(1610)] = 47250, + [SMALL_STATE(1611)] = 47257, + [SMALL_STATE(1612)] = 47264, + [SMALL_STATE(1613)] = 47271, + [SMALL_STATE(1614)] = 47278, + [SMALL_STATE(1615)] = 47285, + [SMALL_STATE(1616)] = 47292, + [SMALL_STATE(1617)] = 47299, + [SMALL_STATE(1618)] = 47306, + [SMALL_STATE(1619)] = 47313, + [SMALL_STATE(1620)] = 47320, + [SMALL_STATE(1621)] = 47327, + [SMALL_STATE(1622)] = 47334, + [SMALL_STATE(1623)] = 47341, + [SMALL_STATE(1624)] = 47348, + [SMALL_STATE(1625)] = 47355, + [SMALL_STATE(1626)] = 47362, + [SMALL_STATE(1627)] = 47369, + [SMALL_STATE(1628)] = 47376, + [SMALL_STATE(1629)] = 47383, + [SMALL_STATE(1630)] = 47390, + [SMALL_STATE(1631)] = 47397, + [SMALL_STATE(1632)] = 47404, + [SMALL_STATE(1633)] = 47411, + [SMALL_STATE(1634)] = 47418, + [SMALL_STATE(1635)] = 47425, + [SMALL_STATE(1636)] = 47432, + [SMALL_STATE(1637)] = 47439, + [SMALL_STATE(1638)] = 47446, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -68152,204 +68410,204 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(388), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1351), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [86] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(336), + [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1350), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1606), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(429), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(61), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(60), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), @@ -68358,1537 +68616,1543 @@ static const TSParseActionEntry ts_parse_actions[] = { [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 39), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 39), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(61), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 57), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 57), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 26), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 26), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(63), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 39), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 39), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 57), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 57), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 26), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 26), [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 25), [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 25), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 20), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 24), [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 24), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(181), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(98), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(14), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(217), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(99), [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1351), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(113), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(476), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(207), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1355), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(114), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(439), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(164), [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(21), [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(485), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(422), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(118), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1356), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(195), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(23), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(128), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(478), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1586), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(478), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(473), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(141), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(408), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1585), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1351), - [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(495), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1629), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1512), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 99), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 99), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 76), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 76), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 86), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 86), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 60), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 60), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 61), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 61), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 58), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 58), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 59), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 59), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 59), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 59), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 62), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 62), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 80), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 80), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 58), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 58), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 81), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 81), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(429), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(128), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1357), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(160), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(22), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(126), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(441), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1595), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(441), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(442), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(139), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(411), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1592), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(429), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1634), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1514), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1635), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1340), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(873), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 76), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 76), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 99), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 99), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 9), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 9), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 9), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 9), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 113), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 113), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 75), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 75), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 76), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 76), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 65), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 65), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_impl, 5, 0, 2), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_impl, 5, 0, 2), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 0), [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 0), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 81), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 81), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 82), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 82), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 65), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 65), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 80), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 80), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 58), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 58), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 62), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 62), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 59), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 59), [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 51), [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 51), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 75), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 75), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 14), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 14), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 58), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 58), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 115), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 115), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 107), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 107), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 67), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 67), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 85), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 85), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 42), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 42), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 59), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 59), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 58), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 58), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 42), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 42), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 61), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 61), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 60), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 60), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 67), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 67), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 59), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 59), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 58), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 58), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 10), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 10), [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 87), [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 87), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 9), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 9), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 9), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 9), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 59), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 59), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 97), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 97), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 10), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 10), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 42), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 42), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 38), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 38), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 41), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 41), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 114), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 114), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 96), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 96), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 116), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 116), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 17), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 17), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 120), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 120), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 102), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 102), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 103), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 103), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 9), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 9), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 104), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 104), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 113), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 113), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 41), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 41), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 42), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 42), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 41), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 41), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 6, 0, 105), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 105), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 121), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 121), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 76), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 76), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(355), - [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(356), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1224), - [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(962), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(390), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 17), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 17), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 114), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 114), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 42), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 42), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 41), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 41), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 9), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 9), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 115), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 115), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 38), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 38), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 116), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 116), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 107), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 107), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 80), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 80), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 86), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 86), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 85), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 85), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 81), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 81), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 120), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 120), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 6, 0, 105), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 105), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 121), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 121), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 104), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 104), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 103), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 103), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 80), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 80), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 102), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 102), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 82), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 82), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 81), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 81), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 96), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 96), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 41), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 41), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 42), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 42), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 14), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 14), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 41), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 41), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 97), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 97), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1062), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), + [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), + [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(911), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 21), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 31), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 21), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 31), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 18), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 19), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 22), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 32), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 33), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 30), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 30), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 46), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 36), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 32), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 22), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 33), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 30), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 30), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 27), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 27), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 46), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 110), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 29), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 91), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 73), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 27), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 27), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 91), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 29), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 110), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 88), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 88), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 34), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 34), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 69), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 69), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 36), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 69), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 69), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 88), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 88), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 76), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 76), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 76), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 76), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 99), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 99), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 99), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 78), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 79), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 101), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 100), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 99), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 76), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 68), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 27), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 32), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 22), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 23), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), REDUCE(sym_scoped_type_identifier, 3, 0, 32), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 12), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), REDUCE(sym_scoped_type_identifier, 3, 0, 22), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 76), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 76), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 76), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 101), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 100), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 78), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 79), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 99), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 99), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 99), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 99), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 76), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 27), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 76), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 68), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1631), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 32), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 22), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 23), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), REDUCE(sym_scoped_type_identifier, 3, 0, 22), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), + [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), REDUCE(sym_scoped_type_identifier, 3, 0, 32), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 15), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 12), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), REDUCE(sym_scoped_type_identifier, 3, 0, 19), [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), REDUCE(sym_scoped_type_identifier, 2, 0, 3), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 15), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 77), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 63), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 117), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 83), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 50), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 50), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 48), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 63), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 117), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 83), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 77), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 50), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 48), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 48), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 50), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 50), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 48), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 48), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 47), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 72), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 48), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 50), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 50), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 48), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 111), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 11), [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 122), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 119), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 118), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 92), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 94), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 111), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 109), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 11), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), - [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 84), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 66), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 84), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 66), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 93), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 84), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 84), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 66), - [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), REDUCE(sym__pattern, 1, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 66), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 71), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 66), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 49), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 45), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 74), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 53), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 54), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 112), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1230), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 95), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(636), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 16), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 70), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(963), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(940), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 46), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 118), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 119), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 122), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 109), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 89), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 90), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 71), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 72), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 73), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 94), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 47), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 72), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 92), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 94), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 109), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 118), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 119), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 122), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 66), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 84), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 66), + [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), REDUCE(sym__pattern, 1, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 93), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 66), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 84), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 71), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 84), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1621), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 66), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 84), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 66), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(379), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 95), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 54), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 53), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 49), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 45), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 70), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(960), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(964), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 16), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 112), + [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(660), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 74), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 47), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 122), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 119), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 118), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 111), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 110), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 109), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 94), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 93), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 92), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 91), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 75), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 108), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 67), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 106), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 93), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 92), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 91), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 75), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 11), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 108), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 110), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 111), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 47), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 106), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 67), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 43), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 44), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 98), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3569] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 73), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 72), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 71), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 90), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 89), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 46), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 11), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 44), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 43), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 98), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3581] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), }; #ifdef __cplusplus From c2077c771fcd3e100c8b80f92c5c7b327be4fdb8 Mon Sep 17 00:00:00 2001 From: LucasLvy Date: Mon, 1 Jul 2024 11:32:31 +0200 Subject: [PATCH 2/3] remove useless queries --- grammar.js | 636 ++++++++++++++++++++--------------------- queries/highlights.scm | 6 - 2 files changed, 318 insertions(+), 324 deletions(-) diff --git a/grammar.js b/grammar.js index 906a2b1..c00b9c4 100644 --- a/grammar.js +++ b/grammar.js @@ -15,65 +15,65 @@ const PREC = { assign: 0, }; const TOKEN_TREE_NON_SPECIAL_PUNCTUATION = [ - "+", - "-", - "*", - "/", - "%", - "^", - "!", - "~", - "&", - "|", - "&&", - "||", - "<<", - ">>", - "+=", - "-=", - "*=", - "/=", - "%=", - "^=", - "&=", - "|=", - "=", - "==", - "!=", - ">", - "<", - ">=", - "<=", - "@", - "..", - "_", - ".", - ",", - ";", - ":", - "::", - "->", - "=>", - "#", - "?", + '+', + '-', + '*', + '/', + '%', + '^', + '!', + '~', + '&', + '|', + '&&', + '||', + '<<', + '>>', + '+=', + '-=', + '*=', + '/=', + '%=', + '^=', + '&=', + '|=', + '=', + '==', + '!=', + '>', + '<', + '>=', + '<=', + '@', + '..', + '_', + '.', + ',', + ';', + ':', + '::', + '->', + '=>', + '#', + '?', ]; const integerTypes = [ - "u8", - "i8", - "u16", - "i16", - "u32", - "i32", - "u64", - "i64", - "u128", - "i128", - "usize", + 'u8', + 'i8', + 'u16', + 'i16', + 'u32', + 'i32', + 'u64', + 'i64', + 'u128', + 'i128', + 'usize', ]; -const primitiveTypes = integerTypes.concat(["bool", "ByteArray", "felt252"]); +const primitiveTypes = integerTypes.concat(['bool', 'ByteArray', 'felt252']); module.exports = grammar({ - name: "cairo", + name: 'cairo', extras: ($) => [/\s/, $.line_comment], conflicts: ($) => [ @@ -135,19 +135,19 @@ module.exports = grammar({ // fn b(b: bool) -> bool; // } // The declaration list would be `{ type B; fn a(a: u32) -> u32; fn b(b: bool) -> bool; }`, - declaration_list: ($) => seq("{", repeat($._declaration_statement), "}"), + declaration_list: ($) => seq('{', repeat($._declaration_statement), '}'), // `impl Foo of FooTrait<...> { } // `impl Bar of BarTrait;` impl_item: ($) => seq( optional($.visibility_modifier), - "impl", + 'impl', $.identifier, - field("type_parameters", optional($.type_parameters)), - "of", + field('type_parameters', optional($.type_parameters)), + 'of', $._type, - choice(field("body", $.declaration_list), ";"), + choice(field('body', $.declaration_list), ';'), ), // trait A { @@ -158,10 +158,10 @@ module.exports = grammar({ trait_item: ($) => seq( optional($.visibility_modifier), - "trait", - field("name", $._type_identifier), - field("type_parameters", optional($.type_parameters)), - choice(field("body", $.declaration_list), ";"), + 'trait', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + choice(field('body', $.declaration_list), ';'), ), // trait A { @@ -169,56 +169,56 @@ module.exports = grammar({ // } associated_type: ($) => seq( - "type", - field("name", $._type_identifier), - field("type_parameters", optional($.type_parameters)), - ";", + 'type', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + ';', ), // trait A { // impl B: A; // } associated_impl: ($) => - seq("impl", field("name", $.identifier), ":", $._type, ";"), + seq('impl', field('name', $.identifier), ':', $._type, ';'), // const FOO: felt252 = 1; const_item: ($) => seq( optional($.visibility_modifier), - "const", - field("name", $.identifier), - ":", - field("type", $._type), - optional(seq("=", field("value", $.expression))), - ";", + 'const', + field('name', $.identifier), + ':', + field('type', $._type), + optional(seq('=', field('value', $.expression))), + ';', ), // array![] macro_invocation: ($) => seq( field( - "macro", + 'macro', choice($.scoped_identifier, $.identifier, $._reserved_identifier), ), - "!", + '!', alias($.delim_token_tree, $.token_tree), ), - empty_statement: (_) => ";", + empty_statement: (_) => ';', // #[derive(Debug)] - attribute_item: ($) => seq("#", "[", $.attribute, "]"), + attribute_item: ($) => seq('#', '[', $.attribute, ']'), // #![deny(missing_docs)] - inner_attribute_item: ($) => seq("#", "!", "[", $.attribute, "]"), + inner_attribute_item: ($) => seq('#', '!', '[', $.attribute, ']'), // for example in #[derive(Debug)], the attribute would be `derive(Debug)` attribute: ($) => seq( $._path, optional( choice( - seq("=", field("value", $.expression)), - field("arguments", alias($.delim_token_tree, $.token_tree)), + seq('=', field('value', $.expression)), + field('arguments', alias($.delim_token_tree, $.token_tree)), ), ), ), @@ -227,63 +227,63 @@ module.exports = grammar({ mod_item: ($) => seq( optional($.visibility_modifier), - "mod", - field("name", $.identifier), - choice(";", field("body", $.declaration_list)), + 'mod', + field('name', $.identifier), + choice(';', field('body', $.declaration_list)), ), // struct Foo { bar: u32 } struct_item: ($) => seq( optional($.visibility_modifier), - "struct", - field("name", $._type_identifier), - field("type_parameters", optional($.type_parameters)), - choice(seq(field("body", $.field_declaration_list)), ";"), + 'struct', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + choice(seq(field('body', $.field_declaration_list)), ';'), ), // enum Direction { Left, Right: u32 }; enum_item: ($) => seq( optional($.visibility_modifier), - "enum", - field("name", $._type_identifier), - field("type_parameters", optional($.type_parameters)), - field("body", $.enum_variant_list), + 'enum', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + field('body', $.enum_variant_list), ), // for example in enum Direction { Left, Right: u32 } it would be `{ Left, Right: u32 }` enum_variant_list: ($) => seq( - "{", - sepBy(",", seq(repeat($.attribute_item), $.enum_variant)), - optional(","), - "}", + '{', + sepBy(',', seq(repeat($.attribute_item), $.enum_variant)), + optional(','), + '}', ), // for example in enum Direction { Left, Right: u32 } it would be `Left` and `Right: u32` enum_variant: ($) => choice( - seq(optional($.visibility_modifier), field("variant", $.identifier)), - field("variant", $.field_declaration), + seq(optional($.visibility_modifier), field('variant', $.identifier)), + field('variant', $.field_declaration), ), // struct and enum helper // for example in struct Foo { bar: u32 } it would be `{ bar: u32 }` field_declaration_list: ($) => seq( - "{", - sepBy(",", seq(repeat($.attribute_item), $.field_declaration)), - optional(","), - "}", + '{', + sepBy(',', seq(repeat($.attribute_item), $.field_declaration)), + optional(','), + '}', ), // struct and enum helper // for example in struct Foo { bar: u32 } it would be bar: u32 field_declaration: ($) => seq( optional($.visibility_modifier), - field("name", $._field_identifier), - ":", - field("type", $._type), + field('name', $._field_identifier), + ':', + field('type', $._type), ), // impl HashBool, +Drop> = into_felt252_based::HashImpl; @@ -293,12 +293,12 @@ module.exports = grammar({ $.extern_type, seq( optional($.visibility_modifier), - choice("type", "impl"), - field("name", $._type_identifier), - field("type_parameters", optional($.type_parameters)), - "=", - choice(field("type", $._type)), - ";", + choice('type', 'impl'), + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + '=', + choice(field('type', $._type)), + ';', ), ), @@ -307,42 +307,42 @@ module.exports = grammar({ seq( optional($.visibility_modifier), $.extern, - "type", - field("name", $._type_identifier), - field("type_parameters", optional($.type_parameters)), - ";", + 'type', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + ';', ), // pub extern fn hades_permutation( // s0: felt252, s1: felt252, s2: felt252 // ) -> (felt252, felt252, felt252) implicits(Poseidon) nopanic; external_function_item: ($) => - seq(optional($.visibility_modifier), $.extern, $.function, ";"), + seq(optional($.visibility_modifier), $.extern, $.function, ';'), // fn default() -> HashState { // PoseidonTrait::new() // } function_item: ($) => - seq(optional($.visibility_modifier), $.function, field("body", $.block)), + seq(optional($.visibility_modifier), $.function, field('body', $.block)), // For example here in: // trait A { // fn a(a: u32) -> u32; // } it would be `fn a(a: u32) -> u32;` function_signature_item: ($) => - seq(optional($.visibility_modifier), $.function, ";"), + seq(optional($.visibility_modifier), $.function, ';'), // Helper for function definition function: ($) => seq( - "fn", - field("name", $.identifier), - field("type_parameters", optional($.type_parameters)), - field("parameters", $.parameters), - optional(seq("->", field("return_type", $._type))), + 'fn', + field('name', $.identifier), + field('type_parameters', optional($.type_parameters)), + field('parameters', $.parameters), + optional(seq('->', field('return_type', $._type))), field( - "implicit_arguments", - optional(seq("implicits", sepBy(",", $._type))), + 'implicit_arguments', + optional(seq('implicits', sepBy(',', $._type))), ), optional($.nopanic), ), @@ -350,21 +350,21 @@ module.exports = grammar({ // let a = 1; let_declaration: ($) => seq( - "let", + 'let', optional($.mutable_specifier), - field("pattern", $._pattern), - optional(seq(":", field("type", $._type))), - optional(seq("=", field("value", $.expression))), - ";", + field('pattern', $._pattern), + optional(seq(':', field('type', $._type))), + optional(seq('=', field('value', $.expression))), + ';', ), // pub use abc::def; use_declaration: ($) => seq( optional($.visibility_modifier), - "use", - field("argument", $._use_clause), - ";", + 'use', + field('argument', $._use_clause), + ';', ), // helper for use declaration @@ -379,38 +379,38 @@ module.exports = grammar({ // The following will consider the base example: use abc::def::{a as a, b, c::*}; // abc::def::{a as a, b, c::*} scoped_use_list: ($) => - seq(field("path", optional($._path)), "::", field("list", $.use_list)), + seq(field('path', optional($._path)), '::', field('list', $.use_list)), // {a as a, b, c::*} use_list: ($) => - seq("{", sepBy(",", choice($._use_clause)), optional(","), "}"), + seq('{', sepBy(',', choice($._use_clause)), optional(','), '}'), // a as a use_as_clause: ($) => - seq(field("path", $._path), "as", field("alias", $.identifier)), + seq(field('path', $._path), 'as', field('alias', $.identifier)), // c::* - use_wildcard: ($) => seq(optional(seq($._path, "::")), "*"), + use_wildcard: ($) => seq(optional(seq($._path, '::')), '*'), // for example in fn a(x: u32, y: u32) {} it would be (x: u32, y: u32) parameters: ($) => seq( - "(", + '(', sepBy( - ",", - seq(optional($.attribute_item), choice($.parameter, "_", $._type)), + ',', + seq(optional($.attribute_item), choice($.parameter, '_', $._type)), ), - optional(","), - ")", + optional(','), + ')', ), // x: u32 parameter: ($) => seq( optional(choice($.ref_specifier, $.mutable_specifier)), - field("pattern", $._pattern), - ":", - field("type", $._type), + field('pattern', $._pattern), + ':', + field('type', $._type), ), // Types section @@ -443,9 +443,9 @@ module.exports = grammar({ prec( 1, seq( - "<", + '<', sepBy1( - ",", + ',', seq( repeat($.attribute_item), choice( @@ -458,25 +458,25 @@ module.exports = grammar({ ), ), ), - optional(","), - ">", + optional(','), + '>', ), ), // for example in pub extern fn const_as_box() -> Box nopanic; // it would be `const SEGMENT_ID: felt252` const_parameter: ($) => - seq("const", field("name", $.identifier), ":", field("type", $._type)), + seq('const', field('name', $.identifier), ':', field('type', $._type)), // for example in impl ArraySerde, impl TDrop: Drop> of Serde> {} it would be // `+Serde` and `impl TDrop: Drop` constrained_type_parameter: ($) => choice( seq( - field("left", seq("impl", $._type_identifier, ":")), - field("bound", $._type), + field('left', seq('impl', $._type_identifier, ':')), + field('bound', $._type), ), seq( - choice("+", "-"), + choice('+', '-'), choice( $.generic_type, $._type_identifier, @@ -490,7 +490,7 @@ module.exports = grammar({ 1, seq( field( - "type", + 'type', choice( $._type_identifier, $._reserved_identifier, @@ -498,7 +498,7 @@ module.exports = grammar({ ), ), // "::", - field("type_arguments", $.type_arguments), + field('type_arguments', $.type_arguments), ), ), @@ -506,31 +506,31 @@ module.exports = grammar({ generic_type_with_turbofish: ($) => seq( field( - "type", + 'type', choice( $._type_identifier, $._reserved_identifier, $.scoped_identifier, ), ), - "::", - field("type_arguments", $.type_arguments), + '::', + field('type_arguments', $.type_arguments), ), // for example in let a: [u8; 32]; it would be `[u8; 32]` array_type: ($) => seq( - "[", - field("element", $._type), - optional(seq(";", field("length", $.expression))), - "]", + '[', + field('element', $._type), + optional(seq(';', field('length', $.expression))), + ']', ), // Helper delim_token_tree: ($) => choice( - seq("(", repeat($._delim_tokens), ")"), - seq("[", repeat($._delim_tokens), "]"), - seq("{", repeat($._delim_tokens), "}"), + seq('(', repeat($._delim_tokens), ')'), + seq('[', repeat($._delim_tokens), ']'), + seq('{', repeat($._delim_tokens), '}'), ), // Helper _delim_tokens: ($) => @@ -546,28 +546,28 @@ module.exports = grammar({ $.super, alias(choice(...primitiveTypes), $.primitive_type), prec.right(repeat1(choice(...TOKEN_TREE_NON_SPECIAL_PUNCTUATION))), - "break", - "const", - "continue", - "default", - "enum", - "fn", - "if", - "impl", - "extern", - "nopanic", - "let", - "loop", - "match", - "mod", - "pub", - "return", - "static", - "struct", - "trait", - "type", - "use", - "while", + 'break', + 'const', + 'continue', + 'default', + 'enum', + 'fn', + 'if', + 'impl', + 'extern', + 'nopanic', + 'let', + 'loop', + 'match', + 'mod', + 'pub', + 'return', + 'static', + 'struct', + 'trait', + 'type', + 'use', + 'while', ), // Section - Patterns @@ -585,33 +585,33 @@ module.exports = grammar({ $.slice_pattern, $.macro_invocation, $.tuple_enum_pattern, - "_", + '_', ), // for example in let (a, b) = c; it would be `(a, b)` - tuple_pattern: ($) => seq("(", sepBy(",", $._pattern), optional(","), ")"), + tuple_pattern: ($) => seq('(', sepBy(',', $._pattern), optional(','), ')'), // for example in let [a, b] = c; it would be `[a, b]` - slice_pattern: ($) => seq("[", sepBy(",", $._pattern), optional(","), "]"), + slice_pattern: ($) => seq('[', sepBy(',', $._pattern), optional(','), ']'), // for example in let Foo {a, b} = c; it would be `Foo {a, b}` struct_pattern: ($) => seq( - field("type", choice($._type_identifier, $.scoped_type_identifier)), - "{", - sepBy(",", $.field_pattern), - optional(","), - "}", + field('type', choice($._type_identifier, $.scoped_type_identifier)), + '{', + sepBy(',', $.field_pattern), + optional(','), + '}', ), // for example in let Foo { a: bar, b: baz } = c; it would be `a: bar` and `b: baz` field_pattern: ($) => seq( optional($.mutable_specifier), choice( - field("name", alias($.identifier, $.shorthand_field_identifier)), + field('name', alias($.identifier, $.shorthand_field_identifier)), seq( - field("name", $._field_identifier), - ":", - field("pattern", $._pattern), + field('name', $._field_identifier), + ':', + field('pattern', $._pattern), ), ), ), @@ -619,17 +619,17 @@ module.exports = grammar({ // for example in let a = Foo { a: 1, b: 2}; it would be `{ a: 1, b: 2}` field_initializer_list: ($) => seq( - "{", + '{', sepBy( - ",", + ',', choice( $.shorthand_field_initializer, $.field_initializer, $.base_field_initializer, ), ), - optional(","), - "}", + optional(','), + '}', ), // for example in let a = Foo { a: 1, b}; it would be `b` shorthand_field_initializer: ($) => @@ -639,12 +639,12 @@ module.exports = grammar({ field_initializer: ($) => seq( repeat($.attribute_item), - field("field", choice($._field_identifier, $.numeric_literal)), - ":", - field("value", $.expression), + field('field', choice($._field_identifier, $.numeric_literal)), + ':', + field('value', $.expression), ), - base_field_initializer: ($) => seq("..", $.expression), + base_field_initializer: ($) => seq('..', $.expression), // for example in let mut a; it would be `mut a` mut_pattern: ($) => prec(-1, seq($.mutable_specifier, $._pattern)), @@ -657,7 +657,7 @@ module.exports = grammar({ or_pattern: ($) => prec.left( -2, - choice(seq($._pattern, "|", $._pattern), seq("|", $._pattern)), + choice(seq($._pattern, '|', $._pattern), seq('|', $._pattern)), ), // Section - Literals @@ -681,7 +681,7 @@ module.exports = grammar({ ), // for example in let a = -1; it would be `-1` - negative_literal: ($) => seq("-", $.numeric_literal), + negative_literal: ($) => seq('-', $.numeric_literal), // for example in let a = 1_u32; it would be `1_u32` numeric_literal: (_) => @@ -690,7 +690,7 @@ module.exports = grammar({ choice(/[0-9_]+/, /0x[0-9a-fA-F_]+/, /0b[01_]+/, /0o[0-7_]+/), optional( token.immediate( - seq("_", choice(...integerTypes, "u256", "felt252")), + seq('_', choice(...integerTypes, 'u256', 'felt252')), ), ), ), @@ -702,17 +702,17 @@ module.exports = grammar({ // allows every ascii char except `"` unless it's escaped (accept escape sequences also). Max length is 31 shortstring_literal: ($) => - token(seq("'", /(([^'\\]|\\.){0,31})/, "'", optional("_felt252"))), + token(seq('\'', /(([^'\\]|\\.){0,31})/, '\'', optional('_felt252'))), - boolean_literal: (_) => choice("true", "false"), + boolean_literal: (_) => choice('true', 'false'), // Should match any token other than a delimiter. - _non_delim_token: ($) => choice($._non_special_token, "$"), + _non_delim_token: ($) => choice($._non_special_token, '$'), // for example in let a = a::b; it would be `a::b` scoped_identifier: ($) => seq( field( - "path", + 'path', optional( choice( $._path, @@ -720,8 +720,8 @@ module.exports = grammar({ ), ), ), - "::", - field("name", choice($.identifier, $.super)), + '::', + field('name', choice($.identifier, $.super)), ), // Makes this type of expression work // core::pedersen::HashState { state }.update_with(value).state @@ -730,7 +730,7 @@ module.exports = grammar({ -2, seq( field( - "path", + 'path', optional( choice( $._path, @@ -738,15 +738,15 @@ module.exports = grammar({ ), ), ), - "::", - field("name", $._type_identifier), + '::', + field('name', $._type_identifier), ), ), // for example in struct A {a: A::b} it would be `A::b` scoped_type_identifier: ($) => seq( field( - "path", + 'path', optional( choice( $._path, @@ -755,28 +755,28 @@ module.exports = grammar({ ), ), ), - "::", - field("name", $._type_identifier), + '::', + field('name', $._type_identifier), ), // for example in struct A {a: (u32, u32)} it would be `(u32, u32)` - tuple_type: ($) => seq("(", sepBy1(",", $._type), optional(","), ")"), + tuple_type: ($) => seq('(', sepBy1(',', $._type), optional(','), ')'), // for example in struct A {a: ()} it would be `()` - unit_type: (_) => seq("(", ")"), + unit_type: (_) => seq('(', ')'), // for example in struct A {a: B} it would be `` type_arguments: ($) => seq( - token(prec(1, "<")), - sepBy1(",", seq(choice($._type, $._literal, $.block))), - optional(","), - ">", + token(prec(1, '<')), + sepBy1(',', seq(choice($._type, $._literal, $.block))), + optional(','), + '>', ), // Helper expression_statement: ($) => - choice(seq($.expression, ";"), prec(1, $._expression_ending_with_block)), + choice(seq($.expression, ';'), prec(1, $._expression_ending_with_block)), expression: ($) => choice( @@ -812,34 +812,34 @@ module.exports = grammar({ 1, seq( field( - "function", + 'function', choice($.identifier, $.scoped_identifier, $.field_expression), ), - "::", - field("type_arguments", $.type_arguments), + '::', + field('type_arguments', $.type_arguments), ), ), // (1, 2) tuple_expression: ($) => seq( - "(", + '(', repeat($.attribute_item), - seq($.expression, ","), - repeat(seq($.expression, ",")), + seq($.expression, ','), + repeat(seq($.expression, ',')), optional($.expression), - ")", + ')', ), // return () return_expression: ($) => - choice(prec.left(seq("return", $.expression)), prec(-1, "return")), + choice(prec.left(seq('return', $.expression)), prec(-1, 'return')), // A {a, b} struct_expression: ($) => seq( field( - "name", + 'name', choice( $._type_identifier, alias( @@ -849,54 +849,54 @@ module.exports = grammar({ $.generic_type_with_turbofish, ), ), - field("body", $.field_initializer_list), + field('body', $.field_initializer_list), ), // a = b assignment_expression: ($) => prec.left( PREC.assign, - seq(field("left", $.expression), "=", field("right", $.expression)), + seq(field('left', $.expression), '=', field('right', $.expression)), ), // break true - break_expression: ($) => prec.left(seq("break", optional($.expression))), + break_expression: ($) => prec.left(seq('break', optional($.expression))), // continue - continue_expression: ($) => prec.left(seq("continue")), + continue_expression: ($) => prec.left(seq('continue')), // a[i] index_expression: ($) => - prec(PREC.call, seq($.expression, "[", $.expression, "]")), + prec(PREC.call, seq($.expression, '[', $.expression, ']')), // [1, 2, 3] array_expression: ($) => seq( - "[", + '[', repeat($.attribute_item), choice( - seq($.expression, ";", field("length", $.expression)), + seq($.expression, ';', field('length', $.expression)), seq( - sepBy(",", seq(repeat($.attribute_item), $.expression)), - optional(","), + sepBy(',', seq(repeat($.attribute_item), $.expression)), + optional(','), ), ), - "]", + ']', ), // (a()) - parenthesized_expression: ($) => seq("(", $.expression, ")"), + parenthesized_expression: ($) => seq('(', $.expression, ')'), // () - unit_expression: (_) => seq("(", ")"), + unit_expression: (_) => seq('(', ')'), // a += 1 compound_assignment_expr: ($) => prec.left( PREC.assign, seq( - field("left", $.expression), - field("operator", choice("+=", "-=", "*=", "/=", "%=")), - field("right", $.expression), + field('left', $.expression), + field('operator', choice('+=', '-=', '*=', '/=', '%=')), + field('right', $.expression), ), ), @@ -912,33 +912,33 @@ module.exports = grammar({ // @1 unary_expression: ($) => - prec(PREC.unary, seq(choice("-", "*", "!", "~", "@"), $.expression)), + prec(PREC.unary, seq(choice('-', '*', '!', '~', '@'), $.expression)), // for example in let a = try_smth?; it would be `try_smth?` - try_expression: ($) => prec(PREC.try, seq($.expression, "?")), + try_expression: ($) => prec(PREC.try, seq($.expression, '?')), // foo.bar field_expression: ($) => prec( PREC.field, seq( - field("value", $.expression), - ".", - field("field", choice($._field_identifier, $.numeric_literal)), + field('value', $.expression), + '.', + field('field', choice($._field_identifier, $.numeric_literal)), ), ), // section delimited by `{` and `{` - block: ($) => seq("{", repeat($._statement), optional($.expression), "}"), + block: ($) => seq('{', repeat($._statement), optional($.expression), '}'), // if true { () } else { () } if_expression: ($) => prec.right( seq( - "if", - field("condition", $._condition), - field("consequence", $.block), - optional(field("alternative", $.else_clause)), + 'if', + field('condition', $._condition), + field('consequence', $.block), + optional(field('alternative', $.else_clause)), ), ), @@ -947,21 +947,21 @@ module.exports = grammar({ // for example in if let Option::Some(a)= b { () } else { () } it would be `let Option::Some(a)= b` let_condition: ($) => seq( - "let", - field("pattern", $._pattern), - "=", - field("value", prec.left(PREC.and, $.expression)), + 'let', + field('pattern', $._pattern), + '=', + field('value', prec.left(PREC.and, $.expression)), ), // for example in if a == b { () } else { () } it would be `else { () }` - else_clause: ($) => seq("else", choice($.block, $.if_expression)), + else_clause: ($) => seq('else', choice($.block, $.if_expression)), // match opt { // Option::Some(a) => a, // Option::None => 0, // } match_expression: ($) => - seq("match", field("value", $.expression), field("body", $.match_block)), + seq('match', field('value', $.expression), field('body', $.match_block)), // { // Option::Some(a) => a, @@ -969,11 +969,11 @@ module.exports = grammar({ // } match_block: ($) => seq( - "{", + '{', optional( seq(repeat($.match_arm), alias($.last_match_arm, $.match_arm)), ), - "}", + '}', ), // Option::Some(a) => a, // and @@ -982,11 +982,11 @@ module.exports = grammar({ prec.right( seq( repeat(choice($.attribute_item, $.inner_attribute_item)), - field("pattern", $.match_pattern), - "=>", + field('pattern', $.match_pattern), + '=>', choice( - seq(field("value", $.expression), ","), - field("value", prec(1, $._expression_ending_with_block)), + seq(field('value', $.expression), ','), + field('value', prec(1, $._expression_ending_with_block)), ), ), ), @@ -999,27 +999,27 @@ module.exports = grammar({ last_match_arm: ($) => seq( repeat(choice($.attribute_item, $.inner_attribute_item)), - field("pattern", $.match_pattern), - "=>", - field("value", $.expression), - optional(","), + field('pattern', $.match_pattern), + '=>', + field('value', $.expression), + optional(','), ), // Option::Some(1) tuple_enum_pattern: ($) => seq( field( - "type", + 'type', choice( $.identifier, $.scoped_identifier, alias($.generic_type_with_turbofish, $.generic_type), ), ), - "(", - sepBy(",", $._pattern), - optional(","), - ")", + '(', + sepBy(',', $._pattern), + optional(','), + ')', ), // for example in match opt { // Option::Some(a) => a, @@ -1027,27 +1027,27 @@ module.exports = grammar({ // } // it would be `Option::Some(a)` and `Option::None` match_pattern: ($) => - seq($._pattern, optional(seq("if", field("condition", $._condition)))), + seq($._pattern, optional(seq('if', field('condition', $._condition)))), // while a != b {} while_expression: ($) => - seq("while", field("condition", $._condition), field("body", $.block)), + seq('while', field('condition', $._condition), field('body', $.block)), // loop {} - loop_expression: ($) => seq("loop", field("body", $.block)), + loop_expression: ($) => seq('loop', field('body', $.block)), // a == b binary_expression: ($) => { const table = [ - [PREC.and, "&&"], - [PREC.or, "||"], - [PREC.bitand, "&"], - [PREC.bitor, "|"], - [PREC.bitxor, "^"], - [PREC.comparative, choice("==", "!=", "<", "<=", ">", ">=")], - [PREC.shift, choice("<<", ">>")], - [PREC.additive, choice("+", "-")], - [PREC.multiplicative, choice("*", "/", "%")], + [PREC.and, '&&'], + [PREC.or, '||'], + [PREC.bitand, '&'], + [PREC.bitor, '|'], + [PREC.bitxor, '^'], + [PREC.comparative, choice('==', '!=', '<', '<=', '>', '>=')], + [PREC.shift, choice('<<', '>>')], + [PREC.additive, choice('+', '-')], + [PREC.multiplicative, choice('*', '/', '%')], ]; // @ts-ignore @@ -1056,10 +1056,10 @@ module.exports = grammar({ prec.left( precedence, seq( - field("left", $.expression), + field('left', $.expression), // @ts-ignore - field("operator", operator), - field("right", $.expression), + field('operator', operator), + field('right', $.expression), ), ), ), @@ -1067,32 +1067,32 @@ module.exports = grammar({ }, // @Array - snapshot_type: ($) => seq("@", field("type", $._type)), + snapshot_type: ($) => seq('@', field('type', $._type)), // foo() call_expression: ($) => prec( PREC.call, - seq(field("function", $.expression), field("arguments", $.arguments)), + seq(field('function', $.expression), field('arguments', $.arguments)), ), // for example in foo(a, b, c) it would be `(a, b, c)` arguments: ($) => seq( - "(", + '(', sepBy( - ",", + ',', seq(repeat($.attribute_item), choice($.expression, $.named_argument)), ), - optional(","), - ")", + optional(','), + ')', ), // for example in foo(bar: a, :b, :c) it would be `bar: a` and `:b` and `c` - named_argument: ($) => seq(optional($.identifier), ":", $.expression), + named_argument: ($) => seq(optional($.identifier), ':', $.expression), // for example in foo(ref b) it would be `ref b` reference_expression: ($) => prec( PREC.unary, - seq("ref", optional($.mutable_specifier), field("value", $.expression)), + seq('ref', optional($.mutable_specifier), field('value', $.expression)), ), // Helper alias @@ -1105,21 +1105,21 @@ module.exports = grammar({ prec( 20, seq( - "pub", - optional(seq("(", choice($.super, $.crate, seq("in", $._path)), ")")), + 'pub', + optional(seq('(', choice($.super, $.crate, seq('in', $._path)), ')')), ), ), - extern: (_) => "extern", - nopanic: (_) => "nopanic", - mutable_specifier: (_) => "mut", - ref_specifier: (_) => "ref", - super: (_) => "super", - crate: (_) => "crate", - _reserved_identifier: ($) => alias("default", $.identifier), + extern: (_) => 'extern', + nopanic: (_) => 'nopanic', + mutable_specifier: (_) => 'mut', + ref_specifier: (_) => 'ref', + super: (_) => 'super', + crate: (_) => 'crate', + _reserved_identifier: ($) => alias('default', $.identifier), // comments - line_comment: ($) => token(seq("//", /.*/)), - doc_comment: ($) => token(seq("///", /.*/)), + line_comment: ($) => token(seq('//', /.*/)), + doc_comment: ($) => token(seq('///', /.*/)), _field_identifier: ($) => alias($.identifier, $.field_identifier), }, diff --git a/queries/highlights.scm b/queries/highlights.scm index b13572b..d2cabd1 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -95,11 +95,6 @@ ; ------- ; Keywords ; ------- - -((identifier) @keyword.control - (#match? @keyword.control "^yield$")) - - [ "match" "if" @@ -311,7 +306,6 @@ "@" "&&" "|" - "|=" "||" "^" "*" From 0e8a14651309c9a02633368540128189e9c01cdb Mon Sep 17 00:00:00 2001 From: LucasLvy Date: Mon, 1 Jul 2024 11:52:08 +0200 Subject: [PATCH 3/3] feat(grammar): add for_expression --- grammar.js | 9 + src/grammar.json | 45 + src/node-types.json | 44 + src/parser.c | 74329 +++++++++++++++++++++--------------------- 4 files changed, 37976 insertions(+), 36451 deletions(-) diff --git a/grammar.js b/grammar.js index c00b9c4..bfb8d08 100644 --- a/grammar.js +++ b/grammar.js @@ -568,6 +568,7 @@ module.exports = grammar({ 'type', 'use', 'while', + 'for', ), // Section - Patterns @@ -907,6 +908,7 @@ module.exports = grammar({ $.if_expression, $.match_expression, $.while_expression, + $.for_expression, $.loop_expression, ), @@ -1033,6 +1035,13 @@ module.exports = grammar({ while_expression: ($) => seq('while', field('condition', $._condition), field('body', $.block)), + for_expression: $ => seq( + 'for', + field('pattern', $._pattern), + 'in', + field('value', $.expression), + field('body', $.block), + ), // loop {} loop_expression: ($) => seq('loop', field('body', $.block)), diff --git a/src/grammar.json b/src/grammar.json index d4bdaa7..54b0013 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2719,6 +2719,10 @@ { "type": "STRING", "value": "while" + }, + { + "type": "STRING", + "value": "for" } ] }, @@ -4564,6 +4568,10 @@ "type": "SYMBOL", "name": "while_expression" }, + { + "type": "SYMBOL", + "name": "for_expression" + }, { "type": "SYMBOL", "name": "loop_expression" @@ -5142,6 +5150,43 @@ } ] }, + "for_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "_pattern" + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "block" + } + } + ] + }, "loop_expression": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index a851314..5ee0c9e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -269,6 +269,10 @@ "type": "field_expression", "named": true }, + { + "type": "for_expression", + "named": true + }, { "type": "generic_function", "named": true @@ -1329,6 +1333,42 @@ ] } }, + { + "type": "for_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, { "type": "function", "named": true, @@ -3163,6 +3203,10 @@ "type": "fn", "named": false }, + { + "type": "for", + "named": false + }, { "type": "identifier", "named": true diff --git a/src/parser.c b/src/parser.c index 5a3dc5f..e60ef02 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1639 -#define LARGE_STATE_COUNT 221 -#define SYMBOL_COUNT 232 +#define STATE_COUNT 1654 +#define LARGE_STATE_COUNT 225 +#define SYMBOL_COUNT 234 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 104 +#define TOKEN_COUNT 105 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 123 +#define PRODUCTION_ID_COUNT 124 enum ts_symbol_identifiers { anon_sym_LBRACE = 1, @@ -110,155 +110,157 @@ enum ts_symbol_identifiers { anon_sym_return = 84, anon_sym_static = 85, anon_sym_while = 86, - sym_numeric_literal = 87, - aux_sym_string_literal_token1 = 88, - aux_sym_string_literal_token2 = 89, - anon_sym_DQUOTE = 90, - sym_shortstring_literal = 91, - anon_sym_true = 92, - anon_sym_false = 93, - anon_sym_DOLLAR = 94, - anon_sym_LT2 = 95, - anon_sym_else = 96, - anon_sym_ref = 97, - sym_identifier = 98, - anon_sym_in = 99, - sym_mutable_specifier = 100, - sym_super = 101, - sym_crate = 102, - sym_line_comment = 103, - sym_source_file = 104, - sym__statement = 105, - sym_declaration_list = 106, - sym_impl_item = 107, - sym_trait_item = 108, - sym_associated_type = 109, - sym_associated_impl = 110, - sym_const_item = 111, - sym_macro_invocation = 112, - sym_empty_statement = 113, - sym_attribute_item = 114, - sym_inner_attribute_item = 115, - sym_attribute = 116, - sym_mod_item = 117, - sym_struct_item = 118, - sym_enum_item = 119, - sym_enum_variant_list = 120, - sym_enum_variant = 121, - sym_field_declaration_list = 122, - sym_field_declaration = 123, - sym_type_item = 124, - sym_extern_type = 125, - sym_external_function_item = 126, - sym_function_item = 127, - sym_function_signature_item = 128, - sym_function = 129, - sym_let_declaration = 130, - sym_use_declaration = 131, - sym__use_clause = 132, - sym_scoped_use_list = 133, - sym_use_list = 134, - sym_use_as_clause = 135, - sym_use_wildcard = 136, - sym_parameters = 137, - sym_parameter = 138, - sym__type = 139, - sym_type_parameters = 140, - sym_const_parameter = 141, - sym_constrained_type_parameter = 142, - sym_generic_type = 143, - sym_generic_type_with_turbofish = 144, - sym_array_type = 145, - sym_delim_token_tree = 146, - sym__delim_tokens = 147, - sym__pattern = 148, - sym_tuple_pattern = 149, - sym_slice_pattern = 150, - sym_struct_pattern = 151, - sym_field_pattern = 152, - sym_field_initializer_list = 153, - sym_shorthand_field_initializer = 154, - sym_field_initializer = 155, - sym_base_field_initializer = 156, - sym_mut_pattern = 157, - sym_or_pattern = 158, - sym__literal = 159, - sym__literal_pattern = 160, - sym_negative_literal = 161, - sym_string_literal = 162, - sym_boolean_literal = 163, - sym__non_delim_token = 164, - sym_scoped_identifier = 165, - sym_scoped_type_identifier_in_expression_position = 166, - sym_scoped_type_identifier = 167, - sym_tuple_type = 168, - sym_unit_type = 169, - sym_type_arguments = 170, - sym_expression_statement = 171, - sym_expression = 172, - sym_generic_function = 173, - sym_tuple_expression = 174, - sym_return_expression = 175, - sym_struct_expression = 176, - sym_assignment_expression = 177, - sym_break_expression = 178, - sym_continue_expression = 179, - sym_index_expression = 180, - sym_array_expression = 181, - sym_parenthesized_expression = 182, - sym_unit_expression = 183, - sym_compound_assignment_expr = 184, - sym__expression_ending_with_block = 185, - sym_unary_expression = 186, - sym_try_expression = 187, - sym_field_expression = 188, - sym_block = 189, - sym_if_expression = 190, - sym__condition = 191, - sym_let_condition = 192, - sym_else_clause = 193, - sym_match_expression = 194, - sym_match_block = 195, - sym_match_arm = 196, - sym_last_match_arm = 197, - sym_tuple_enum_pattern = 198, - sym_match_pattern = 199, - sym_while_expression = 200, - sym_loop_expression = 201, - sym_binary_expression = 202, - sym_snapshot_type = 203, - sym_call_expression = 204, - sym_arguments = 205, - sym_named_argument = 206, - sym_reference_expression = 207, - sym_visibility_modifier = 208, - sym_extern = 209, - sym_nopanic = 210, - sym_ref_specifier = 211, - aux_sym_source_file_repeat1 = 212, - aux_sym_declaration_list_repeat1 = 213, - aux_sym_enum_variant_list_repeat1 = 214, - aux_sym_enum_variant_list_repeat2 = 215, - aux_sym_field_declaration_list_repeat1 = 216, - aux_sym_function_repeat1 = 217, - aux_sym_use_list_repeat1 = 218, - aux_sym_parameters_repeat1 = 219, - aux_sym_type_parameters_repeat1 = 220, - aux_sym_delim_token_tree_repeat1 = 221, - aux_sym__non_special_token_repeat1 = 222, - aux_sym_tuple_pattern_repeat1 = 223, - aux_sym_struct_pattern_repeat1 = 224, - aux_sym_field_initializer_list_repeat1 = 225, - aux_sym_type_arguments_repeat1 = 226, - aux_sym_tuple_expression_repeat1 = 227, - aux_sym_array_expression_repeat1 = 228, - aux_sym_match_block_repeat1 = 229, - aux_sym_match_arm_repeat1 = 230, - aux_sym_arguments_repeat1 = 231, - alias_sym_field_identifier = 232, - alias_sym_primitive_type = 233, - alias_sym_shorthand_field_identifier = 234, - alias_sym_type_identifier = 235, + anon_sym_for = 87, + sym_numeric_literal = 88, + aux_sym_string_literal_token1 = 89, + aux_sym_string_literal_token2 = 90, + anon_sym_DQUOTE = 91, + sym_shortstring_literal = 92, + anon_sym_true = 93, + anon_sym_false = 94, + anon_sym_DOLLAR = 95, + anon_sym_LT2 = 96, + anon_sym_else = 97, + anon_sym_in = 98, + anon_sym_ref = 99, + sym_identifier = 100, + sym_mutable_specifier = 101, + sym_super = 102, + sym_crate = 103, + sym_line_comment = 104, + sym_source_file = 105, + sym__statement = 106, + sym_declaration_list = 107, + sym_impl_item = 108, + sym_trait_item = 109, + sym_associated_type = 110, + sym_associated_impl = 111, + sym_const_item = 112, + sym_macro_invocation = 113, + sym_empty_statement = 114, + sym_attribute_item = 115, + sym_inner_attribute_item = 116, + sym_attribute = 117, + sym_mod_item = 118, + sym_struct_item = 119, + sym_enum_item = 120, + sym_enum_variant_list = 121, + sym_enum_variant = 122, + sym_field_declaration_list = 123, + sym_field_declaration = 124, + sym_type_item = 125, + sym_extern_type = 126, + sym_external_function_item = 127, + sym_function_item = 128, + sym_function_signature_item = 129, + sym_function = 130, + sym_let_declaration = 131, + sym_use_declaration = 132, + sym__use_clause = 133, + sym_scoped_use_list = 134, + sym_use_list = 135, + sym_use_as_clause = 136, + sym_use_wildcard = 137, + sym_parameters = 138, + sym_parameter = 139, + sym__type = 140, + sym_type_parameters = 141, + sym_const_parameter = 142, + sym_constrained_type_parameter = 143, + sym_generic_type = 144, + sym_generic_type_with_turbofish = 145, + sym_array_type = 146, + sym_delim_token_tree = 147, + sym__delim_tokens = 148, + sym__pattern = 149, + sym_tuple_pattern = 150, + sym_slice_pattern = 151, + sym_struct_pattern = 152, + sym_field_pattern = 153, + sym_field_initializer_list = 154, + sym_shorthand_field_initializer = 155, + sym_field_initializer = 156, + sym_base_field_initializer = 157, + sym_mut_pattern = 158, + sym_or_pattern = 159, + sym__literal = 160, + sym__literal_pattern = 161, + sym_negative_literal = 162, + sym_string_literal = 163, + sym_boolean_literal = 164, + sym__non_delim_token = 165, + sym_scoped_identifier = 166, + sym_scoped_type_identifier_in_expression_position = 167, + sym_scoped_type_identifier = 168, + sym_tuple_type = 169, + sym_unit_type = 170, + sym_type_arguments = 171, + sym_expression_statement = 172, + sym_expression = 173, + sym_generic_function = 174, + sym_tuple_expression = 175, + sym_return_expression = 176, + sym_struct_expression = 177, + sym_assignment_expression = 178, + sym_break_expression = 179, + sym_continue_expression = 180, + sym_index_expression = 181, + sym_array_expression = 182, + sym_parenthesized_expression = 183, + sym_unit_expression = 184, + sym_compound_assignment_expr = 185, + sym__expression_ending_with_block = 186, + sym_unary_expression = 187, + sym_try_expression = 188, + sym_field_expression = 189, + sym_block = 190, + sym_if_expression = 191, + sym__condition = 192, + sym_let_condition = 193, + sym_else_clause = 194, + sym_match_expression = 195, + sym_match_block = 196, + sym_match_arm = 197, + sym_last_match_arm = 198, + sym_tuple_enum_pattern = 199, + sym_match_pattern = 200, + sym_while_expression = 201, + sym_for_expression = 202, + sym_loop_expression = 203, + sym_binary_expression = 204, + sym_snapshot_type = 205, + sym_call_expression = 206, + sym_arguments = 207, + sym_named_argument = 208, + sym_reference_expression = 209, + sym_visibility_modifier = 210, + sym_extern = 211, + sym_nopanic = 212, + sym_ref_specifier = 213, + aux_sym_source_file_repeat1 = 214, + aux_sym_declaration_list_repeat1 = 215, + aux_sym_enum_variant_list_repeat1 = 216, + aux_sym_enum_variant_list_repeat2 = 217, + aux_sym_field_declaration_list_repeat1 = 218, + aux_sym_function_repeat1 = 219, + aux_sym_use_list_repeat1 = 220, + aux_sym_parameters_repeat1 = 221, + aux_sym_type_parameters_repeat1 = 222, + aux_sym_delim_token_tree_repeat1 = 223, + aux_sym__non_special_token_repeat1 = 224, + aux_sym_tuple_pattern_repeat1 = 225, + aux_sym_struct_pattern_repeat1 = 226, + aux_sym_field_initializer_list_repeat1 = 227, + aux_sym_type_arguments_repeat1 = 228, + aux_sym_tuple_expression_repeat1 = 229, + aux_sym_array_expression_repeat1 = 230, + aux_sym_match_block_repeat1 = 231, + aux_sym_match_arm_repeat1 = 232, + aux_sym_arguments_repeat1 = 233, + alias_sym_field_identifier = 234, + alias_sym_primitive_type = 235, + alias_sym_shorthand_field_identifier = 236, + alias_sym_type_identifier = 237, }; static const char * const ts_symbol_names[] = { @@ -349,6 +351,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_return] = "return", [anon_sym_static] = "static", [anon_sym_while] = "while", + [anon_sym_for] = "for", [sym_numeric_literal] = "numeric_literal", [aux_sym_string_literal_token1] = "\"", [aux_sym_string_literal_token2] = "string_literal_token2", @@ -359,9 +362,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOLLAR] = "$", [anon_sym_LT2] = "<", [anon_sym_else] = "else", + [anon_sym_in] = "in", [anon_sym_ref] = "ref", [sym_identifier] = "identifier", - [anon_sym_in] = "in", [sym_mutable_specifier] = "mutable_specifier", [sym_super] = "super", [sym_crate] = "crate", @@ -463,6 +466,7 @@ static const char * const ts_symbol_names[] = { [sym_tuple_enum_pattern] = "tuple_enum_pattern", [sym_match_pattern] = "match_pattern", [sym_while_expression] = "while_expression", + [sym_for_expression] = "for_expression", [sym_loop_expression] = "loop_expression", [sym_binary_expression] = "binary_expression", [sym_snapshot_type] = "snapshot_type", @@ -588,6 +592,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_return] = anon_sym_return, [anon_sym_static] = anon_sym_static, [anon_sym_while] = anon_sym_while, + [anon_sym_for] = anon_sym_for, [sym_numeric_literal] = sym_numeric_literal, [aux_sym_string_literal_token1] = anon_sym_DQUOTE, [aux_sym_string_literal_token2] = aux_sym_string_literal_token2, @@ -598,9 +603,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOLLAR] = anon_sym_DOLLAR, [anon_sym_LT2] = anon_sym_LT, [anon_sym_else] = anon_sym_else, + [anon_sym_in] = anon_sym_in, [anon_sym_ref] = anon_sym_ref, [sym_identifier] = sym_identifier, - [anon_sym_in] = anon_sym_in, [sym_mutable_specifier] = sym_mutable_specifier, [sym_super] = sym_super, [sym_crate] = sym_crate, @@ -702,6 +707,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_tuple_enum_pattern] = sym_tuple_enum_pattern, [sym_match_pattern] = sym_match_pattern, [sym_while_expression] = sym_while_expression, + [sym_for_expression] = sym_for_expression, [sym_loop_expression] = sym_loop_expression, [sym_binary_expression] = sym_binary_expression, [sym_snapshot_type] = sym_snapshot_type, @@ -1088,6 +1094,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, [sym_numeric_literal] = { .visible = true, .named = true, @@ -1128,6 +1138,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, [anon_sym_ref] = { .visible = true, .named = false, @@ -1136,10 +1150,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, [sym_mutable_specifier] = { .visible = true, .named = true, @@ -1549,6 +1559,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_for_expression] = { + .visible = true, + .named = true, + }, [sym_loop_expression] = { .visible = true, .named = true, @@ -1827,50 +1841,51 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [74] = {.index = 0, .length = 1}, [75] = {.index = 82, .length = 2}, [76] = {.index = 84, .length = 2}, - [78] = {.index = 86, .length = 2}, - [79] = {.index = 86, .length = 2}, - [80] = {.index = 88, .length = 2}, - [81] = {.index = 90, .length = 3}, - [82] = {.index = 93, .length = 1}, - [83] = {.index = 94, .length = 1}, - [85] = {.index = 95, .length = 1}, - [86] = {.index = 96, .length = 2}, - [87] = {.index = 98, .length = 3}, - [88] = {.index = 101, .length = 1}, - [89] = {.index = 102, .length = 2}, - [90] = {.index = 104, .length = 2}, - [91] = {.index = 106, .length = 4}, - [92] = {.index = 110, .length = 5}, - [93] = {.index = 115, .length = 4}, - [94] = {.index = 119, .length = 5}, - [95] = {.index = 124, .length = 2}, - [96] = {.index = 126, .length = 2}, - [97] = {.index = 128, .length = 2}, - [98] = {.index = 130, .length = 1}, - [99] = {.index = 131, .length = 2}, - [100] = {.index = 133, .length = 2}, - [101] = {.index = 133, .length = 2}, - [102] = {.index = 135, .length = 1}, - [103] = {.index = 136, .length = 2}, - [104] = {.index = 136, .length = 2}, - [105] = {.index = 138, .length = 2}, - [106] = {.index = 140, .length = 4}, - [107] = {.index = 144, .length = 3}, - [108] = {.index = 67, .length = 2}, - [109] = {.index = 147, .length = 5}, - [110] = {.index = 152, .length = 5}, - [111] = {.index = 157, .length = 6}, - [112] = {.index = 163, .length = 2}, - [113] = {.index = 165, .length = 3}, - [114] = {.index = 168, .length = 1}, - [115] = {.index = 169, .length = 2}, - [116] = {.index = 171, .length = 3}, - [117] = {.index = 174, .length = 2}, - [118] = {.index = 176, .length = 6}, - [119] = {.index = 182, .length = 6}, - [120] = {.index = 188, .length = 3}, + [78] = {.index = 86, .length = 3}, + [79] = {.index = 89, .length = 2}, + [80] = {.index = 89, .length = 2}, + [81] = {.index = 91, .length = 2}, + [82] = {.index = 93, .length = 3}, + [83] = {.index = 96, .length = 1}, + [84] = {.index = 97, .length = 1}, + [86] = {.index = 98, .length = 1}, + [87] = {.index = 99, .length = 2}, + [88] = {.index = 101, .length = 3}, + [89] = {.index = 104, .length = 1}, + [90] = {.index = 105, .length = 2}, + [91] = {.index = 107, .length = 2}, + [92] = {.index = 109, .length = 4}, + [93] = {.index = 113, .length = 5}, + [94] = {.index = 118, .length = 4}, + [95] = {.index = 122, .length = 5}, + [96] = {.index = 127, .length = 2}, + [97] = {.index = 129, .length = 2}, + [98] = {.index = 131, .length = 2}, + [99] = {.index = 133, .length = 1}, + [100] = {.index = 134, .length = 2}, + [101] = {.index = 136, .length = 2}, + [102] = {.index = 136, .length = 2}, + [103] = {.index = 138, .length = 1}, + [104] = {.index = 139, .length = 2}, + [105] = {.index = 139, .length = 2}, + [106] = {.index = 141, .length = 2}, + [107] = {.index = 143, .length = 4}, + [108] = {.index = 147, .length = 3}, + [109] = {.index = 67, .length = 2}, + [110] = {.index = 150, .length = 5}, + [111] = {.index = 155, .length = 5}, + [112] = {.index = 160, .length = 6}, + [113] = {.index = 166, .length = 2}, + [114] = {.index = 168, .length = 3}, + [115] = {.index = 171, .length = 1}, + [116] = {.index = 172, .length = 2}, + [117] = {.index = 174, .length = 3}, + [118] = {.index = 177, .length = 2}, + [119] = {.index = 179, .length = 6}, + [120] = {.index = 185, .length = 6}, [121] = {.index = 191, .length = 3}, - [122] = {.index = 194, .length = 7}, + [122] = {.index = 194, .length = 3}, + [123] = {.index = 197, .length = 7}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2009,153 +2024,157 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_pattern, 1}, {field_value, 3}, [86] = + {field_body, 4}, + {field_pattern, 1}, + {field_value, 3}, + [89] = {field_field, 0}, {field_value, 2}, - [88] = + [91] = {field_name, 2}, {field_type_parameters, 3}, - [90] = + [93] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [93] = + [96] = {field_name, 3}, - [94] = + [97] = {field_element, 1}, - [95] = + [98] = {field_type_parameters, 2}, - [96] = + [99] = {field_body, 5}, {field_type_parameters, 2}, - [98] = + [101] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [101] = + [104] = {field_length, 4}, - [102] = + [105] = {field_name, 0}, {field_type, 2}, - [104] = + [107] = {field_pattern, 0}, {field_type, 2}, - [106] = + [109] = {field_implicit_arguments, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [110] = + [113] = {field_implicit_arguments, 3}, {field_implicit_arguments, 4}, {field_implicit_arguments, 5}, {field_name, 1}, {field_parameters, 2}, - [115] = + [118] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [119] = + [122] = {field_implicit_arguments, 4}, {field_implicit_arguments, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [124] = + [127] = {field_name, 0}, {field_pattern, 2}, - [126] = + [129] = {field_pattern, 2}, {field_type, 4}, - [128] = + [131] = {field_pattern, 2}, {field_value, 4}, - [130] = + [133] = {field_condition, 2}, - [131] = + [134] = {field_pattern, 0}, {field_value, 2}, - [133] = + [136] = {field_field, 1}, {field_value, 3}, - [135] = + [138] = {field_body, 5}, - [136] = + [139] = {field_name, 2}, {field_type, 4}, - [138] = + [141] = {field_name, 3}, {field_type_parameters, 4}, - [140] = + [143] = {field_bound, 3}, {field_left, 0}, {field_left, 1}, {field_left, 2}, - [144] = + [147] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [147] = + [150] = {field_implicit_arguments, 5}, {field_implicit_arguments, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [152] = + [155] = {field_implicit_arguments, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [157] = + [160] = {field_implicit_arguments, 4}, {field_implicit_arguments, 5}, {field_implicit_arguments, 6}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [163] = + [166] = {field_name, 1}, {field_pattern, 3}, - [165] = + [168] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [168] = + [171] = {field_type_parameters, 3}, - [169] = + [172] = {field_body, 6}, {field_type_parameters, 3}, - [171] = + [174] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [174] = + [177] = {field_element, 1}, {field_length, 3}, - [176] = + [179] = {field_implicit_arguments, 5}, {field_implicit_arguments, 6}, {field_implicit_arguments, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [182] = + [185] = {field_implicit_arguments, 6}, {field_implicit_arguments, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [188] = + [191] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [191] = + [194] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [194] = + [197] = {field_implicit_arguments, 6}, {field_implicit_arguments, 7}, {field_implicit_arguments, 8}, @@ -2265,49 +2284,49 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [77] = { [3] = sym_identifier, }, - [79] = { - [0] = alias_sym_field_identifier, - }, [80] = { - [2] = alias_sym_type_identifier, + [0] = alias_sym_field_identifier, }, [81] = { [2] = alias_sym_type_identifier, }, [82] = { + [2] = alias_sym_type_identifier, + }, + [83] = { [3] = alias_sym_type_identifier, }, - [84] = { + [85] = { [2] = alias_sym_type_identifier, }, - [87] = { + [88] = { [1] = alias_sym_type_identifier, }, - [89] = { + [90] = { [0] = alias_sym_field_identifier, }, - [95] = { + [96] = { [0] = alias_sym_field_identifier, }, - [101] = { + [102] = { [1] = alias_sym_field_identifier, }, - [103] = { + [104] = { [2] = alias_sym_type_identifier, }, - [105] = { + [106] = { [3] = alias_sym_type_identifier, }, - [106] = { + [107] = { [1] = alias_sym_type_identifier, }, - [108] = { + [109] = { [1] = alias_sym_field_identifier, }, - [112] = { + [113] = { [1] = alias_sym_field_identifier, }, - [116] = { + [117] = { [2] = alias_sym_type_identifier, }, }; @@ -2324,60 +2343,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 2, - [4] = 4, + [4] = 2, [5] = 5, - [6] = 2, + [6] = 5, [7] = 5, - [8] = 5, + [8] = 2, [9] = 5, [10] = 2, - [11] = 5, - [12] = 4, - [13] = 2, + [11] = 11, + [12] = 12, + [13] = 5, [14] = 2, [15] = 5, - [16] = 16, - [17] = 2, + [16] = 12, + [17] = 5, [18] = 2, [19] = 5, - [20] = 5, + [20] = 2, [21] = 21, [22] = 22, [23] = 23, [24] = 24, [25] = 24, [26] = 26, - [27] = 26, - [28] = 28, + [27] = 27, + [28] = 27, [29] = 29, - [30] = 24, - [31] = 24, + [30] = 30, + [31] = 26, [32] = 29, - [33] = 33, - [34] = 34, - [35] = 29, - [36] = 33, - [37] = 28, - [38] = 26, - [39] = 34, - [40] = 29, - [41] = 34, - [42] = 28, - [43] = 33, - [44] = 33, - [45] = 28, - [46] = 26, + [33] = 26, + [34] = 27, + [35] = 30, + [36] = 36, + [37] = 24, + [38] = 36, + [39] = 30, + [40] = 26, + [41] = 29, + [42] = 27, + [43] = 24, + [44] = 36, + [45] = 30, + [46] = 36, [47] = 24, - [48] = 26, - [49] = 28, - [50] = 33, - [51] = 29, - [52] = 34, - [53] = 34, - [54] = 22, - [55] = 21, - [56] = 21, - [57] = 22, + [48] = 36, + [49] = 30, + [50] = 26, + [51] = 27, + [52] = 29, + [53] = 29, + [54] = 21, + [55] = 22, + [56] = 22, + [57] = 21, [58] = 58, [59] = 59, [60] = 60, @@ -2393,7 +2412,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [70] = 70, [71] = 71, [72] = 72, - [73] = 67, + [73] = 63, [74] = 74, [75] = 75, [76] = 76, @@ -2402,67 +2421,67 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [79] = 79, [80] = 80, [81] = 81, - [82] = 66, - [83] = 83, - [84] = 76, - [85] = 68, - [86] = 74, - [87] = 87, + [82] = 82, + [83] = 67, + [84] = 84, + [85] = 75, + [86] = 76, + [87] = 81, [88] = 88, - [89] = 87, + [89] = 88, [90] = 90, - [91] = 90, + [91] = 91, [92] = 92, [93] = 93, [94] = 93, [95] = 95, [96] = 92, - [97] = 95, + [97] = 91, [98] = 98, [99] = 99, - [100] = 100, + [100] = 99, [101] = 101, - [102] = 102, - [103] = 98, - [104] = 102, - [105] = 105, - [106] = 99, - [107] = 105, - [108] = 108, + [102] = 95, + [103] = 103, + [104] = 104, + [105] = 101, + [106] = 103, + [107] = 107, + [108] = 107, [109] = 109, [110] = 110, [111] = 111, - [112] = 112, - [113] = 110, + [112] = 110, + [113] = 113, [114] = 111, - [115] = 109, - [116] = 108, - [117] = 112, - [118] = 118, + [115] = 115, + [116] = 115, + [117] = 109, + [118] = 113, [119] = 119, [120] = 120, - [121] = 119, - [122] = 122, - [123] = 119, - [124] = 124, - [125] = 120, - [126] = 124, - [127] = 124, - [128] = 119, + [121] = 121, + [122] = 119, + [123] = 123, + [124] = 121, + [125] = 123, + [126] = 126, + [127] = 121, + [128] = 121, [129] = 129, - [130] = 130, + [130] = 123, [131] = 131, - [132] = 130, + [132] = 131, [133] = 133, - [134] = 134, + [134] = 133, [135] = 135, - [136] = 133, - [137] = 134, - [138] = 131, - [139] = 139, - [140] = 139, - [141] = 139, - [142] = 142, + [136] = 136, + [137] = 135, + [138] = 138, + [139] = 138, + [140] = 140, + [141] = 140, + [142] = 140, [143] = 143, [144] = 144, [145] = 145, @@ -2476,115 +2495,115 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [153] = 153, [154] = 154, [155] = 155, - [156] = 156, + [156] = 147, [157] = 157, [158] = 158, [159] = 159, - [160] = 153, + [160] = 143, [161] = 161, - [162] = 143, + [162] = 162, [163] = 163, [164] = 164, - [165] = 165, + [165] = 148, [166] = 166, [167] = 167, - [168] = 164, - [169] = 169, + [168] = 163, + [169] = 145, [170] = 170, - [171] = 163, - [172] = 149, - [173] = 151, - [174] = 147, - [175] = 143, - [176] = 154, + [171] = 171, + [172] = 153, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 151, [177] = 177, - [178] = 156, - [179] = 179, - [180] = 145, + [178] = 154, + [179] = 163, + [180] = 180, [181] = 181, - [182] = 165, - [183] = 157, + [182] = 182, + [183] = 152, [184] = 184, - [185] = 159, - [186] = 155, + [185] = 184, + [186] = 186, [187] = 187, - [188] = 188, - [189] = 158, - [190] = 152, - [191] = 181, - [192] = 158, - [193] = 159, - [194] = 179, - [195] = 165, - [196] = 196, + [188] = 151, + [189] = 155, + [190] = 157, + [191] = 149, + [192] = 167, + [193] = 193, + [194] = 180, + [195] = 147, + [196] = 146, [197] = 145, - [198] = 163, - [199] = 199, - [200] = 157, - [201] = 187, - [202] = 149, - [203] = 156, - [204] = 161, - [205] = 205, + [198] = 167, + [199] = 158, + [200] = 159, + [201] = 173, + [202] = 180, + [203] = 154, + [204] = 181, + [205] = 181, [206] = 206, - [207] = 153, - [208] = 161, - [209] = 154, + [207] = 206, + [208] = 155, + [209] = 157, [210] = 210, - [211] = 146, - [212] = 212, - [213] = 212, - [214] = 164, - [215] = 142, - [216] = 151, - [217] = 152, - [218] = 166, - [219] = 144, - [220] = 220, - [221] = 74, - [222] = 77, - [223] = 80, - [224] = 67, - [225] = 68, - [226] = 76, - [227] = 66, - [228] = 228, - [229] = 228, - [230] = 83, - [231] = 231, + [211] = 211, + [212] = 162, + [213] = 158, + [214] = 161, + [215] = 152, + [216] = 166, + [217] = 159, + [218] = 218, + [219] = 143, + [220] = 164, + [221] = 162, + [222] = 146, + [223] = 223, + [224] = 223, + [225] = 77, + [226] = 63, + [227] = 67, + [228] = 76, + [229] = 81, + [230] = 71, + [231] = 75, [232] = 232, - [233] = 233, - [234] = 233, - [235] = 68, - [236] = 76, + [233] = 232, + [234] = 81, + [235] = 235, + [236] = 75, [237] = 237, - [238] = 238, - [239] = 74, - [240] = 68, - [241] = 74, - [242] = 76, - [243] = 243, - [244] = 81, - [245] = 72, - [246] = 70, - [247] = 76, - [248] = 75, - [249] = 69, - [250] = 79, - [251] = 78, + [238] = 76, + [239] = 235, + [240] = 240, + [241] = 84, + [242] = 75, + [243] = 81, + [244] = 76, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, [252] = 252, - [253] = 71, - [254] = 68, - [255] = 255, + [253] = 253, + [254] = 82, + [255] = 80, [256] = 256, - [257] = 74, - [258] = 258, + [257] = 70, + [258] = 72, [259] = 259, [260] = 260, [261] = 261, [262] = 262, - [263] = 263, - [264] = 264, + [263] = 69, + [264] = 79, [265] = 265, [266] = 266, [267] = 267, @@ -2606,7 +2625,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [283] = 283, [284] = 284, [285] = 285, - [286] = 286, + [286] = 68, [287] = 287, [288] = 288, [289] = 289, @@ -2614,18 +2633,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [291] = 291, [292] = 292, [293] = 293, - [294] = 294, + [294] = 74, [295] = 295, [296] = 296, - [297] = 297, - [298] = 298, + [297] = 78, + [298] = 76, [299] = 299, [300] = 300, [301] = 301, [302] = 302, [303] = 303, - [304] = 304, - [305] = 305, + [304] = 81, + [305] = 75, [306] = 306, [307] = 307, [308] = 308, @@ -2660,90 +2679,90 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [337] = 337, [338] = 338, [339] = 339, - [340] = 338, + [340] = 340, [341] = 341, - [342] = 338, + [342] = 342, [343] = 343, - [344] = 343, + [344] = 344, [345] = 345, - [346] = 343, - [347] = 347, - [348] = 345, - [349] = 345, + [346] = 344, + [347] = 344, + [348] = 348, + [349] = 349, [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, + [351] = 348, + [352] = 348, + [353] = 349, + [354] = 349, [355] = 355, [356] = 356, - [357] = 353, - [358] = 354, - [359] = 356, - [360] = 355, - [361] = 361, - [362] = 362, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 358, + [362] = 360, [363] = 363, - [364] = 364, - [365] = 365, + [364] = 363, + [365] = 359, [366] = 366, [367] = 367, - [368] = 364, - [369] = 366, - [370] = 365, - [371] = 361, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 367, [372] = 372, - [373] = 363, - [374] = 372, - [375] = 367, - [376] = 362, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 377, - [384] = 382, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 366, + [377] = 374, + [378] = 372, + [379] = 370, + [380] = 369, + [381] = 375, + [382] = 368, + [383] = 383, + [384] = 384, [385] = 385, [386] = 386, - [387] = 381, - [388] = 378, + [387] = 387, + [388] = 388, [389] = 389, - [390] = 389, + [390] = 385, [391] = 391, [392] = 392, [393] = 393, - [394] = 392, - [395] = 395, - [396] = 396, - [397] = 395, - [398] = 396, - [399] = 395, - [400] = 396, - [401] = 401, - [402] = 402, - [403] = 401, - [404] = 329, - [405] = 401, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, + [394] = 385, + [395] = 384, + [396] = 393, + [397] = 386, + [398] = 398, + [399] = 388, + [400] = 400, + [401] = 391, + [402] = 400, + [403] = 403, + [404] = 404, + [405] = 403, + [406] = 404, + [407] = 404, + [408] = 403, + [409] = 327, [410] = 410, - [411] = 411, - [412] = 412, + [411] = 410, + [412] = 410, [413] = 413, [414] = 414, [415] = 415, [416] = 416, - [417] = 83, + [417] = 417, [418] = 418, [419] = 419, [420] = 420, [421] = 421, [422] = 422, - [423] = 423, + [423] = 84, [424] = 424, [425] = 425, [426] = 426, @@ -2751,19 +2770,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [428] = 428, [429] = 429, [430] = 430, - [431] = 431, + [431] = 75, [432] = 432, - [433] = 68, + [433] = 433, [434] = 434, - [435] = 76, - [436] = 74, - [437] = 437, + [435] = 435, + [436] = 436, + [437] = 76, [438] = 438, [439] = 439, [440] = 440, - [441] = 62, - [442] = 65, - [443] = 443, + [441] = 441, + [442] = 442, + [443] = 81, [444] = 444, [445] = 445, [446] = 446, @@ -2784,7 +2803,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [461] = 461, [462] = 462, [463] = 463, - [464] = 64, + [464] = 464, [465] = 465, [466] = 466, [467] = 467, @@ -2794,7 +2813,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [471] = 471, [472] = 472, [473] = 473, - [474] = 474, + [474] = 60, [475] = 475, [476] = 476, [477] = 477, @@ -2808,439 +2827,439 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [485] = 485, [486] = 486, [487] = 487, - [488] = 332, - [489] = 288, - [490] = 330, - [491] = 335, - [492] = 334, - [493] = 337, - [494] = 494, - [495] = 326, - [496] = 324, - [497] = 286, - [498] = 279, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 64, + [494] = 65, + [495] = 495, + [496] = 290, + [497] = 251, + [498] = 327, [499] = 499, - [500] = 309, - [501] = 278, - [502] = 502, - [503] = 267, - [504] = 305, - [505] = 274, - [506] = 331, - [507] = 322, - [508] = 320, - [509] = 318, - [510] = 307, - [511] = 298, - [512] = 302, - [513] = 299, - [514] = 297, - [515] = 273, - [516] = 304, - [517] = 272, - [518] = 499, - [519] = 258, - [520] = 294, - [521] = 263, - [522] = 271, - [523] = 283, - [524] = 270, - [525] = 289, - [526] = 303, - [527] = 296, - [528] = 280, - [529] = 269, - [530] = 268, - [531] = 281, - [532] = 329, - [533] = 277, - [534] = 287, - [535] = 285, - [536] = 293, - [537] = 310, - [538] = 311, - [539] = 323, - [540] = 327, - [541] = 284, - [542] = 336, - [543] = 260, - [544] = 328, - [545] = 276, - [546] = 275, - [547] = 266, - [548] = 321, - [549] = 502, - [550] = 317, - [551] = 282, - [552] = 261, - [553] = 262, - [554] = 264, - [555] = 290, - [556] = 411, - [557] = 292, - [558] = 312, - [559] = 300, - [560] = 325, - [561] = 313, - [562] = 259, - [563] = 308, - [564] = 319, - [565] = 301, - [566] = 333, - [567] = 291, - [568] = 316, - [569] = 315, - [570] = 295, - [571] = 314, - [572] = 306, - [573] = 419, - [574] = 574, - [575] = 411, - [576] = 576, - [577] = 577, + [500] = 308, + [501] = 309, + [502] = 252, + [503] = 313, + [504] = 248, + [505] = 334, + [506] = 333, + [507] = 331, + [508] = 270, + [509] = 289, + [510] = 271, + [511] = 273, + [512] = 274, + [513] = 253, + [514] = 262, + [515] = 420, + [516] = 259, + [517] = 311, + [518] = 340, + [519] = 312, + [520] = 249, + [521] = 323, + [522] = 324, + [523] = 329, + [524] = 337, + [525] = 338, + [526] = 299, + [527] = 306, + [528] = 275, + [529] = 332, + [530] = 318, + [531] = 287, + [532] = 277, + [533] = 315, + [534] = 272, + [535] = 261, + [536] = 317, + [537] = 281, + [538] = 307, + [539] = 303, + [540] = 330, + [541] = 302, + [542] = 542, + [543] = 336, + [544] = 542, + [545] = 300, + [546] = 278, + [547] = 342, + [548] = 301, + [549] = 269, + [550] = 310, + [551] = 499, + [552] = 335, + [553] = 296, + [554] = 295, + [555] = 293, + [556] = 292, + [557] = 322, + [558] = 321, + [559] = 326, + [560] = 328, + [561] = 325, + [562] = 341, + [563] = 319, + [564] = 291, + [565] = 314, + [566] = 285, + [567] = 283, + [568] = 250, + [569] = 288, + [570] = 256, + [571] = 265, + [572] = 266, + [573] = 267, + [574] = 284, + [575] = 280, + [576] = 268, + [577] = 282, [578] = 578, - [579] = 416, - [580] = 580, + [579] = 279, + [580] = 276, [581] = 581, [582] = 582, [583] = 583, - [584] = 576, - [585] = 415, - [586] = 583, - [587] = 418, - [588] = 577, - [589] = 589, + [584] = 426, + [585] = 585, + [586] = 586, + [587] = 587, + [588] = 588, + [589] = 420, [590] = 590, [591] = 591, [592] = 592, - [593] = 593, - [594] = 594, + [593] = 427, + [594] = 425, [595] = 595, - [596] = 83, - [597] = 415, - [598] = 598, - [599] = 599, - [600] = 424, - [601] = 420, - [602] = 602, + [596] = 596, + [597] = 587, + [598] = 591, + [599] = 424, + [600] = 592, + [601] = 601, + [602] = 442, [603] = 603, - [604] = 598, + [604] = 604, [605] = 605, [606] = 606, - [607] = 598, - [608] = 605, + [607] = 607, + [608] = 608, [609] = 609, [610] = 610, - [611] = 605, + [611] = 608, [612] = 612, - [613] = 598, + [613] = 613, [614] = 614, - [615] = 615, + [615] = 610, [616] = 616, - [617] = 410, - [618] = 616, + [617] = 612, + [618] = 604, [619] = 619, - [620] = 620, + [620] = 610, [621] = 621, [622] = 622, - [623] = 623, + [623] = 604, [624] = 624, - [625] = 625, - [626] = 626, - [627] = 625, + [625] = 609, + [626] = 610, + [627] = 627, [628] = 628, [629] = 629, - [630] = 599, - [631] = 598, - [632] = 605, - [633] = 615, + [630] = 630, + [631] = 631, + [632] = 632, + [633] = 416, [634] = 634, - [635] = 429, + [635] = 635, [636] = 636, - [637] = 598, - [638] = 638, - [639] = 605, + [637] = 637, + [638] = 327, + [639] = 639, [640] = 640, - [641] = 641, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 645, + [641] = 610, + [642] = 604, + [643] = 422, + [644] = 613, + [645] = 415, [646] = 646, - [647] = 647, - [648] = 648, - [649] = 409, - [650] = 647, - [651] = 605, - [652] = 646, - [653] = 416, - [654] = 654, - [655] = 655, - [656] = 619, - [657] = 623, - [658] = 430, - [659] = 430, + [647] = 624, + [648] = 640, + [649] = 649, + [650] = 603, + [651] = 636, + [652] = 652, + [653] = 653, + [654] = 604, + [655] = 628, + [656] = 652, + [657] = 610, + [658] = 604, + [659] = 659, [660] = 660, [661] = 661, - [662] = 662, - [663] = 643, - [664] = 624, + [662] = 610, + [663] = 663, + [664] = 664, [665] = 665, - [666] = 412, - [667] = 429, - [668] = 668, - [669] = 414, - [670] = 413, - [671] = 665, - [672] = 407, - [673] = 408, - [674] = 614, - [675] = 598, - [676] = 676, - [677] = 598, - [678] = 594, - [679] = 641, - [680] = 680, - [681] = 641, - [682] = 682, - [683] = 419, - [684] = 643, - [685] = 605, - [686] = 645, + [666] = 653, + [667] = 616, + [668] = 433, + [669] = 616, + [670] = 670, + [671] = 671, + [672] = 418, + [673] = 417, + [674] = 674, + [675] = 425, + [676] = 607, + [677] = 677, + [678] = 619, + [679] = 679, + [680] = 419, + [681] = 604, + [682] = 441, + [683] = 683, + [684] = 677, + [685] = 622, + [686] = 424, [687] = 687, - [688] = 682, - [689] = 689, - [690] = 605, - [691] = 660, - [692] = 689, - [693] = 693, - [694] = 612, - [695] = 329, - [696] = 418, + [688] = 610, + [689] = 621, + [690] = 614, + [691] = 687, + [692] = 692, + [693] = 434, + [694] = 604, + [695] = 695, + [696] = 696, [697] = 697, - [698] = 654, - [699] = 699, - [700] = 476, - [701] = 701, - [702] = 68, - [703] = 74, - [704] = 424, - [705] = 705, - [706] = 701, - [707] = 421, - [708] = 708, - [709] = 709, + [698] = 698, + [699] = 635, + [700] = 426, + [701] = 434, + [702] = 607, + [703] = 605, + [704] = 442, + [705] = 421, + [706] = 706, + [707] = 427, + [708] = 84, + [709] = 619, [710] = 710, - [711] = 711, - [712] = 447, - [713] = 713, - [714] = 446, - [715] = 715, - [716] = 439, - [717] = 717, - [718] = 718, - [719] = 420, - [720] = 329, - [721] = 721, - [722] = 434, - [723] = 708, - [724] = 469, - [725] = 705, - [726] = 427, - [727] = 486, - [728] = 474, - [729] = 440, - [730] = 478, + [711] = 453, + [712] = 461, + [713] = 471, + [714] = 475, + [715] = 477, + [716] = 478, + [717] = 479, + [718] = 480, + [719] = 481, + [720] = 482, + [721] = 461, + [722] = 436, + [723] = 492, + [724] = 433, + [725] = 441, + [726] = 726, + [727] = 444, + [728] = 728, + [729] = 432, + [730] = 730, [731] = 731, - [732] = 732, - [733] = 477, - [734] = 717, - [735] = 76, - [736] = 732, + [732] = 429, + [733] = 733, + [734] = 734, + [735] = 445, + [736] = 439, [737] = 737, [738] = 738, - [739] = 437, - [740] = 472, - [741] = 291, - [742] = 447, - [743] = 721, - [744] = 487, - [745] = 745, - [746] = 446, - [747] = 426, - [748] = 439, + [739] = 739, + [740] = 740, + [741] = 472, + [742] = 742, + [743] = 743, + [744] = 76, + [745] = 269, + [746] = 81, + [747] = 75, + [748] = 748, [749] = 749, - [750] = 484, - [751] = 487, - [752] = 484, - [753] = 718, - [754] = 710, - [755] = 432, - [756] = 472, - [757] = 737, - [758] = 476, - [759] = 438, - [760] = 477, + [750] = 750, + [751] = 742, + [752] = 453, + [753] = 471, + [754] = 754, + [755] = 462, + [756] = 749, + [757] = 462, + [758] = 492, + [759] = 475, + [760] = 472, [761] = 761, - [762] = 478, - [763] = 745, - [764] = 764, - [765] = 440, - [766] = 474, - [767] = 486, - [768] = 469, - [769] = 731, - [770] = 770, - [771] = 770, - [772] = 78, - [773] = 460, - [774] = 463, - [775] = 455, - [776] = 473, - [777] = 79, - [778] = 72, - [779] = 64, - [780] = 465, - [781] = 69, - [782] = 456, - [783] = 783, - [784] = 443, - [785] = 462, - [786] = 482, - [787] = 467, - [788] = 481, - [789] = 459, - [790] = 480, - [791] = 461, - [792] = 479, - [793] = 452, - [794] = 71, - [795] = 444, - [796] = 485, - [797] = 65, - [798] = 445, + [762] = 477, + [763] = 478, + [764] = 446, + [765] = 765, + [766] = 482, + [767] = 738, + [768] = 479, + [769] = 769, + [770] = 726, + [771] = 710, + [772] = 750, + [773] = 754, + [774] = 480, + [775] = 327, + [776] = 481, + [777] = 777, + [778] = 765, + [779] = 748, + [780] = 733, + [781] = 737, + [782] = 777, + [783] = 470, + [784] = 79, + [785] = 459, + [786] = 448, + [787] = 469, + [788] = 460, + [789] = 68, + [790] = 487, + [791] = 74, + [792] = 70, + [793] = 60, + [794] = 72, + [795] = 64, + [796] = 457, + [797] = 485, + [798] = 69, [799] = 451, - [800] = 454, - [801] = 62, - [802] = 75, - [803] = 70, - [804] = 475, - [805] = 805, - [806] = 471, - [807] = 81, - [808] = 468, - [809] = 470, - [810] = 450, - [811] = 458, - [812] = 448, - [813] = 483, - [814] = 453, - [815] = 466, - [816] = 457, - [817] = 449, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 820, - [822] = 822, - [823] = 823, - [824] = 823, - [825] = 380, - [826] = 329, - [827] = 827, + [800] = 456, + [801] = 455, + [802] = 447, + [803] = 452, + [804] = 449, + [805] = 486, + [806] = 484, + [807] = 489, + [808] = 463, + [809] = 809, + [810] = 476, + [811] = 80, + [812] = 78, + [813] = 490, + [814] = 82, + [815] = 464, + [816] = 450, + [817] = 466, + [818] = 465, + [819] = 495, + [820] = 454, + [821] = 467, + [822] = 491, + [823] = 468, + [824] = 488, + [825] = 473, + [826] = 458, + [827] = 65, [828] = 828, - [829] = 828, + [829] = 483, [830] = 830, - [831] = 830, - [832] = 830, - [833] = 828, - [834] = 828, - [835] = 828, - [836] = 828, - [837] = 828, - [838] = 828, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 833, + [836] = 832, + [837] = 373, + [838] = 327, [839] = 839, - [840] = 839, + [840] = 840, [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 844, - [847] = 413, - [848] = 841, - [849] = 414, - [850] = 407, - [851] = 408, - [852] = 842, - [853] = 843, + [842] = 841, + [843] = 840, + [844] = 840, + [845] = 841, + [846] = 840, + [847] = 840, + [848] = 840, + [849] = 840, + [850] = 840, + [851] = 851, + [852] = 851, + [853] = 853, [854] = 854, - [855] = 67, - [856] = 77, + [855] = 855, + [856] = 856, [857] = 857, - [858] = 66, - [859] = 859, - [860] = 860, - [861] = 859, - [862] = 862, - [863] = 80, - [864] = 864, - [865] = 843, - [866] = 866, - [867] = 842, - [868] = 868, - [869] = 869, + [858] = 856, + [859] = 422, + [860] = 855, + [861] = 853, + [862] = 854, + [863] = 419, + [864] = 418, + [865] = 421, + [866] = 67, + [867] = 63, + [868] = 77, + [869] = 71, [870] = 870, [871] = 871, [872] = 872, [873] = 873, - [874] = 870, - [875] = 844, - [876] = 841, + [874] = 874, + [875] = 875, + [876] = 875, [877] = 877, [878] = 878, [879] = 879, - [880] = 880, + [880] = 854, [881] = 881, [882] = 882, - [883] = 879, + [883] = 883, [884] = 884, [885] = 885, - [886] = 886, + [886] = 856, [887] = 887, - [888] = 888, - [889] = 888, - [890] = 886, - [891] = 891, + [888] = 855, + [889] = 853, + [890] = 883, + [891] = 64, [892] = 892, [893] = 893, [894] = 894, [895] = 895, - [896] = 896, - [897] = 894, + [896] = 894, + [897] = 897, [898] = 898, [899] = 899, [900] = 900, - [901] = 64, - [902] = 880, - [903] = 879, + [901] = 901, + [902] = 902, + [903] = 61, [904] = 904, - [905] = 65, - [906] = 906, - [907] = 904, + [905] = 905, + [906] = 60, + [907] = 907, [908] = 908, - [909] = 906, - [910] = 900, - [911] = 845, - [912] = 912, - [913] = 913, - [914] = 908, - [915] = 63, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 895, + [913] = 904, + [914] = 893, + [915] = 915, [916] = 916, - [917] = 917, + [917] = 857, [918] = 918, [919] = 919, - [920] = 880, + [920] = 920, [921] = 921, [922] = 922, [923] = 923, @@ -3248,15 +3267,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [925] = 925, [926] = 926, [927] = 927, - [928] = 928, + [928] = 922, [929] = 929, - [930] = 919, + [930] = 930, [931] = 931, [932] = 932, [933] = 933, - [934] = 922, + [934] = 934, [935] = 935, - [936] = 936, + [936] = 933, [937] = 937, [938] = 938, [939] = 939, @@ -3264,413 +3283,413 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [941] = 941, [942] = 942, [943] = 943, - [944] = 944, - [945] = 945, + [944] = 900, + [945] = 894, [946] = 946, - [947] = 842, + [947] = 947, [948] = 948, - [949] = 940, - [950] = 950, + [949] = 919, + [950] = 918, [951] = 951, [952] = 952, - [953] = 952, - [954] = 843, + [953] = 953, + [954] = 954, [955] = 955, [956] = 956, - [957] = 841, + [957] = 957, [958] = 958, - [959] = 844, + [959] = 853, [960] = 960, [961] = 961, [962] = 962, - [963] = 963, - [964] = 964, - [965] = 961, + [963] = 961, + [964] = 900, + [965] = 854, [966] = 966, - [967] = 967, + [967] = 856, [968] = 968, - [969] = 969, - [970] = 970, - [971] = 857, - [972] = 857, - [973] = 857, - [974] = 974, + [969] = 960, + [970] = 855, + [971] = 968, + [972] = 966, + [973] = 973, + [974] = 870, [975] = 975, [976] = 976, [977] = 977, - [978] = 978, - [979] = 857, + [978] = 976, + [979] = 979, [980] = 980, - [981] = 864, - [982] = 982, - [983] = 414, - [984] = 864, - [985] = 413, - [986] = 407, + [981] = 981, + [982] = 870, + [983] = 983, + [984] = 984, + [985] = 870, + [986] = 986, [987] = 987, - [988] = 408, - [989] = 989, + [988] = 874, + [989] = 418, [990] = 990, - [991] = 991, - [992] = 992, + [991] = 870, + [992] = 874, [993] = 993, - [994] = 864, - [995] = 892, - [996] = 996, + [994] = 994, + [995] = 995, + [996] = 897, [997] = 997, [998] = 998, - [999] = 380, + [999] = 999, [1000] = 1000, - [1001] = 998, - [1002] = 1002, + [1001] = 1001, + [1002] = 419, [1003] = 1003, - [1004] = 1004, + [1004] = 874, [1005] = 1005, [1006] = 1006, - [1007] = 1007, - [1008] = 1008, + [1007] = 421, + [1008] = 422, [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 1012, + [1012] = 415, [1013] = 1013, [1014] = 1014, [1015] = 1015, [1016] = 1016, [1017] = 1017, - [1018] = 1018, + [1018] = 1011, [1019] = 1019, [1020] = 1020, [1021] = 1021, - [1022] = 1009, - [1023] = 1012, + [1022] = 1022, + [1023] = 1023, [1024] = 1024, - [1025] = 1025, - [1026] = 409, - [1027] = 1027, - [1028] = 1014, + [1025] = 373, + [1026] = 1026, + [1027] = 1014, + [1028] = 1028, [1029] = 1029, [1030] = 1030, - [1031] = 1031, + [1031] = 417, [1032] = 1032, - [1033] = 380, + [1033] = 1033, [1034] = 1034, - [1035] = 1000, - [1036] = 1036, - [1037] = 1036, - [1038] = 1005, - [1039] = 1039, + [1035] = 1035, + [1036] = 1028, + [1037] = 1037, + [1038] = 874, + [1039] = 1019, [1040] = 1040, - [1041] = 412, - [1042] = 1040, + [1041] = 1041, + [1042] = 1042, [1043] = 1043, - [1044] = 410, - [1045] = 1045, + [1044] = 1044, + [1045] = 373, [1046] = 1046, - [1047] = 864, - [1048] = 1048, + [1047] = 1047, + [1048] = 1026, [1049] = 1049, [1050] = 1050, - [1051] = 1051, + [1051] = 1009, [1052] = 1052, [1053] = 1053, [1054] = 1054, - [1055] = 1055, + [1055] = 416, [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 1059, - [1060] = 1055, + [1059] = 1056, + [1060] = 1054, [1061] = 1061, - [1062] = 912, + [1062] = 1062, [1063] = 1063, - [1064] = 1058, + [1064] = 1064, [1065] = 1065, [1066] = 1066, - [1067] = 1067, + [1067] = 1064, [1068] = 1068, [1069] = 1069, [1070] = 1070, [1071] = 1071, - [1072] = 1072, + [1072] = 1068, [1073] = 1073, - [1074] = 1049, + [1074] = 1062, [1075] = 1075, - [1076] = 1063, - [1077] = 1077, + [1076] = 1076, + [1077] = 1070, [1078] = 1078, - [1079] = 1055, - [1080] = 1068, - [1081] = 1072, - [1082] = 1049, + [1079] = 1079, + [1080] = 1073, + [1081] = 1061, + [1082] = 1071, [1083] = 1083, - [1084] = 1054, + [1084] = 1084, [1085] = 1085, [1086] = 1086, - [1087] = 1067, - [1088] = 1085, - [1089] = 1059, - [1090] = 1073, - [1091] = 1061, - [1092] = 1073, - [1093] = 1085, + [1087] = 1083, + [1088] = 1088, + [1089] = 1089, + [1090] = 1085, + [1091] = 1091, + [1092] = 1092, + [1093] = 1091, [1094] = 1094, [1095] = 1095, - [1096] = 1086, - [1097] = 1067, - [1098] = 1086, - [1099] = 1054, - [1100] = 1100, - [1101] = 1072, - [1102] = 1068, - [1103] = 1103, - [1104] = 1068, - [1105] = 1072, - [1106] = 1068, - [1107] = 1107, - [1108] = 1070, - [1109] = 1051, + [1096] = 1096, + [1097] = 1097, + [1098] = 1091, + [1099] = 1085, + [1100] = 1083, + [1101] = 1097, + [1102] = 1094, + [1103] = 1092, + [1104] = 1095, + [1105] = 1105, + [1106] = 1088, + [1107] = 1096, + [1108] = 1076, + [1109] = 1109, [1110] = 1110, - [1111] = 1049, - [1112] = 1066, - [1113] = 1069, - [1114] = 1072, - [1115] = 1100, - [1116] = 1071, + [1111] = 1111, + [1112] = 1069, + [1113] = 1113, + [1114] = 1114, + [1115] = 1076, + [1116] = 1092, [1117] = 1117, - [1118] = 1065, - [1119] = 1049, - [1120] = 1051, - [1121] = 1121, - [1122] = 1122, - [1123] = 1107, - [1124] = 1110, - [1125] = 1125, - [1126] = 1065, - [1127] = 1117, - [1128] = 1050, - [1129] = 1075, - [1130] = 1053, - [1131] = 1054, - [1132] = 1052, - [1133] = 1133, - [1134] = 1073, - [1135] = 1049, - [1136] = 1136, - [1137] = 1051, - [1138] = 1068, - [1139] = 1072, - [1140] = 1072, - [1141] = 1068, - [1142] = 1049, - [1143] = 1078, - [1144] = 1077, - [1145] = 1012, - [1146] = 1103, - [1147] = 1147, + [1118] = 1118, + [1119] = 1119, + [1120] = 1119, + [1121] = 1118, + [1122] = 1117, + [1123] = 1091, + [1124] = 1085, + [1125] = 1069, + [1126] = 1083, + [1127] = 1127, + [1128] = 1091, + [1129] = 1085, + [1130] = 1083, + [1131] = 1091, + [1132] = 1065, + [1133] = 1085, + [1134] = 1083, + [1135] = 1097, + [1136] = 1066, + [1137] = 1094, + [1138] = 1009, + [1139] = 1092, + [1140] = 1078, + [1141] = 1088, + [1142] = 1076, + [1143] = 1089, + [1144] = 1144, + [1145] = 1110, + [1146] = 1146, + [1147] = 1086, [1148] = 1148, - [1149] = 1149, - [1150] = 1150, - [1151] = 329, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1107, - [1156] = 1156, - [1157] = 1157, - [1158] = 1158, + [1149] = 1111, + [1150] = 1069, + [1151] = 1113, + [1152] = 1086, + [1153] = 1114, + [1154] = 1091, + [1155] = 1085, + [1156] = 1083, + [1157] = 902, + [1158] = 1070, [1159] = 1159, [1160] = 1160, - [1161] = 1161, + [1161] = 1073, [1162] = 1162, [1163] = 1163, - [1164] = 65, + [1164] = 1164, [1165] = 1165, [1166] = 1166, [1167] = 1167, [1168] = 1168, [1169] = 1169, [1170] = 1170, - [1171] = 80, + [1171] = 64, [1172] = 1172, [1173] = 1173, - [1174] = 64, - [1175] = 77, - [1176] = 1176, - [1177] = 1177, - [1178] = 958, - [1179] = 941, - [1180] = 939, - [1181] = 1181, - [1182] = 937, + [1174] = 921, + [1175] = 1175, + [1176] = 327, + [1177] = 925, + [1178] = 77, + [1179] = 927, + [1180] = 1180, + [1181] = 60, + [1182] = 71, [1183] = 1183, - [1184] = 1184, - [1185] = 933, + [1184] = 1114, + [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 916, + [1188] = 1188, [1189] = 1189, - [1190] = 67, - [1191] = 66, + [1190] = 1190, + [1191] = 1191, [1192] = 1192, - [1193] = 945, + [1193] = 61, [1194] = 1194, - [1195] = 329, + [1195] = 1195, [1196] = 1196, - [1197] = 925, - [1198] = 1198, + [1197] = 63, + [1198] = 67, [1199] = 1199, [1200] = 1200, - [1201] = 1201, - [1202] = 1202, + [1201] = 1021, + [1202] = 327, [1203] = 1203, [1204] = 1204, - [1205] = 929, + [1205] = 932, [1206] = 1206, [1207] = 1207, [1208] = 1208, [1209] = 1209, [1210] = 1210, - [1211] = 1211, + [1211] = 930, [1212] = 1212, - [1213] = 1198, + [1213] = 937, [1214] = 1214, - [1215] = 63, + [1215] = 1206, [1216] = 1216, - [1217] = 927, - [1218] = 1218, - [1219] = 1147, + [1217] = 1191, + [1218] = 1166, + [1219] = 1173, [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1223, + [1221] = 954, + [1222] = 1173, + [1223] = 1214, [1224] = 1224, - [1225] = 924, + [1225] = 1225, [1226] = 1226, - [1227] = 923, - [1228] = 1228, - [1229] = 921, - [1230] = 1221, + [1227] = 1212, + [1228] = 1194, + [1229] = 1229, + [1230] = 1230, [1231] = 1231, [1232] = 1232, [1233] = 1233, - [1234] = 955, - [1235] = 918, + [1234] = 1234, + [1235] = 1235, [1236] = 1236, [1237] = 1237, - [1238] = 1204, + [1238] = 1238, [1239] = 1239, [1240] = 1240, [1241] = 1241, [1242] = 1242, - [1243] = 948, + [1243] = 1243, [1244] = 1244, [1245] = 1245, - [1246] = 1246, + [1246] = 923, [1247] = 1247, [1248] = 1248, - [1249] = 944, + [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1252, - [1253] = 1209, - [1254] = 917, - [1255] = 946, - [1256] = 1181, - [1257] = 1153, - [1258] = 1117, - [1259] = 1183, - [1260] = 1260, - [1261] = 1154, + [1252] = 926, + [1253] = 946, + [1254] = 1165, + [1255] = 1226, + [1256] = 1256, + [1257] = 1257, + [1258] = 953, + [1259] = 957, + [1260] = 1232, + [1261] = 956, [1262] = 1262, [1263] = 1263, - [1264] = 1003, + [1264] = 1237, [1265] = 1265, - [1266] = 1248, + [1266] = 1266, [1267] = 1267, - [1268] = 1232, + [1268] = 1245, [1269] = 1269, [1270] = 1270, [1271] = 1271, - [1272] = 1212, - [1273] = 1245, + [1272] = 1272, + [1273] = 1209, [1274] = 1274, - [1275] = 1250, - [1276] = 1276, - [1277] = 1212, - [1278] = 1236, - [1279] = 1211, + [1275] = 948, + [1276] = 943, + [1277] = 1277, + [1278] = 1278, + [1279] = 942, [1280] = 1280, [1281] = 1281, - [1282] = 1282, - [1283] = 1283, - [1284] = 1282, - [1285] = 1285, - [1286] = 950, - [1287] = 1281, - [1288] = 951, - [1289] = 1265, - [1290] = 943, - [1291] = 1285, - [1292] = 1283, + [1282] = 1233, + [1283] = 955, + [1284] = 935, + [1285] = 938, + [1286] = 916, + [1287] = 931, + [1288] = 1288, + [1289] = 1289, + [1290] = 1236, + [1291] = 1291, + [1292] = 929, [1293] = 1293, - [1294] = 956, + [1294] = 1294, [1295] = 1295, - [1296] = 1251, - [1297] = 1206, - [1298] = 1231, - [1299] = 942, - [1300] = 928, + [1296] = 1263, + [1297] = 1265, + [1298] = 1298, + [1299] = 1299, + [1300] = 1300, [1301] = 1301, - [1302] = 1148, - [1303] = 1293, - [1304] = 1244, - [1305] = 938, + [1302] = 1302, + [1303] = 924, + [1304] = 1272, + [1305] = 1305, [1306] = 1306, - [1307] = 1216, - [1308] = 936, - [1309] = 1218, - [1310] = 1260, - [1311] = 1222, - [1312] = 1152, - [1313] = 1252, - [1314] = 1301, - [1315] = 1237, - [1316] = 1149, - [1317] = 932, - [1318] = 1200, - [1319] = 931, - [1320] = 1199, - [1321] = 1198, - [1322] = 1322, - [1323] = 1192, - [1324] = 1242, - [1325] = 1325, - [1326] = 1157, - [1327] = 1327, - [1328] = 1158, - [1329] = 1329, - [1330] = 1204, - [1331] = 1176, - [1332] = 935, + [1307] = 939, + [1308] = 1288, + [1309] = 1309, + [1310] = 1274, + [1311] = 920, + [1312] = 1305, + [1313] = 1302, + [1314] = 1309, + [1315] = 1247, + [1316] = 1247, + [1317] = 1207, + [1318] = 1318, + [1319] = 1319, + [1320] = 1204, + [1321] = 1306, + [1322] = 1196, + [1323] = 940, + [1324] = 1319, + [1325] = 1169, + [1326] = 1300, + [1327] = 1167, + [1328] = 1165, + [1329] = 1301, + [1330] = 1190, + [1331] = 1299, + [1332] = 1332, [1333] = 1333, - [1334] = 1159, - [1335] = 1322, - [1336] = 1208, - [1337] = 1224, - [1338] = 1338, - [1339] = 1339, - [1340] = 1340, - [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1344, - [1345] = 1340, - [1346] = 873, - [1347] = 1347, + [1334] = 941, + [1335] = 1295, + [1336] = 1251, + [1337] = 1248, + [1338] = 1172, + [1339] = 1163, + [1340] = 947, + [1341] = 951, + [1342] = 1298, + [1343] = 1243, + [1344] = 952, + [1345] = 1318, + [1346] = 1240, + [1347] = 1239, [1348] = 1348, - [1349] = 1341, - [1350] = 1341, + [1349] = 1229, + [1350] = 1294, [1351] = 1351, [1352] = 1352, [1353] = 1353, @@ -3682,15 +3701,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1359] = 1359, [1360] = 1360, [1361] = 1361, - [1362] = 1362, + [1362] = 1356, [1363] = 1363, [1364] = 1364, - [1365] = 1365, - [1366] = 1362, + [1365] = 1357, + [1366] = 1357, [1367] = 1367, [1368] = 1368, [1369] = 1369, - [1370] = 1362, + [1370] = 1370, [1371] = 1371, [1372] = 1372, [1373] = 1373, @@ -3698,20 +3717,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1375] = 1375, [1376] = 1376, [1377] = 1377, - [1378] = 1378, - [1379] = 1379, + [1378] = 882, + [1379] = 65, [1380] = 1380, [1381] = 1381, [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1386, + [1386] = 1385, [1387] = 1387, - [1388] = 1386, + [1388] = 1388, [1389] = 1389, [1390] = 1390, - [1391] = 1382, + [1391] = 1391, [1392] = 1392, [1393] = 1393, [1394] = 1394, @@ -3720,245 +3739,260 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1397] = 1397, [1398] = 1398, [1399] = 1399, - [1400] = 1390, - [1401] = 1401, - [1402] = 1402, - [1403] = 1394, + [1400] = 1400, + [1401] = 1375, + [1402] = 1383, + [1403] = 1385, [1404] = 1404, [1405] = 1405, - [1406] = 1406, + [1406] = 1390, [1407] = 1407, [1408] = 1408, [1409] = 1409, - [1410] = 1410, - [1411] = 62, - [1412] = 1393, + [1410] = 1382, + [1411] = 1411, + [1412] = 1404, [1413] = 1413, - [1414] = 1355, - [1415] = 1357, - [1416] = 1416, + [1414] = 1414, + [1415] = 1363, + [1416] = 1355, [1417] = 1417, - [1418] = 1389, - [1419] = 1409, - [1420] = 1420, - [1421] = 1421, - [1422] = 1421, - [1423] = 1423, + [1418] = 1418, + [1419] = 1419, + [1420] = 1354, + [1421] = 1370, + [1422] = 1370, + [1423] = 1376, [1424] = 1424, [1425] = 1425, - [1426] = 1424, - [1427] = 1424, - [1428] = 1423, - [1429] = 1429, - [1430] = 1421, - [1431] = 1374, - [1432] = 1397, - [1433] = 1433, - [1434] = 1409, - [1435] = 1395, - [1436] = 1423, + [1426] = 1351, + [1427] = 1427, + [1428] = 1414, + [1429] = 1427, + [1430] = 1430, + [1431] = 1376, + [1432] = 1432, + [1433] = 1384, + [1434] = 1434, + [1435] = 1396, + [1436] = 1436, [1437] = 1437, - [1438] = 1395, - [1439] = 1416, - [1440] = 1440, - [1441] = 1395, - [1442] = 1389, - [1443] = 1443, - [1444] = 1375, - [1445] = 1357, - [1446] = 1446, - [1447] = 1355, - [1448] = 1397, - [1449] = 1397, + [1438] = 1430, + [1439] = 1353, + [1440] = 1409, + [1441] = 1432, + [1442] = 1442, + [1443] = 1404, + [1444] = 1356, + [1445] = 1445, + [1446] = 1409, + [1447] = 1447, + [1448] = 1436, + [1449] = 1449, [1450] = 1450, - [1451] = 1420, - [1452] = 1452, - [1453] = 1389, - [1454] = 1347, - [1455] = 1410, - [1456] = 1389, - [1457] = 1381, - [1458] = 1421, + [1451] = 1451, + [1452] = 1398, + [1453] = 1451, + [1454] = 1454, + [1455] = 1436, + [1456] = 1404, + [1457] = 1360, + [1458] = 1458, [1459] = 1459, - [1460] = 1363, - [1461] = 1395, - [1462] = 1343, - [1463] = 1397, - [1464] = 1351, - [1465] = 1397, - [1466] = 1395, - [1467] = 1389, - [1468] = 1361, - [1469] = 1469, - [1470] = 1358, - [1471] = 1402, - [1472] = 1359, - [1473] = 1360, - [1474] = 1474, - [1475] = 1475, - [1476] = 1476, + [1460] = 1409, + [1461] = 1461, + [1462] = 1419, + [1463] = 1351, + [1464] = 1432, + [1465] = 1351, + [1466] = 1430, + [1467] = 1430, + [1468] = 1468, + [1469] = 1358, + [1470] = 1470, + [1471] = 1381, + [1472] = 1409, + [1473] = 1473, + [1474] = 1424, + [1475] = 1404, + [1476] = 1427, [1477] = 1477, [1478] = 1478, - [1479] = 1479, - [1480] = 1476, + [1479] = 1361, + [1480] = 1404, [1481] = 1481, - [1482] = 1476, + [1482] = 1482, [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1478, - [1488] = 1488, + [1484] = 1408, + [1485] = 1442, + [1486] = 1351, + [1487] = 1409, + [1488] = 1351, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 1493, + [1493] = 1491, [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 1476, - [1498] = 1477, + [1497] = 1497, + [1498] = 1498, [1499] = 1499, [1500] = 1500, [1501] = 1501, - [1502] = 1502, + [1502] = 1491, [1503] = 1503, - [1504] = 1504, + [1504] = 1503, [1505] = 1505, - [1506] = 1506, - [1507] = 1476, + [1506] = 1491, + [1507] = 1507, [1508] = 1508, [1509] = 1509, [1510] = 1510, [1511] = 1511, - [1512] = 1476, + [1512] = 1512, [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 1516, + [1516] = 1491, [1517] = 1517, - [1518] = 1518, + [1518] = 1496, [1519] = 1519, [1520] = 1520, - [1521] = 1521, - [1522] = 1476, - [1523] = 1478, - [1524] = 1478, + [1521] = 1491, + [1522] = 1508, + [1523] = 1523, + [1524] = 1524, [1525] = 1525, [1526] = 1526, - [1527] = 1478, - [1528] = 1496, + [1527] = 1527, + [1528] = 1503, [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1492, + [1530] = 1491, + [1531] = 1491, + [1532] = 898, [1533] = 1533, [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1538, + [1538] = 1503, [1539] = 1539, - [1540] = 1476, - [1541] = 1541, - [1542] = 1509, - [1543] = 1505, - [1544] = 1504, - [1545] = 1503, - [1546] = 1538, - [1547] = 898, - [1548] = 1493, - [1549] = 1520, - [1550] = 899, - [1551] = 1551, - [1552] = 1474, - [1553] = 1553, - [1554] = 1484, + [1540] = 1499, + [1541] = 1517, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1547, + [1548] = 1547, + [1549] = 1549, + [1550] = 1495, + [1551] = 1512, + [1552] = 1515, + [1553] = 1524, + [1554] = 1500, [1555] = 1555, - [1556] = 1491, - [1557] = 1557, + [1556] = 1507, + [1557] = 1497, [1558] = 1558, [1559] = 1559, - [1560] = 1534, + [1560] = 1511, [1561] = 1561, [1562] = 1562, - [1563] = 1519, - [1564] = 885, + [1563] = 1563, + [1564] = 1564, [1565] = 1565, - [1566] = 1536, + [1566] = 1564, [1567] = 1567, - [1568] = 1533, - [1569] = 1551, - [1570] = 1501, - [1571] = 1555, - [1572] = 1572, + [1568] = 1543, + [1569] = 1510, + [1570] = 1537, + [1571] = 1489, + [1572] = 1503, [1573] = 1573, - [1574] = 1496, - [1575] = 1499, + [1574] = 1574, + [1575] = 1575, [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1572, + [1579] = 1576, [1580] = 1580, - [1581] = 1581, - [1582] = 1582, + [1581] = 1533, + [1582] = 1536, [1583] = 1583, [1584] = 1584, - [1585] = 1585, - [1586] = 1573, - [1587] = 1580, - [1588] = 1562, - [1589] = 1581, + [1585] = 1519, + [1586] = 1586, + [1587] = 1573, + [1588] = 1588, + [1589] = 1589, [1590] = 1590, [1591] = 1591, - [1592] = 1526, - [1593] = 1525, - [1594] = 1526, - [1595] = 1525, - [1596] = 1494, - [1597] = 1534, - [1598] = 1486, - [1599] = 1477, - [1600] = 1584, - [1601] = 1585, + [1592] = 1507, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 1597, + [1598] = 1598, + [1599] = 1546, + [1600] = 1539, + [1601] = 907, [1602] = 1602, - [1603] = 1603, - [1604] = 1517, - [1605] = 1525, - [1606] = 1516, - [1607] = 1607, - [1608] = 1534, - [1609] = 1582, - [1610] = 1525, - [1611] = 1515, - [1612] = 1534, - [1613] = 1485, - [1614] = 1534, - [1615] = 1615, - [1616] = 1514, - [1617] = 1488, - [1618] = 1495, - [1619] = 1578, - [1620] = 1577, - [1621] = 1576, - [1622] = 1513, - [1623] = 1623, - [1624] = 1529, - [1625] = 1553, - [1626] = 1583, - [1627] = 1627, - [1628] = 1483, - [1629] = 1501, - [1630] = 1577, - [1631] = 1576, - [1632] = 1576, - [1633] = 1576, - [1634] = 1518, - [1635] = 1615, - [1636] = 1510, - [1637] = 1508, - [1638] = 1506, + [1603] = 1534, + [1604] = 1535, + [1605] = 1605, + [1606] = 1517, + [1607] = 1543, + [1608] = 908, + [1609] = 1535, + [1610] = 1534, + [1611] = 1598, + [1612] = 1612, + [1613] = 1593, + [1614] = 1562, + [1615] = 1577, + [1616] = 1534, + [1617] = 1617, + [1618] = 1618, + [1619] = 1543, + [1620] = 1594, + [1621] = 1534, + [1622] = 1526, + [1623] = 1543, + [1624] = 1525, + [1625] = 1543, + [1626] = 1501, + [1627] = 1602, + [1628] = 1580, + [1629] = 1589, + [1630] = 1588, + [1631] = 1631, + [1632] = 1586, + [1633] = 1633, + [1634] = 1514, + [1635] = 1635, + [1636] = 1597, + [1637] = 1618, + [1638] = 1635, + [1639] = 1583, + [1640] = 1490, + [1641] = 1510, + [1642] = 1573, + [1643] = 1586, + [1644] = 1644, + [1645] = 1586, + [1646] = 1586, + [1647] = 1527, + [1648] = 1633, + [1649] = 1523, + [1650] = 1513, + [1651] = 1505, + [1652] = 1544, + [1653] = 1612, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3966,404 +4000,405 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(248); + if (eof) ADVANCE(250); ADVANCE_MAP( - '!', 267, - '"', 407, - '#', 268, - '$', 414, - '%', 332, - '&', 337, + '!', 269, + '"', 411, + '#', 270, + '$', 418, + '%', 334, + '&', 339, '\'', 24, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 330, - '.', 360, - '/', 331, - '0', 388, - ':', 260, - ';', 254, - '<', 415, - '=', 265, - '>', 325, - '?', 362, - '@', 357, - 'B', 205, - '[', 269, - ']', 270, - '^', 334, - '_', 291, - 'a', 178, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 332, + '.', 362, + '/', 333, + '0', 392, + ':', 262, + ';', 256, + '<', 419, + '=', 267, + '>', 327, + '?', 364, + '@', 359, + 'B', 207, + '[', 271, + ']', 272, + '^', 336, + '_', 293, + 'a', 180, 'b', 19, 'c', 18, - 'd', 123, + 'd', 122, 'e', 148, 'f', 94, 'i', 63, - 'l', 124, + 'l', 123, 'm', 99, - 'n', 163, + 'n', 164, 'o', 130, - 'p', 199, + 'p', 201, 'r', 110, - 's', 183, - 't', 172, + 's', 185, + 't', 173, 'u', 64, 'w', 134, - '{', 249, - '|', 339, - '}', 250, - '~', 335, + '{', 251, + '|', 341, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(244); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + lookahead == ' ') SKIP(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); case 1: ADVANCE_MAP( - '!', 267, - '"', 402, - '#', 268, - '$', 414, - '%', 332, - '&', 337, + '!', 269, + '"', 406, + '#', 270, + '$', 418, + '%', 334, + '&', 339, '\'', 24, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 330, - '.', 360, - '/', 331, - '0', 388, - ':', 260, - ';', 254, - '<', 323, - '=', 265, - '>', 325, - '?', 362, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '^', 334, - '_', 292, - 'b', 420, - 'c', 422, - 'd', 472, - 'e', 520, - 'f', 453, - 'i', 425, - 'l', 485, - 'm', 459, - 'n', 530, - 'p', 566, - 'r', 492, - 's', 557, - 't', 537, - 'u', 429, - 'w', 497, - '{', 249, - '|', 339, - '}', 250, - '~', 335, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 332, + '.', 362, + '/', 333, + '0', 392, + ':', 262, + ';', 256, + '<', 325, + '=', 267, + '>', 327, + '?', 364, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '^', 336, + '_', 294, + 'b', 425, + 'c', 427, + 'd', 478, + 'e', 526, + 'f', 458, + 'i', 430, + 'l', 491, + 'm', 465, + 'n', 536, + 'p', 573, + 'r', 498, + 's', 563, + 't', 543, + 'u', 434, + 'w', 503, + '{', 251, + '|', 341, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 2: ADVANCE_MAP( - '!', 267, - '"', 402, - '%', 332, - '&', 336, + '!', 269, + '"', 406, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - '0', 388, - ':', 260, - ';', 254, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '^', 333, - '_', 400, - 'b', 420, - 'c', 423, - 'd', 472, - 'f', 454, - 'i', 426, - 'l', 527, - 'm', 462, - 'r', 473, - 's', 568, - 't', 545, - 'u', 430, - 'w', 497, - '{', 249, - '|', 340, - '}', 250, - '~', 335, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + '0', 392, + ':', 262, + ';', 256, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '^', 335, + '_', 404, + 'b', 425, + 'c', 428, + 'd', 478, + 'f', 459, + 'i', 431, + 'l', 533, + 'm', 468, + 'r', 479, + 's', 575, + 't', 552, + 'u', 435, + 'w', 503, + '{', 251, + '|', 342, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 3: ADVANCE_MAP( - '!', 267, - '"', 402, - '%', 332, - '&', 336, + '!', 269, + '"', 406, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - '*', 289, - '+', 327, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + '*', 291, + '+', 329, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - '<', 323, - '=', 265, - '>', 325, - '?', 362, - '@', 357, - 'B', 575, - '[', 269, - '^', 333, - '_', 400, - 'b', 420, - 'c', 423, - 'd', 472, - 'f', 454, - 'i', 426, - 'l', 527, - 'm', 462, - 'r', 473, - 's', 568, - 't', 545, - 'u', 430, - 'w', 497, - '{', 249, - '|', 340, - '~', 335, + '<', 325, + '=', 267, + '>', 327, + '?', 364, + '@', 359, + 'B', 582, + '[', 271, + '^', 335, + '_', 404, + 'b', 425, + 'c', 428, + 'd', 478, + 'f', 459, + 'i', 431, + 'l', 533, + 'm', 468, + 'r', 479, + 's', 575, + 't', 552, + 'u', 435, + 'w', 503, + '{', 251, + '|', 342, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 4: ADVANCE_MAP( - '!', 267, - '%', 332, - '&', 336, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '!', 269, + '%', 334, + '&', 338, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - ';', 254, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - '[', 269, - ']', 270, - '^', 333, - 'a', 178, + ';', 256, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + '[', 271, + ']', 272, + '^', 335, + 'a', 180, 'e', 147, 'i', 157, - 'n', 163, - '{', 249, - '|', 340, - '}', 250, + 'n', 164, + '{', 251, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(390); + lookahead == '_') ADVANCE(394); END_STATE(); case 5: ADVANCE_MAP( - '!', 266, - '"', 402, - '#', 268, + '!', 268, + '"', 406, + '#', 270, '\'', 24, - '(', 290, - ')', 293, - '*', 288, - ',', 277, - '-', 328, + '(', 292, + ')', 295, + '*', 290, + ',', 279, + '-', 330, '/', 62, - '0', 388, - ':', 260, - ';', 254, - '<', 322, - '=', 263, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '_', 400, - 'b', 420, - 'c', 423, - 'd', 472, - 'f', 454, - 'i', 426, - 'l', 527, - 'm', 462, - 'r', 473, - 's', 568, - 't', 545, - 'u', 430, - 'w', 497, - '{', 249, - '~', 335, + '0', 392, + ':', 262, + ';', 256, + '<', 324, + '=', 265, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '_', 404, + 'b', 425, + 'c', 428, + 'd', 478, + 'f', 459, + 'i', 431, + 'l', 533, + 'm', 468, + 'r', 479, + 's', 575, + 't', 552, + 'u', 435, + 'w', 503, + '{', 251, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 6: ADVANCE_MAP( - '!', 266, - '"', 402, + '!', 268, + '"', 406, '\'', 24, - '(', 290, - '*', 288, - '-', 328, + '(', 292, + '*', 290, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 89, - '@', 357, - 'B', 575, - '[', 269, - '_', 400, - 'b', 420, - 'c', 423, - 'd', 472, - 'f', 454, - 'i', 426, - 'l', 485, - 'm', 462, - 'r', 473, - 's', 568, - 't', 545, - 'u', 430, - 'w', 497, - '{', 249, - '~', 335, + '@', 359, + 'B', 582, + '[', 271, + '_', 404, + 'b', 425, + 'c', 428, + 'd', 478, + 'f', 459, + 'i', 431, + 'l', 491, + 'm', 468, + 'r', 479, + 's', 575, + 't', 552, + 'u', 435, + 'w', 503, + '{', 251, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 7: ADVANCE_MAP( - '!', 266, - '"', 402, + '!', 268, + '"', 406, '\'', 24, - '(', 290, - '*', 288, - '-', 328, + '(', 292, + '*', 290, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 89, - '@', 357, - 'B', 575, - '[', 269, - '_', 400, - 'b', 420, - 'c', 423, - 'd', 472, - 'f', 454, - 'i', 426, - 'l', 527, - 'm', 461, - 'r', 473, - 's', 568, - 't', 545, - 'u', 430, - 'w', 497, - '{', 249, - '~', 335, + '@', 359, + 'B', 582, + '[', 271, + '_', 404, + 'b', 425, + 'c', 428, + 'd', 478, + 'f', 459, + 'i', 431, + 'l', 533, + 'm', 467, + 'r', 479, + 's', 575, + 't', 552, + 'u', 435, + 'w', 503, + '{', 251, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 8: ADVANCE_MAP( - '!', 266, - '(', 290, - ')', 293, - ',', 277, + '!', 268, + '(', 292, + ')', 295, + ',', 279, '-', 91, '/', 62, - ':', 260, - ';', 254, - '<', 415, - '=', 263, - '>', 324, - ']', 270, - 'i', 157, - 'n', 163, + ':', 262, + ';', 256, + '<', 419, + '=', 265, + '>', 326, + '[', 271, + ']', 272, + 'i', 158, + 'n', 164, 'o', 130, - '{', 249, - '|', 338, - '}', 250, + '{', 251, + '|', 340, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); END_STATE(); case 9: ADVANCE_MAP( - '!', 266, - '(', 290, - ',', 277, + '!', 268, + '(', 292, + ',', 279, '/', 62, ':', 89, - ';', 254, - '<', 415, + ';', 256, + '<', 419, '=', 92, - ']', 270, + ']', 272, 'i', 129, - '{', 249, - '|', 338, + '{', 251, + '|', 340, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); @@ -4371,640 +4406,640 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 10: ADVANCE_MAP( '!', 90, - '"', 407, - '#', 268, - '%', 332, - '&', 336, - '(', 290, - '*', 289, - '+', 327, - '-', 329, - '.', 359, - '/', 331, + '"', 411, + '#', 270, + '%', 334, + '&', 338, + '(', 292, + '*', 291, + '+', 329, + '-', 331, + '.', 361, + '/', 333, ':', 89, - ';', 254, - '<', 323, - '=', 265, - '>', 325, - '?', 362, - 'B', 575, - '[', 269, - '^', 333, - 'b', 525, - 'c', 531, - 'd', 472, - 'e', 520, - 'f', 488, - 'i', 427, - 'l', 486, - 'm', 526, - 'p', 566, - 's', 550, - 't', 544, - 'u', 429, - '|', 340, - '}', 250, + ';', 256, + '<', 325, + '=', 267, + '>', 327, + '?', 364, + 'B', 582, + '[', 271, + '^', 335, + 'b', 531, + 'c', 537, + 'd', 478, + 'e', 526, + 'f', 494, + 'i', 432, + 'l', 492, + 'm', 532, + 'p', 573, + 's', 565, + 't', 550, + 'u', 434, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 11: ADVANCE_MAP( '!', 90, - '"', 402, - '#', 268, - '%', 332, - '&', 336, + '"', 406, + '#', 270, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - 'B', 575, - '[', 269, - '^', 333, - '_', 292, - 'b', 421, - 'c', 424, - 'd', 472, - 'e', 514, - 'f', 454, - 'i', 428, - 'm', 571, - 's', 568, - 't', 545, - 'u', 430, - '|', 340, - '}', 250, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + 'B', 582, + '[', 271, + '^', 335, + '_', 294, + 'b', 426, + 'c', 429, + 'd', 478, + 'e', 520, + 'f', 460, + 'i', 433, + 'm', 579, + 's', 575, + 't', 552, + 'u', 435, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 12: ADVANCE_MAP( '!', 90, - '"', 402, - '#', 268, - '%', 332, - '&', 336, + '"', 406, + '#', 270, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - 'B', 575, - '[', 269, - '^', 333, - '_', 292, - 'b', 421, - 'c', 424, - 'd', 472, - 'f', 454, - 'i', 428, - 'm', 571, - 's', 568, - 't', 545, - 'u', 430, - '|', 340, - '}', 250, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + 'B', 582, + '[', 271, + '^', 335, + '_', 294, + 'b', 426, + 'c', 429, + 'd', 478, + 'f', 460, + 'i', 433, + 'm', 579, + 's', 575, + 't', 552, + 'u', 435, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 13: ADVANCE_MAP( '!', 90, - '#', 268, - '%', 332, - '&', 336, - '(', 290, - '*', 289, - '+', 327, - '-', 329, - '.', 359, - '/', 331, + '#', 270, + '%', 334, + '&', 338, + '(', 292, + '*', 291, + '+', 329, + '-', 331, + '.', 361, + '/', 333, ':', 89, - ';', 254, - '<', 323, - '=', 265, - '>', 325, - '?', 362, - 'B', 575, - '[', 269, - '^', 333, - 'b', 525, - 'c', 531, - 'd', 472, - 'e', 520, - 'f', 488, - 'i', 427, - 'l', 486, - 'm', 526, - 'p', 566, - 's', 550, - 't', 544, - 'u', 429, - '|', 340, - '}', 250, + ';', 256, + '<', 325, + '=', 267, + '>', 327, + '?', 364, + 'B', 582, + '[', 271, + '^', 335, + 'b', 531, + 'c', 537, + 'd', 478, + 'e', 526, + 'f', 494, + 'i', 432, + 'l', 492, + 'm', 532, + 'p', 573, + 's', 565, + 't', 550, + 'u', 434, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 14: ADVANCE_MAP( '!', 90, - '%', 332, - '&', 336, - '(', 290, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - ':', 259, - '<', 323, - '=', 265, - '>', 325, - '?', 362, - '[', 269, - '^', 333, + '%', 334, + '&', 338, + '(', 292, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + ':', 261, + '<', 325, + '=', 267, + '>', 327, + '?', 364, + '[', 271, + '^', 335, 'e', 147, - '|', 340, - '}', 250, + '|', 342, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14); END_STATE(); case 15: ADVANCE_MAP( - '"', 402, - '#', 268, + '"', 406, + '#', 270, '\'', 24, - '(', 290, - ')', 293, - ',', 277, - '-', 328, + '(', 292, + ')', 295, + ',', 279, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 89, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '_', 292, - 'b', 421, - 'c', 424, - 'd', 472, - 'f', 454, - 'i', 428, - 'm', 571, - 's', 568, - 't', 545, - 'u', 430, - '|', 338, - '}', 250, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '_', 294, + 'b', 426, + 'c', 429, + 'd', 478, + 'f', 460, + 'i', 433, + 'm', 579, + 's', 575, + 't', 552, + 'u', 435, + '|', 340, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 16: ADVANCE_MAP( - '"', 402, - '#', 268, + '"', 406, + '#', 270, '\'', 24, - '(', 290, - ')', 293, - ',', 277, - '-', 328, + '(', 292, + ')', 295, + ',', 279, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 89, - '@', 357, - 'B', 575, - '[', 269, - '_', 292, - 'b', 421, - 'c', 424, - 'd', 472, - 'f', 454, - 'i', 428, - 'm', 571, - 'r', 487, - 's', 568, - 't', 545, - 'u', 430, - '|', 338, + '@', 359, + 'B', 582, + '[', 271, + '_', 294, + 'b', 426, + 'c', 429, + 'd', 478, + 'f', 460, + 'i', 433, + 'm', 579, + 'r', 493, + 's', 575, + 't', 552, + 'u', 435, + '|', 340, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 17: ADVANCE_MAP( - '"', 402, + '"', 406, '\'', 24, - '(', 290, - '-', 328, + '(', 292, + '-', 330, '/', 62, - '0', 388, + '0', 392, ':', 89, - '>', 324, - '@', 357, - 'B', 575, - '[', 269, - '_', 400, - 'b', 421, - 'c', 424, - 'd', 472, - 'f', 454, - 'i', 428, - 's', 568, - 't', 545, - 'u', 430, - '{', 249, + '>', 326, + '@', 359, + 'B', 582, + '[', 271, + '_', 404, + 'b', 426, + 'c', 429, + 'd', 478, + 'f', 460, + 'i', 433, + 's', 575, + 't', 552, + 'u', 435, + '{', 251, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(158); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(159); if (lookahead == 'r') ADVANCE(102); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(164); - if (lookahead == 'r') ADVANCE(125); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(165); + if (lookahead == 'r') ADVANCE(124); END_STATE(); case 20: ADVANCE_MAP( - '#', 268, - '+', 326, - '-', 328, + '#', 270, + '+', 328, + '-', 330, '/', 62, ':', 89, - '>', 324, - 'B', 575, - 'b', 525, - 'c', 531, - 'd', 472, - 'f', 489, - 'i', 427, - 's', 568, - 'u', 430, + '>', 326, + 'B', 582, + 'b', 531, + 'c', 537, + 'd', 478, + 'f', 495, + 'i', 432, + 's', 575, + 'u', 435, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 21: - if (lookahead == '#') ADVANCE(268); - if (lookahead == ',') ADVANCE(277); + if (lookahead == '#') ADVANCE(270); + if (lookahead == ',') ADVANCE(279); if (lookahead == '.') ADVANCE(61); if (lookahead == '/') ADVANCE(62); - if (lookahead == '0') ADVANCE(388); - if (lookahead == '_') ADVANCE(400); - if (lookahead == '}') ADVANCE(250); + if (lookahead == '0') ADVANCE(392); + if (lookahead == '_') ADVANCE(404); + if (lookahead == '}') ADVANCE(252); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 22: - if (lookahead == '#') ADVANCE(268); - if (lookahead == ',') ADVANCE(277); + if (lookahead == '#') ADVANCE(270); + if (lookahead == ',') ADVANCE(279); if (lookahead == '/') ADVANCE(62); - if (lookahead == 'p') ADVANCE(566); - if (lookahead == '}') ADVANCE(250); + if (lookahead == 'p') ADVANCE(573); + if (lookahead == '}') ADVANCE(252); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 23: - if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\'') ADVANCE(413); END_STATE(); case 24: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(243); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(245); if (lookahead != 0) ADVANCE(54); END_STATE(); case 25: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(214); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(216); if (lookahead != 0) ADVANCE(26); END_STATE(); case 26: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(212); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(214); if (lookahead != 0) ADVANCE(23); END_STATE(); case 27: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(215); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(217); if (lookahead != 0) ADVANCE(25); END_STATE(); case 28: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(216); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(218); if (lookahead != 0) ADVANCE(27); END_STATE(); case 29: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(217); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(219); if (lookahead != 0) ADVANCE(28); END_STATE(); case 30: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(218); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(220); if (lookahead != 0) ADVANCE(29); END_STATE(); case 31: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(219); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(221); if (lookahead != 0) ADVANCE(30); END_STATE(); case 32: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(220); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(222); if (lookahead != 0) ADVANCE(31); END_STATE(); case 33: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(221); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(223); if (lookahead != 0) ADVANCE(32); END_STATE(); case 34: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(222); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(224); if (lookahead != 0) ADVANCE(33); END_STATE(); case 35: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(223); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(225); if (lookahead != 0) ADVANCE(34); END_STATE(); case 36: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(224); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(226); if (lookahead != 0) ADVANCE(35); END_STATE(); case 37: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(225); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(227); if (lookahead != 0) ADVANCE(36); END_STATE(); case 38: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(226); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(228); if (lookahead != 0) ADVANCE(37); END_STATE(); case 39: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(227); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(229); if (lookahead != 0) ADVANCE(38); END_STATE(); case 40: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(228); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(230); if (lookahead != 0) ADVANCE(39); END_STATE(); case 41: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(229); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(231); if (lookahead != 0) ADVANCE(40); END_STATE(); case 42: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(230); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(232); if (lookahead != 0) ADVANCE(41); END_STATE(); case 43: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(231); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(233); if (lookahead != 0) ADVANCE(42); END_STATE(); case 44: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(232); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(234); if (lookahead != 0) ADVANCE(43); END_STATE(); case 45: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(233); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(235); if (lookahead != 0) ADVANCE(44); END_STATE(); case 46: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(234); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(236); if (lookahead != 0) ADVANCE(45); END_STATE(); case 47: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(235); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(237); if (lookahead != 0) ADVANCE(46); END_STATE(); case 48: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(236); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(238); if (lookahead != 0) ADVANCE(47); END_STATE(); case 49: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(237); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(239); if (lookahead != 0) ADVANCE(48); END_STATE(); case 50: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(238); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(240); if (lookahead != 0) ADVANCE(49); END_STATE(); case 51: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(239); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(241); if (lookahead != 0) ADVANCE(50); END_STATE(); case 52: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(240); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(242); if (lookahead != 0) ADVANCE(51); END_STATE(); case 53: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(241); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(243); if (lookahead != 0) ADVANCE(52); END_STATE(); case 54: - if (lookahead == '\'') ADVANCE(409); - if (lookahead == '\\') ADVANCE(242); + if (lookahead == '\'') ADVANCE(413); + if (lookahead == '\\') ADVANCE(244); if (lookahead != 0) ADVANCE(53); END_STATE(); case 55: ADVANCE_MAP( - '(', 290, - ')', 293, - '*', 288, - ',', 277, + '(', 292, + ')', 295, + '*', 290, + ',', 279, '/', 62, ':', 89, - '@', 357, - 'B', 575, - '[', 269, - 'b', 525, - 'd', 472, - 'f', 489, - 'i', 428, - 's', 568, - 'u', 430, - '{', 249, - '}', 250, + '@', 359, + 'B', 582, + '[', 271, + 'b', 531, + 'd', 478, + 'f', 495, + 'i', 433, + 's', 575, + 'u', 435, + '{', 251, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(55); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 56: ADVANCE_MAP( - '(', 290, + '(', 292, '/', 62, ':', 89, - ';', 254, - '@', 357, - 'B', 575, - '[', 269, - 'b', 525, - 'd', 472, - 'f', 489, - 'i', 428, - 'n', 530, - 's', 568, - 'u', 430, - '{', 249, + ';', 256, + '@', 359, + 'B', 582, + '[', 271, + 'b', 531, + 'd', 478, + 'f', 495, + 'i', 433, + 'n', 536, + 's', 575, + 'u', 435, + '{', 251, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 57: - if (lookahead == '(') ADVANCE(290); + if (lookahead == '(') ADVANCE(292); if (lookahead == '/') ADVANCE(62); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(57); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 58: ADVANCE_MAP( - ')', 293, - ',', 277, + ')', 295, + ',', 279, '/', 62, - ':', 259, - ';', 254, - '<', 322, - '=', 263, - '>', 324, - ']', 270, - 'i', 157, - 'n', 163, + ':', 261, + ';', 256, + '<', 324, + '=', 265, + '>', 326, + ']', 272, + 'i', 158, + 'n', 164, 'o', 130, - '{', 249, - '|', 338, - '}', 250, + '{', 251, + '|', 340, + '}', 252, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58); END_STATE(); case 59: - if (lookahead == '*') ADVANCE(288); + if (lookahead == '*') ADVANCE(290); if (lookahead == '/') ADVANCE(62); - if (lookahead == '<') ADVANCE(415); - if (lookahead == 's') ADVANCE(568); - if (lookahead == '{') ADVANCE(249); + if (lookahead == '<') ADVANCE(419); + if (lookahead == 's') ADVANCE(575); + if (lookahead == '{') ADVANCE(251); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(59); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 60: - if (lookahead == ',') ADVANCE(277); + if (lookahead == ',') ADVANCE(279); if (lookahead == '/') ADVANCE(62); - if (lookahead == 'm') ADVANCE(571); - if (lookahead == '}') ADVANCE(250); + if (lookahead == 'm') ADVANCE(579); + if (lookahead == '}') ADVANCE(252); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(60); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 61: - if (lookahead == '.') ADVANCE(358); + if (lookahead == '.') ADVANCE(360); END_STATE(); case 62: - if (lookahead == '/') ADVANCE(586); + if (lookahead == '/') ADVANCE(592); END_STATE(); case 63: if (lookahead == '1') ADVANCE(67); if (lookahead == '3') ADVANCE(68); if (lookahead == '6') ADVANCE(78); - if (lookahead == '8') ADVANCE(296); - if (lookahead == 'f') ADVANCE(369); - if (lookahead == 'm') ADVANCE(168); - if (lookahead == 'n') ADVANCE(580); + if (lookahead == '8') ADVANCE(298); + if (lookahead == 'f') ADVANCE(371); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(422); END_STATE(); case 64: if (lookahead == '1') ADVANCE(73); if (lookahead == '3') ADVANCE(69); if (lookahead == '6') ADVANCE(79); - if (lookahead == '8') ADVANCE(294); + if (lookahead == '8') ADVANCE(296); if (lookahead == 's') ADVANCE(111); END_STATE(); case 65: @@ -5012,44 +5047,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '2') ADVANCE(81); if (lookahead == '3') ADVANCE(70); if (lookahead == '6') ADVANCE(80); - if (lookahead == '8') ADVANCE(387); + if (lookahead == '8') ADVANCE(391); if (lookahead == 's') ADVANCE(143); END_STATE(); case 66: if (lookahead == '1') ADVANCE(75); if (lookahead == '3') ADVANCE(70); if (lookahead == '6') ADVANCE(80); - if (lookahead == '8') ADVANCE(387); + if (lookahead == '8') ADVANCE(391); END_STATE(); case 67: if (lookahead == '2') ADVANCE(87); - if (lookahead == '6') ADVANCE(300); + if (lookahead == '6') ADVANCE(302); END_STATE(); case 68: - if (lookahead == '2') ADVANCE(304); + if (lookahead == '2') ADVANCE(306); END_STATE(); case 69: - if (lookahead == '2') ADVANCE(302); + if (lookahead == '2') ADVANCE(304); END_STATE(); case 70: - if (lookahead == '2') ADVANCE(387); + if (lookahead == '2') ADVANCE(391); END_STATE(); case 71: - if (lookahead == '2') ADVANCE(320); + if (lookahead == '2') ADVANCE(322); END_STATE(); case 72: - if (lookahead == '2') ADVANCE(408); + if (lookahead == '2') ADVANCE(412); END_STATE(); case 73: if (lookahead == '2') ADVANCE(88); - if (lookahead == '6') ADVANCE(298); + if (lookahead == '6') ADVANCE(300); END_STATE(); case 74: if (lookahead == '2') ADVANCE(83); END_STATE(); case 75: if (lookahead == '2') ADVANCE(86); - if (lookahead == '6') ADVANCE(387); + if (lookahead == '6') ADVANCE(391); END_STATE(); case 76: if (lookahead == '2') ADVANCE(82); @@ -5058,13 +5093,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '2') ADVANCE(84); END_STATE(); case 78: - if (lookahead == '4') ADVANCE(308); + if (lookahead == '4') ADVANCE(310); END_STATE(); case 79: - if (lookahead == '4') ADVANCE(306); + if (lookahead == '4') ADVANCE(308); END_STATE(); case 80: - if (lookahead == '4') ADVANCE(387); + if (lookahead == '4') ADVANCE(391); END_STATE(); case 81: if (lookahead == '5') ADVANCE(85); @@ -5079,138 +5114,139 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '5') ADVANCE(72); END_STATE(); case 85: - if (lookahead == '6') ADVANCE(387); + if (lookahead == '6') ADVANCE(391); END_STATE(); case 86: - if (lookahead == '8') ADVANCE(387); + if (lookahead == '8') ADVANCE(391); END_STATE(); case 87: - if (lookahead == '8') ADVANCE(312); + if (lookahead == '8') ADVANCE(314); END_STATE(); case 88: - if (lookahead == '8') ADVANCE(310); + if (lookahead == '8') ADVANCE(312); END_STATE(); case 89: - if (lookahead == ':') ADVANCE(286); + if (lookahead == ':') ADVANCE(288); END_STATE(); case 90: - if (lookahead == '=') ADVANCE(354); + if (lookahead == '=') ADVANCE(356); END_STATE(); case 91: - if (lookahead == '>') ADVANCE(280); + if (lookahead == '>') ADVANCE(282); END_STATE(); case 92: - if (lookahead == '>') ADVANCE(361); + if (lookahead == '>') ADVANCE(363); END_STATE(); case 93: - if (lookahead == 'A') ADVANCE(175); + if (lookahead == 'A') ADVANCE(179); END_STATE(); case 94: if (lookahead == 'a') ADVANCE(153); if (lookahead == 'e') ADVANCE(149); - if (lookahead == 'n') ADVANCE(278); + if (lookahead == 'n') ADVANCE(280); + if (lookahead == 'o') ADVANCE(174); END_STATE(); case 95: if (lookahead == 'a') ADVANCE(144); END_STATE(); case 96: - if (lookahead == 'a') ADVANCE(206); + if (lookahead == 'a') ADVANCE(208); END_STATE(); case 97: - if (lookahead == 'a') ADVANCE(162); + if (lookahead == 'a') ADVANCE(163); END_STATE(); case 98: if (lookahead == 'a') ADVANCE(141); - if (lookahead == 'u') ADVANCE(116); + if (lookahead == 'u') ADVANCE(115); END_STATE(); case 99: - if (lookahead == 'a') ADVANCE(185); + if (lookahead == 'a') ADVANCE(187); if (lookahead == 'o') ADVANCE(109); - if (lookahead == 'u') ADVANCE(186); + if (lookahead == 'u') ADVANCE(188); END_STATE(); case 100: - if (lookahead == 'a') ADVANCE(204); + if (lookahead == 'a') ADVANCE(205); END_STATE(); case 101: - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'r') ADVANCE(201); + if (lookahead == 'a') ADVANCE(196); + if (lookahead == 'r') ADVANCE(203); END_STATE(); case 102: - if (lookahead == 'a') ADVANCE(196); + if (lookahead == 'a') ADVANCE(198); END_STATE(); case 103: - if (lookahead == 'b') ADVANCE(379); + if (lookahead == 'b') ADVANCE(381); END_STATE(); case 104: - if (lookahead == 'c') ADVANCE(383); + if (lookahead == 'c') ADVANCE(385); END_STATE(); case 105: - if (lookahead == 'c') ADVANCE(373); + if (lookahead == 'c') ADVANCE(375); END_STATE(); case 106: if (lookahead == 'c') ADVANCE(135); END_STATE(); case 107: - if (lookahead == 'c') ADVANCE(189); + if (lookahead == 'c') ADVANCE(191); END_STATE(); case 108: if (lookahead == 'c') ADVANCE(142); END_STATE(); case 109: - if (lookahead == 'd') ADVANCE(271); + if (lookahead == 'd') ADVANCE(273); END_STATE(); case 110: if (lookahead == 'e') ADVANCE(131); END_STATE(); case 111: - if (lookahead == 'e') ADVANCE(284); - if (lookahead == 'i') ADVANCE(207); + if (lookahead == 'e') ADVANCE(286); + if (lookahead == 'i') ADVANCE(209); END_STATE(); case 112: - if (lookahead == 'e') ADVANCE(387); + if (lookahead == 'e') ADVANCE(391); END_STATE(); case 113: if (lookahead == 'e') ADVANCE(93); END_STATE(); case 114: - if (lookahead == 'e') ADVANCE(416); + if (lookahead == 'e') ADVANCE(420); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'e') ADVANCE(414); END_STATE(); case 116: - if (lookahead == 'e') ADVANCE(410); + if (lookahead == 'e') ADVANCE(259); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(257); + if (lookahead == 'e') ADVANCE(591); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(585); + if (lookahead == 'e') ADVANCE(416); END_STATE(); case 119: - if (lookahead == 'e') ADVANCE(412); + if (lookahead == 'e') ADVANCE(316); END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(314); + if (lookahead == 'e') ADVANCE(387); END_STATE(); case 121: - if (lookahead == 'e') ADVANCE(385); + if (lookahead == 'e') ADVANCE(367); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(365); + if (lookahead == 'e') ADVANCE(132); END_STATE(); case 123: - if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'o') ADVANCE(166); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(184); - if (lookahead == 'o') ADVANCE(165); + if (lookahead == 'e') ADVANCE(95); END_STATE(); case 125: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 126: - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'e') ADVANCE(175); END_STATE(); case 127: if (lookahead == 'e') ADVANCE(154); @@ -5219,14 +5255,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(155); END_STATE(); case 129: - if (lookahead == 'f') ADVANCE(369); + if (lookahead == 'f') ADVANCE(371); END_STATE(); case 130: - if (lookahead == 'f') ADVANCE(253); + if (lookahead == 'f') ADVANCE(255); END_STATE(); case 131: - if (lookahead == 'f') ADVANCE(418); - if (lookahead == 't') ADVANCE(203); + if (lookahead == 'f') ADVANCE(423); + if (lookahead == 't') ADVANCE(206); END_STATE(); case 132: if (lookahead == 'f') ADVANCE(100); @@ -5238,10 +5274,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'h') ADVANCE(139); END_STATE(); case 135: - if (lookahead == 'h') ADVANCE(377); + if (lookahead == 'h') ADVANCE(379); END_STATE(); case 136: - if (lookahead == 'i') ADVANCE(161); + if (lookahead == 'i') ADVANCE(162); END_STATE(); case 137: if (lookahead == 'i') ADVANCE(104); @@ -5256,2734 +5292,2770 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(108); END_STATE(); case 141: - if (lookahead == 'i') ADVANCE(188); + if (lookahead == 'i') ADVANCE(190); END_STATE(); case 142: - if (lookahead == 'i') ADVANCE(191); + if (lookahead == 'i') ADVANCE(193); END_STATE(); case 143: - if (lookahead == 'i') ADVANCE(208); + if (lookahead == 'i') ADVANCE(210); END_STATE(); case 144: - if (lookahead == 'k') ADVANCE(363); + if (lookahead == 'k') ADVANCE(365); END_STATE(); case 145: - if (lookahead == 'l') ADVANCE(316); + if (lookahead == 'l') ADVANCE(318); END_STATE(); case 146: - if (lookahead == 'l') ADVANCE(251); + if (lookahead == 'l') ADVANCE(253); END_STATE(); case 147: - if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'l') ADVANCE(182); END_STATE(); case 148: - if (lookahead == 'l') ADVANCE(180); - if (lookahead == 'n') ADVANCE(200); - if (lookahead == 'x') ADVANCE(195); + if (lookahead == 'l') ADVANCE(182); + if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'x') ADVANCE(197); END_STATE(); case 149: - if (lookahead == 'l') ADVANCE(192); + if (lookahead == 'l') ADVANCE(194); END_STATE(); case 150: if (lookahead == 'l') ADVANCE(140); END_STATE(); case 151: - if (lookahead == 'l') ADVANCE(190); + if (lookahead == 'l') ADVANCE(192); END_STATE(); case 152: - if (lookahead == 'l') ADVANCE(121); + if (lookahead == 'l') ADVANCE(120); END_STATE(); case 153: - if (lookahead == 'l') ADVANCE(182); + if (lookahead == 'l') ADVANCE(184); END_STATE(); case 154: - if (lookahead == 'l') ADVANCE(197); + if (lookahead == 'l') ADVANCE(199); END_STATE(); case 155: - if (lookahead == 'l') ADVANCE(198); + if (lookahead == 'l') ADVANCE(200); END_STATE(); case 156: - if (lookahead == 'm') ADVANCE(275); + if (lookahead == 'm') ADVANCE(277); END_STATE(); case 157: - if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'm') ADVANCE(170); END_STATE(); case 158: - if (lookahead == 'n') ADVANCE(181); + if (lookahead == 'm') ADVANCE(170); + if (lookahead == 'n') ADVANCE(422); END_STATE(); case 159: - if (lookahead == 'n') ADVANCE(371); + if (lookahead == 'n') ADVANCE(183); END_STATE(); case 160: - if (lookahead == 'n') ADVANCE(381); + if (lookahead == 'n') ADVANCE(373); END_STATE(); case 161: - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'n') ADVANCE(383); END_STATE(); case 162: - if (lookahead == 'n') ADVANCE(138); + if (lookahead == 'n') ADVANCE(204); END_STATE(); case 163: - if (lookahead == 'o') ADVANCE(167); + if (lookahead == 'n') ADVANCE(138); END_STATE(); case 164: - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'o') ADVANCE(168); END_STATE(); case 165: - if (lookahead == 'o') ADVANCE(166); + if (lookahead == 'o') ADVANCE(145); END_STATE(); case 166: - if (lookahead == 'p') ADVANCE(375); + if (lookahead == 'o') ADVANCE(167); END_STATE(); case 167: - if (lookahead == 'p') ADVANCE(97); + if (lookahead == 'p') ADVANCE(377); END_STATE(); case 168: - if (lookahead == 'p') ADVANCE(146); + if (lookahead == 'p') ADVANCE(97); END_STATE(); case 169: - if (lookahead == 'p') ADVANCE(150); + if (lookahead == 'p') ADVANCE(146); END_STATE(); case 170: - if (lookahead == 'p') ADVANCE(126); + if (lookahead == 'p') ADVANCE(150); END_STATE(); case 171: - if (lookahead == 'p') ADVANCE(117); + if (lookahead == 'p') ADVANCE(126); END_STATE(); case 172: - if (lookahead == 'r') ADVANCE(98); - if (lookahead == 'y') ADVANCE(171); + if (lookahead == 'p') ADVANCE(116); END_STATE(); case 173: - if (lookahead == 'r') ADVANCE(583); + if (lookahead == 'r') ADVANCE(98); + if (lookahead == 'y') ADVANCE(172); END_STATE(); case 174: - if (lookahead == 'r') ADVANCE(159); + if (lookahead == 'r') ADVANCE(389); END_STATE(); case 175: - if (lookahead == 'r') ADVANCE(177); + if (lookahead == 'r') ADVANCE(589); END_STATE(); case 176: if (lookahead == 'r') ADVANCE(160); END_STATE(); case 177: - if (lookahead == 'r') ADVANCE(96); + if (lookahead == 'r') ADVANCE(161); END_STATE(); case 178: - if (lookahead == 's') ADVANCE(287); + if (lookahead == 'r') ADVANCE(96); END_STATE(); case 179: - if (lookahead == 's') ADVANCE(281); + if (lookahead == 'r') ADVANCE(178); END_STATE(); case 180: - if (lookahead == 's') ADVANCE(114); + if (lookahead == 's') ADVANCE(289); END_STATE(); case 181: - if (lookahead == 's') ADVANCE(187); - if (lookahead == 't') ADVANCE(136); + if (lookahead == 's') ADVANCE(283); END_STATE(); case 182: - if (lookahead == 's') ADVANCE(119); + if (lookahead == 's') ADVANCE(114); END_STATE(); case 183: - if (lookahead == 't') ADVANCE(101); - if (lookahead == 'u') ADVANCE(170); + if (lookahead == 's') ADVANCE(189); + if (lookahead == 't') ADVANCE(136); END_STATE(); case 184: - if (lookahead == 't') ADVANCE(282); + if (lookahead == 's') ADVANCE(118); END_STATE(); case 185: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 't') ADVANCE(101); + if (lookahead == 'u') ADVANCE(171); END_STATE(); case 186: - if (lookahead == 't') ADVANCE(581); + if (lookahead == 't') ADVANCE(284); END_STATE(); case 187: - if (lookahead == 't') ADVANCE(261); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 188: - if (lookahead == 't') ADVANCE(255); + if (lookahead == 't') ADVANCE(587); END_STATE(); case 189: - if (lookahead == 't') ADVANCE(273); + if (lookahead == 't') ADVANCE(263); END_STATE(); case 190: - if (lookahead == 't') ADVANCE(367); + if (lookahead == 't') ADVANCE(257); END_STATE(); case 191: - if (lookahead == 't') ADVANCE(179); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 192: - if (lookahead == 't') ADVANCE(74); + if (lookahead == 't') ADVANCE(369); END_STATE(); case 193: - if (lookahead == 't') ADVANCE(113); + if (lookahead == 't') ADVANCE(181); END_STATE(); case 194: - if (lookahead == 't') ADVANCE(137); + if (lookahead == 't') ADVANCE(74); END_STATE(); case 195: - if (lookahead == 't') ADVANCE(115); + if (lookahead == 't') ADVANCE(113); END_STATE(); case 196: - if (lookahead == 't') ADVANCE(118); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 197: - if (lookahead == 't') ADVANCE(76); + if (lookahead == 't') ADVANCE(125); END_STATE(); case 198: - if (lookahead == 't') ADVANCE(77); + if (lookahead == 't') ADVANCE(117); END_STATE(); case 199: - if (lookahead == 'u') ADVANCE(103); + if (lookahead == 't') ADVANCE(76); END_STATE(); case 200: - if (lookahead == 'u') ADVANCE(156); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 201: - if (lookahead == 'u') ADVANCE(107); + if (lookahead == 'u') ADVANCE(103); END_STATE(); case 202: - if (lookahead == 'u') ADVANCE(122); + if (lookahead == 'u') ADVANCE(156); END_STATE(); case 203: - if (lookahead == 'u') ADVANCE(176); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 204: - if (lookahead == 'u') ADVANCE(151); + if (lookahead == 'u') ADVANCE(121); END_STATE(); case 205: - if (lookahead == 'y') ADVANCE(193); + if (lookahead == 'u') ADVANCE(151); END_STATE(); case 206: - if (lookahead == 'y') ADVANCE(318); + if (lookahead == 'u') ADVANCE(177); END_STATE(); case 207: - if (lookahead == 'z') ADVANCE(120); + if (lookahead == 'y') ADVANCE(195); END_STATE(); case 208: - if (lookahead == 'z') ADVANCE(112); + if (lookahead == 'y') ADVANCE(320); END_STATE(); case 209: + if (lookahead == 'z') ADVANCE(119); + END_STATE(); + case 210: + if (lookahead == 'z') ADVANCE(112); + END_STATE(); + case 211: if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(392); + lookahead == '_') ADVANCE(396); END_STATE(); - case 210: + case 212: if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(394); + lookahead == '_') ADVANCE(398); END_STATE(); - case 211: + case 213: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 212: + case 214: if (lookahead != 0 && lookahead != '\n') ADVANCE(23); END_STATE(); - case 213: + case 215: if (lookahead != 0 && - lookahead != '\n') ADVANCE(406); + lookahead != '\n') ADVANCE(410); END_STATE(); - case 214: + case 216: if (lookahead != 0 && lookahead != '\n') ADVANCE(26); END_STATE(); - case 215: + case 217: if (lookahead != 0 && lookahead != '\n') ADVANCE(25); END_STATE(); - case 216: + case 218: if (lookahead != 0 && lookahead != '\n') ADVANCE(27); END_STATE(); - case 217: + case 219: if (lookahead != 0 && lookahead != '\n') ADVANCE(28); END_STATE(); - case 218: + case 220: if (lookahead != 0 && lookahead != '\n') ADVANCE(29); END_STATE(); - case 219: + case 221: if (lookahead != 0 && lookahead != '\n') ADVANCE(30); END_STATE(); - case 220: + case 222: if (lookahead != 0 && lookahead != '\n') ADVANCE(31); END_STATE(); - case 221: + case 223: if (lookahead != 0 && lookahead != '\n') ADVANCE(32); END_STATE(); - case 222: + case 224: if (lookahead != 0 && lookahead != '\n') ADVANCE(33); END_STATE(); - case 223: + case 225: if (lookahead != 0 && lookahead != '\n') ADVANCE(34); END_STATE(); - case 224: + case 226: if (lookahead != 0 && lookahead != '\n') ADVANCE(35); END_STATE(); - case 225: + case 227: if (lookahead != 0 && lookahead != '\n') ADVANCE(36); END_STATE(); - case 226: + case 228: if (lookahead != 0 && lookahead != '\n') ADVANCE(37); END_STATE(); - case 227: + case 229: if (lookahead != 0 && lookahead != '\n') ADVANCE(38); END_STATE(); - case 228: + case 230: if (lookahead != 0 && lookahead != '\n') ADVANCE(39); END_STATE(); - case 229: + case 231: if (lookahead != 0 && lookahead != '\n') ADVANCE(40); END_STATE(); - case 230: + case 232: if (lookahead != 0 && lookahead != '\n') ADVANCE(41); END_STATE(); - case 231: + case 233: if (lookahead != 0 && lookahead != '\n') ADVANCE(42); END_STATE(); - case 232: + case 234: if (lookahead != 0 && lookahead != '\n') ADVANCE(43); END_STATE(); - case 233: + case 235: if (lookahead != 0 && lookahead != '\n') ADVANCE(44); END_STATE(); - case 234: + case 236: if (lookahead != 0 && lookahead != '\n') ADVANCE(45); END_STATE(); - case 235: + case 237: if (lookahead != 0 && lookahead != '\n') ADVANCE(46); END_STATE(); - case 236: + case 238: if (lookahead != 0 && lookahead != '\n') ADVANCE(47); END_STATE(); - case 237: + case 239: if (lookahead != 0 && lookahead != '\n') ADVANCE(48); END_STATE(); - case 238: + case 240: if (lookahead != 0 && lookahead != '\n') ADVANCE(49); END_STATE(); - case 239: + case 241: if (lookahead != 0 && lookahead != '\n') ADVANCE(50); END_STATE(); - case 240: + case 242: if (lookahead != 0 && lookahead != '\n') ADVANCE(51); END_STATE(); - case 241: + case 243: if (lookahead != 0 && lookahead != '\n') ADVANCE(52); END_STATE(); - case 242: + case 244: if (lookahead != 0 && lookahead != '\n') ADVANCE(53); END_STATE(); - case 243: + case 245: if (lookahead != 0 && lookahead != '\n') ADVANCE(54); END_STATE(); - case 244: - if (eof) ADVANCE(248); + case 246: + if (eof) ADVANCE(250); ADVANCE_MAP( - '!', 267, - '"', 402, - '#', 268, - '$', 414, - '%', 332, - '&', 337, + '!', 269, + '"', 406, + '#', 270, + '$', 418, + '%', 334, + '&', 339, '\'', 24, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 330, - '.', 360, - '/', 331, - '0', 388, - ':', 260, - ';', 254, - '<', 415, - '=', 265, - '>', 325, - '?', 362, - '@', 357, - 'B', 205, - '[', 269, - ']', 270, - '^', 334, - '_', 291, - 'a', 178, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 332, + '.', 362, + '/', 333, + '0', 392, + ':', 262, + ';', 256, + '<', 419, + '=', 267, + '>', 327, + '?', 364, + '@', 359, + 'B', 207, + '[', 271, + ']', 272, + '^', 336, + '_', 293, + 'a', 180, 'b', 19, 'c', 18, - 'd', 123, + 'd', 122, 'e', 148, 'f', 94, 'i', 63, - 'l', 124, + 'l', 123, 'm', 99, - 'n', 163, + 'n', 164, 'o', 130, - 'p', 199, + 'p', 201, 'r', 110, - 's', 183, - 't', 172, + 's', 185, + 't', 173, 'u', 64, 'w', 134, - '{', 249, - '|', 339, - '}', 250, - '~', 335, + '{', 251, + '|', 341, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(244); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + lookahead == ' ') SKIP(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 245: - if (eof) ADVANCE(248); + case 247: + if (eof) ADVANCE(250); ADVANCE_MAP( - '!', 267, - '"', 402, - '#', 268, - '%', 332, - '&', 336, + '!', 269, + '"', 406, + '#', 270, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - ')', 293, - '*', 289, - '+', 327, - ',', 277, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + ')', 295, + '*', 291, + '+', 329, + ',', 279, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - ';', 254, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '^', 333, - '_', 400, - 'b', 420, - 'c', 422, - 'd', 472, - 'e', 520, - 'f', 453, - 'i', 425, - 'l', 485, - 'm', 460, - 'p', 566, - 'r', 473, - 's', 550, - 't', 537, - 'u', 429, - 'w', 497, - '{', 249, - '|', 340, - '}', 250, - '~', 335, + ';', 256, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '^', 335, + '_', 404, + 'b', 425, + 'c', 427, + 'd', 478, + 'e', 526, + 'f', 458, + 'i', 430, + 'l', 491, + 'm', 466, + 'p', 573, + 'r', 479, + 's', 565, + 't', 543, + 'u', 434, + 'w', 503, + '{', 251, + '|', 342, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(245); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + lookahead == ' ') SKIP(247); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 246: - if (eof) ADVANCE(248); + case 248: + if (eof) ADVANCE(250); ADVANCE_MAP( - '!', 267, - '"', 402, - '#', 268, - '%', 332, - '&', 336, + '!', 269, + '"', 406, + '#', 270, + '%', 334, + '&', 338, '\'', 24, - '(', 290, - '*', 289, - '+', 327, - '-', 329, - '.', 359, - '/', 331, - '0', 388, + '(', 292, + '*', 291, + '+', 329, + '-', 331, + '.', 361, + '/', 333, + '0', 392, ':', 89, - ';', 254, - '<', 323, - '=', 264, - '>', 325, - '?', 362, - '@', 357, - 'B', 575, - '[', 269, - '^', 333, - '_', 400, - 'b', 420, - 'c', 422, - 'd', 472, - 'e', 513, - 'f', 453, - 'i', 425, - 'l', 485, - 'm', 460, - 'p', 566, - 'r', 473, - 's', 550, - 't', 537, - 'u', 429, - 'w', 497, - '{', 249, - '|', 340, - '}', 250, - '~', 335, + ';', 256, + '<', 325, + '=', 266, + '>', 327, + '?', 364, + '@', 359, + 'B', 582, + '[', 271, + '^', 335, + '_', 404, + 'b', 425, + 'c', 427, + 'd', 478, + 'e', 519, + 'f', 458, + 'i', 430, + 'l', 491, + 'm', 466, + 'p', 573, + 'r', 479, + 's', 565, + 't', 543, + 'u', 434, + 'w', 503, + '{', 251, + '|', 342, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(246); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + lookahead == ' ') SKIP(248); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 247: - if (eof) ADVANCE(248); + case 249: + if (eof) ADVANCE(250); ADVANCE_MAP( - '!', 266, - '"', 402, - '#', 268, + '!', 268, + '"', 406, + '#', 270, '\'', 24, - '(', 290, - ')', 293, - '*', 288, - ',', 277, - '-', 328, + '(', 292, + ')', 295, + '*', 290, + ',', 279, + '-', 330, '/', 62, - '0', 388, - ':', 260, - ';', 254, - '<', 415, - '=', 263, - '>', 324, - '@', 357, - 'B', 575, - '[', 269, - ']', 270, - '_', 400, - 'b', 420, - 'c', 422, - 'd', 472, - 'e', 520, - 'f', 453, - 'i', 425, - 'l', 485, - 'm', 460, - 'p', 566, - 'r', 473, - 's', 550, - 't', 537, - 'u', 429, - 'w', 497, - '{', 249, - '|', 338, - '}', 250, - '~', 335, + '0', 392, + ':', 262, + ';', 256, + '<', 419, + '=', 265, + '>', 326, + '@', 359, + 'B', 582, + '[', 271, + ']', 272, + '_', 404, + 'b', 425, + 'c', 427, + 'd', 478, + 'e', 526, + 'f', 458, + 'i', 430, + 'l', 491, + 'm', 466, + 'p', 573, + 'r', 479, + 's', 565, + 't', 543, + 'u', 434, + 'w', 503, + '{', 251, + '|', 340, + '}', 252, + '~', 337, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(390); + lookahead == ' ') SKIP(249); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 248: + case 250: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 249: + case 251: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 250: + case 252: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 251: + case 253: ACCEPT_TOKEN(anon_sym_impl); END_STATE(); - case 252: + case 254: ACCEPT_TOKEN(anon_sym_impl); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 253: + case 255: ACCEPT_TOKEN(anon_sym_of); END_STATE(); - case 254: + case 256: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 255: + case 257: ACCEPT_TOKEN(anon_sym_trait); END_STATE(); - case 256: + case 258: ACCEPT_TOKEN(anon_sym_trait); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 257: + case 259: ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 258: + case 260: ACCEPT_TOKEN(anon_sym_type); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 259: + case 261: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 260: + case 262: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(286); + if (lookahead == ':') ADVANCE(288); END_STATE(); - case 261: + case 263: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 262: + case 264: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 263: + case 265: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 264: + case 266: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(353); + if (lookahead == '=') ADVANCE(355); END_STATE(); - case 265: + case 267: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(353); - if (lookahead == '>') ADVANCE(361); + if (lookahead == '=') ADVANCE(355); + if (lookahead == '>') ADVANCE(363); END_STATE(); - case 266: + case 268: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 267: + case 269: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(354); + if (lookahead == '=') ADVANCE(356); END_STATE(); - case 268: + case 270: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 269: + case 271: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 270: + case 272: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 271: + case 273: ACCEPT_TOKEN(anon_sym_mod); END_STATE(); - case 272: + case 274: ACCEPT_TOKEN(anon_sym_mod); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 273: + case 275: ACCEPT_TOKEN(anon_sym_struct); END_STATE(); - case 274: + case 276: ACCEPT_TOKEN(anon_sym_struct); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 275: + case 277: ACCEPT_TOKEN(anon_sym_enum); END_STATE(); - case 276: + case 278: ACCEPT_TOKEN(anon_sym_enum); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 277: + case 279: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 278: + case 280: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 279: + case 281: ACCEPT_TOKEN(anon_sym_fn); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 280: + case 282: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 281: + case 283: ACCEPT_TOKEN(anon_sym_implicits); END_STATE(); - case 282: + case 284: ACCEPT_TOKEN(anon_sym_let); END_STATE(); - case 283: + case 285: ACCEPT_TOKEN(anon_sym_let); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 284: + case 286: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 285: + case 287: ACCEPT_TOKEN(anon_sym_use); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 286: + case 288: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 287: + case 289: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 288: + case 290: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 289: + case 291: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(347); + if (lookahead == '=') ADVANCE(349); END_STATE(); - case 290: + case 292: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 291: + case 293: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (lookahead == '_') ADVANCE(393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 292: + case 294: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); + if (lookahead == '_') ADVANCE(403); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 293: + case 295: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 294: + case 296: ACCEPT_TOKEN(anon_sym_u8); END_STATE(); - case 295: + case 297: ACCEPT_TOKEN(anon_sym_u8); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 296: + case 298: ACCEPT_TOKEN(anon_sym_i8); END_STATE(); - case 297: + case 299: ACCEPT_TOKEN(anon_sym_i8); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 298: + case 300: ACCEPT_TOKEN(anon_sym_u16); END_STATE(); - case 299: + case 301: ACCEPT_TOKEN(anon_sym_u16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 300: + case 302: ACCEPT_TOKEN(anon_sym_i16); END_STATE(); - case 301: + case 303: ACCEPT_TOKEN(anon_sym_i16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 302: + case 304: ACCEPT_TOKEN(anon_sym_u32); END_STATE(); - case 303: + case 305: ACCEPT_TOKEN(anon_sym_u32); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 304: + case 306: ACCEPT_TOKEN(anon_sym_i32); END_STATE(); - case 305: + case 307: ACCEPT_TOKEN(anon_sym_i32); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 306: + case 308: ACCEPT_TOKEN(anon_sym_u64); END_STATE(); - case 307: + case 309: ACCEPT_TOKEN(anon_sym_u64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 308: + case 310: ACCEPT_TOKEN(anon_sym_i64); END_STATE(); - case 309: + case 311: ACCEPT_TOKEN(anon_sym_i64); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 310: + case 312: ACCEPT_TOKEN(anon_sym_u128); END_STATE(); - case 311: + case 313: ACCEPT_TOKEN(anon_sym_u128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 312: + case 314: ACCEPT_TOKEN(anon_sym_i128); END_STATE(); - case 313: + case 315: ACCEPT_TOKEN(anon_sym_i128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 314: + case 316: ACCEPT_TOKEN(anon_sym_usize); END_STATE(); - case 315: + case 317: ACCEPT_TOKEN(anon_sym_usize); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 316: + case 318: ACCEPT_TOKEN(anon_sym_bool); END_STATE(); - case 317: + case 319: ACCEPT_TOKEN(anon_sym_bool); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 318: + case 320: ACCEPT_TOKEN(anon_sym_ByteArray); END_STATE(); - case 319: + case 321: ACCEPT_TOKEN(anon_sym_ByteArray); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 320: + case 322: ACCEPT_TOKEN(anon_sym_felt252); END_STATE(); - case 321: + case 323: ACCEPT_TOKEN(anon_sym_felt252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); - END_STATE(); - case 322: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 323: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(343); - if (lookahead == '=') ADVANCE(356); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(355); - if (lookahead == '>') ADVANCE(344); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(345); + if (lookahead == '=') ADVANCE(358); END_STATE(); case 326: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 327: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(345); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(357); + if (lookahead == '>') ADVANCE(346); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 329: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(346); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(347); END_STATE(); case 330: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(346); - if (lookahead == '>') ADVANCE(280); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(586); + ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '=') ADVANCE(348); END_STATE(); case 332: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(349); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(348); + if (lookahead == '>') ADVANCE(282); END_STATE(); case 333: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(592); + if (lookahead == '=') ADVANCE(350); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(350); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(351); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(341); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(352); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '=') ADVANCE(351); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(343); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(352); - if (lookahead == '|') ADVANCE(342); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '=') ADVANCE(353); END_STATE(); case 340: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(342); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(354); + if (lookahead == '|') ADVANCE(344); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(344); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 355: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 356: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 357: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 358: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 359: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 360: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(358); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 361: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(360); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 364: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 366: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 365: + case 367: ACCEPT_TOKEN(anon_sym_continue); END_STATE(); - case 366: + case 368: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 367: + case 369: ACCEPT_TOKEN(anon_sym_default); END_STATE(); - case 368: + case 370: ACCEPT_TOKEN(anon_sym_default); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 369: + case 371: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 370: + case 372: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 371: + case 373: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 372: + case 374: ACCEPT_TOKEN(anon_sym_extern); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 373: + case 375: ACCEPT_TOKEN(anon_sym_nopanic); END_STATE(); - case 374: + case 376: ACCEPT_TOKEN(anon_sym_nopanic); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 375: + case 377: ACCEPT_TOKEN(anon_sym_loop); END_STATE(); - case 376: + case 378: ACCEPT_TOKEN(anon_sym_loop); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 377: + case 379: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 378: + case 380: ACCEPT_TOKEN(anon_sym_match); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 379: + case 381: ACCEPT_TOKEN(anon_sym_pub); END_STATE(); - case 380: + case 382: ACCEPT_TOKEN(anon_sym_pub); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 381: + case 383: ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 382: + case 384: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 383: + case 385: ACCEPT_TOKEN(anon_sym_static); END_STATE(); - case 384: + case 386: ACCEPT_TOKEN(anon_sym_static); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 385: + case 387: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 386: + case 388: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 387: + case 389: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 390: + ACCEPT_TOKEN(anon_sym_for); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); + END_STATE(); + case 391: ACCEPT_TOKEN(sym_numeric_literal); END_STATE(); - case 388: + case 392: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(389); - if (lookahead == 'b') ADVANCE(209); - if (lookahead == 'o') ADVANCE(210); - if (lookahead == 'x') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (lookahead == '_') ADVANCE(393); + if (lookahead == 'b') ADVANCE(211); + if (lookahead == 'o') ADVANCE(212); + if (lookahead == 'x') ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 389: + case 393: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(389); + if (lookahead == '_') ADVANCE(393); if (lookahead == 'f') ADVANCE(127); if (lookahead == 'i') ADVANCE(66); if (lookahead == 'u') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 390: + case 394: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(390); + if (lookahead == '_') ADVANCE(393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 391: + case 395: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(391); + if (lookahead == '_') ADVANCE(395); if (lookahead == 'f') ADVANCE(127); if (lookahead == 'i') ADVANCE(66); if (lookahead == 'u') ADVANCE(65); if (lookahead == '0' || - lookahead == '1') ADVANCE(392); + lookahead == '1') ADVANCE(396); END_STATE(); - case 392: + case 396: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(391); + if (lookahead == '_') ADVANCE(395); if (lookahead == '0' || - lookahead == '1') ADVANCE(392); + lookahead == '1') ADVANCE(396); END_STATE(); - case 393: + case 397: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(393); + if (lookahead == '_') ADVANCE(397); if (lookahead == 'f') ADVANCE(127); if (lookahead == 'i') ADVANCE(66); if (lookahead == 'u') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(398); END_STATE(); - case 394: + case 398: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(393); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); + if (lookahead == '_') ADVANCE(397); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(398); END_STATE(); - case 395: + case 399: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(396); - if (lookahead == 'e') ADVANCE(397); + if (lookahead == '_') ADVANCE(400); + if (lookahead == 'e') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 396: + case 400: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(396); - if (lookahead == 'f') ADVANCE(395); + if (lookahead == '_') ADVANCE(400); + if (lookahead == 'f') ADVANCE(399); if (lookahead == 'i') ADVANCE(66); if (lookahead == 'u') ADVANCE(65); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(402); END_STATE(); - case 397: + case 401: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(396); - if (lookahead == 'l') ADVANCE(197); + if (lookahead == '_') ADVANCE(400); + if (lookahead == 'l') ADVANCE(199); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 398: + case 402: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(396); + if (lookahead == '_') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(398); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 399: + case 403: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(399); - if (lookahead == 'f') ADVANCE(493); - if (lookahead == 'i') ADVANCE(432); - if (lookahead == 'u') ADVANCE(431); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); + if (lookahead == '_') ADVANCE(403); + if (lookahead == 'f') ADVANCE(499); + if (lookahead == 'i') ADVANCE(437); + if (lookahead == 'u') ADVANCE(436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 400: + case 404: ACCEPT_TOKEN(sym_numeric_literal); - if (lookahead == '_') ADVANCE(399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); + if (lookahead == '_') ADVANCE(403); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 401: + case 405: ACCEPT_TOKEN(sym_numeric_literal); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); - case 402: + case 406: ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); - case 403: + case 407: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '\n') ADVANCE(406); - if (lookahead == '"') ADVANCE(586); - if (lookahead == '\\') ADVANCE(587); - if (lookahead != 0) ADVANCE(403); + if (lookahead == '\n') ADVANCE(410); + if (lookahead == '"') ADVANCE(592); + if (lookahead == '\\') ADVANCE(593); + if (lookahead != 0) ADVANCE(407); END_STATE(); - case 404: + case 408: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '/') ADVANCE(405); - if (lookahead == '\\') ADVANCE(213); + if (lookahead == '/') ADVANCE(409); + if (lookahead == '\\') ADVANCE(215); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(404); + lookahead == ' ') ADVANCE(408); if (lookahead != 0 && - lookahead != '"') ADVANCE(406); + lookahead != '"') ADVANCE(410); END_STATE(); - case 405: + case 409: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '/') ADVANCE(403); - if (lookahead == '\\') ADVANCE(213); + if (lookahead == '/') ADVANCE(407); + if (lookahead == '\\') ADVANCE(215); if (lookahead != 0 && - lookahead != '"') ADVANCE(406); + lookahead != '"') ADVANCE(410); END_STATE(); - case 406: + case 410: ACCEPT_TOKEN(aux_sym_string_literal_token2); - if (lookahead == '\\') ADVANCE(213); + if (lookahead == '\\') ADVANCE(215); if (lookahead != 0 && - lookahead != '"') ADVANCE(406); + lookahead != '"') ADVANCE(410); END_STATE(); - case 407: + case 411: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 408: + case 412: ACCEPT_TOKEN(sym_shortstring_literal); END_STATE(); - case 409: + case 413: ACCEPT_TOKEN(sym_shortstring_literal); if (lookahead == '_') ADVANCE(133); END_STATE(); - case 410: + case 414: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 411: + case 415: ACCEPT_TOKEN(anon_sym_true); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); - END_STATE(); - case 412: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 413: - ACCEPT_TOKEN(anon_sym_false); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); - END_STATE(); - case 414: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 415: - ACCEPT_TOKEN(anon_sym_LT2); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 416: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 417: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_false); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 418: - ACCEPT_TOKEN(anon_sym_ref); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym_ref); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 420: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(528); - if (lookahead == 'r') ADVANCE(474); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 421: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(528); + ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 422: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 423: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(402); - if (lookahead == 'o') ADVANCE(524); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 424: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(402); + ACCEPT_TOKEN(anon_sym_ref); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(433); - if (lookahead == '3') ADVANCE(434); - if (lookahead == '6') ADVANCE(442); - if (lookahead == '8') ADVANCE(297); - if (lookahead == 'f') ADVANCE(370); - if (lookahead == 'm') ADVANCE(533); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(534); + if (lookahead == 'r') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(433); - if (lookahead == '3') ADVANCE(434); - if (lookahead == '6') ADVANCE(442); - if (lookahead == '8') ADVANCE(297); - if (lookahead == 'f') ADVANCE(370); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(433); - if (lookahead == '3') ADVANCE(434); - if (lookahead == '6') ADVANCE(442); - if (lookahead == '8') ADVANCE(297); - if (lookahead == 'm') ADVANCE(533); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(433); - if (lookahead == '3') ADVANCE(434); - if (lookahead == '6') ADVANCE(442); - if (lookahead == '8') ADVANCE(297); + if (lookahead == '"') ADVANCE(406); + if (lookahead == 'o') ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(438); - if (lookahead == '3') ADVANCE(435); - if (lookahead == '6') ADVANCE(443); - if (lookahead == '8') ADVANCE(295); - if (lookahead == 's') ADVANCE(475); + if (lookahead == '"') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 430: ACCEPT_TOKEN(sym_identifier); if (lookahead == '1') ADVANCE(438); - if (lookahead == '3') ADVANCE(435); - if (lookahead == '6') ADVANCE(443); - if (lookahead == '8') ADVANCE(295); - if (lookahead == 's') ADVANCE(499); + if (lookahead == '3') ADVANCE(439); + if (lookahead == '6') ADVANCE(447); + if (lookahead == '8') ADVANCE(299); + if (lookahead == 'f') ADVANCE(372); + if (lookahead == 'm') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(440); - if (lookahead == '2') ADVANCE(445); - if (lookahead == '3') ADVANCE(436); - if (lookahead == '6') ADVANCE(444); - if (lookahead == '8') ADVANCE(401); - if (lookahead == 's') ADVANCE(505); + if (lookahead == '1') ADVANCE(438); + if (lookahead == '3') ADVANCE(439); + if (lookahead == '6') ADVANCE(447); + if (lookahead == '8') ADVANCE(299); + if (lookahead == 'f') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(440); - if (lookahead == '3') ADVANCE(436); - if (lookahead == '6') ADVANCE(444); - if (lookahead == '8') ADVANCE(401); + if (lookahead == '1') ADVANCE(438); + if (lookahead == '3') ADVANCE(439); + if (lookahead == '6') ADVANCE(447); + if (lookahead == '8') ADVANCE(299); + if (lookahead == 'm') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(450); - if (lookahead == '6') ADVANCE(301); + if (lookahead == '1') ADVANCE(438); + if (lookahead == '3') ADVANCE(439); + if (lookahead == '6') ADVANCE(447); + if (lookahead == '8') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 434: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(305); + if (lookahead == '1') ADVANCE(443); + if (lookahead == '3') ADVANCE(440); + if (lookahead == '6') ADVANCE(448); + if (lookahead == '8') ADVANCE(297); + if (lookahead == 's') ADVANCE(481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 435: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(303); + if (lookahead == '1') ADVANCE(443); + if (lookahead == '3') ADVANCE(440); + if (lookahead == '6') ADVANCE(448); + if (lookahead == '8') ADVANCE(297); + if (lookahead == 's') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 436: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(401); + if (lookahead == '1') ADVANCE(445); + if (lookahead == '2') ADVANCE(450); + if (lookahead == '3') ADVANCE(441); + if (lookahead == '6') ADVANCE(449); + if (lookahead == '8') ADVANCE(405); + if (lookahead == 's') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 437: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(321); + if (lookahead == '1') ADVANCE(445); + if (lookahead == '3') ADVANCE(441); + if (lookahead == '6') ADVANCE(449); + if (lookahead == '8') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 438: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(451); - if (lookahead == '6') ADVANCE(299); + if (lookahead == '2') ADVANCE(455); + if (lookahead == '6') ADVANCE(303); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 439: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(447); + if (lookahead == '2') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 440: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(449); - if (lookahead == '6') ADVANCE(401); + if (lookahead == '2') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 441: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(446); + if (lookahead == '2') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 442: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(309); + if (lookahead == '2') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 443: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(307); + if (lookahead == '2') ADVANCE(456); + if (lookahead == '6') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 444: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(401); + if (lookahead == '2') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 445: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '5') ADVANCE(448); + if (lookahead == '2') ADVANCE(454); + if (lookahead == '6') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 446: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '5') ADVANCE(436); + if (lookahead == '2') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 447: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '5') ADVANCE(437); + if (lookahead == '4') ADVANCE(311); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 448: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '6') ADVANCE(401); + if (lookahead == '4') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 449: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(401); + if (lookahead == '4') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 450: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(313); + if (lookahead == '5') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 451: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '8') ADVANCE(311); + if (lookahead == '5') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 452: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(543); + if (lookahead == '5') ADVANCE(442); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 453: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(510); - if (lookahead == 'n') ADVANCE(279); + if (lookahead == '6') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 454: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(507); - if (lookahead == 'e') ADVANCE(510); + if (lookahead == '8') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 455: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(506); + if (lookahead == '8') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 456: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(576); + if (lookahead == '8') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 457: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(504); - if (lookahead == 'u') ADVANCE(478); + if (lookahead == 'A') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 458: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(504); + if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'e') ADVANCE(516); + if (lookahead == 'n') ADVANCE(281); + if (lookahead == 'o') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'o') ADVANCE(471); - if (lookahead == 'u') ADVANCE(558); + if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'e') ADVANCE(516); + if (lookahead == 'o') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 460: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'o') ADVANCE(471); + if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'e') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 461: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(552); - if (lookahead == 'u') ADVANCE(558); + if (lookahead == 'a') ADVANCE(512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 462: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'a') ADVANCE(583); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 463: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(573); + if (lookahead == 'a') ADVANCE(510); + if (lookahead == 'u') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 464: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(523); + if (lookahead == 'a') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 465: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(563); - if (lookahead == 'r') ADVANCE(569); + if (lookahead == 'a') ADVANCE(558); + if (lookahead == 'o') ADVANCE(477); + if (lookahead == 'u') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 466: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(380); + if (lookahead == 'a') ADVANCE(558); + if (lookahead == 'o') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 467: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(384); + if (lookahead == 'a') ADVANCE(558); + if (lookahead == 'u') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 468: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'a') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 469: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(498); + if (lookahead == 'a') ADVANCE(581); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(555); + if (lookahead == 'a') ADVANCE(529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(272); + if (lookahead == 'a') ADVANCE(570); + if (lookahead == 'r') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(496); + if (lookahead == 'b') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(494); + if (lookahead == 'c') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(455); + if (lookahead == 'c') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(285); - if (lookahead == 'i') ADVANCE(577); + if (lookahead == 'c') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(452); + if (lookahead == 'c') ADVANCE(561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(401); + if (lookahead == 'd') ADVANCE(274); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(411); + if (lookahead == 'e') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(258); + if (lookahead == 'e') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 480: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(413); + if (lookahead == 'e') ADVANCE(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 481: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'e') ADVANCE(287); + if (lookahead == 'i') ADVANCE(584); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'e') ADVANCE(457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(366); + if (lookahead == 'e') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(417); + if (lookahead == 'e') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'o') ADVANCE(529); + if (lookahead == 'e') ADVANCE(260); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(551); + if (lookahead == 'e') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(495); + if (lookahead == 'e') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(510); - if (lookahead == 'n') ADVANCE(279); + if (lookahead == 'e') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(510); + if (lookahead == 'e') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(539); + if (lookahead == 'e') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(538); + if (lookahead == 'e') ADVANCE(557); + if (lookahead == 'o') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(559); + if (lookahead == 'e') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(515); + if (lookahead == 'e') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(419); - if (lookahead == 't') ADVANCE(574); + if (lookahead == 'e') ADVANCE(516); + if (lookahead == 'n') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(419); + if (lookahead == 'e') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(463); + if (lookahead == 'e') ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(503); + if (lookahead == 'e') ADVANCE(545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(378); + if (lookahead == 'e') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(577); + if (lookahead == 'e') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(522); + if (lookahead == 'f') ADVANCE(424); + if (lookahead == 't') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(467); + if (lookahead == 'f') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(468); + if (lookahead == 'f') ADVANCE(469); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(512); + if (lookahead == 'h') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(554); + if (lookahead == 'h') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'i') ADVANCE(584); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(364); + if (lookahead == 'i') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(548); + if (lookahead == 'i') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(317); + if (lookahead == 'i') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(252); + if (lookahead == 'i') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(561); + if (lookahead == 'i') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(556); + if (lookahead == 'i') ADVANCE(585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(482); + if (lookahead == 'k') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(549); - if (lookahead == 'n') ADVANCE(567); - if (lookahead == 'x') ADVANCE(564); + if (lookahead == 'l') ADVANCE(555); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(549); + if (lookahead == 'l') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(565); + if (lookahead == 'l') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(276); + if (lookahead == 'l') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(546); + if (lookahead == 'l') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(372); + if (lookahead == 'l') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(382); + if (lookahead == 'l') ADVANCE(556); + if (lookahead == 'n') ADVANCE(574); + if (lookahead == 'x') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(567); - if (lookahead == 'x') ADVANCE(564); + if (lookahead == 'l') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(547); + if (lookahead == 'l') ADVANCE(572); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(572); + if (lookahead == 'm') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(502); + if (lookahead == 'n') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(562); + if (lookahead == 'n') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(528); + if (lookahead == 'n') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(471); + if (lookahead == 'n') ADVANCE(574); + if (lookahead == 'x') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(529); + if (lookahead == 'n') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(508); + if (lookahead == 'n') ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(532); + if (lookahead == 'n') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(534); + if (lookahead == 'n') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(521); + if (lookahead == 'o') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(376); + if (lookahead == 'o') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(509); + if (lookahead == 'o') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(464); + if (lookahead == 'o') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(491); + if (lookahead == 'o') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(479); + if (lookahead == 'o') ADVANCE(540); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(457); - if (lookahead == 'y') ADVANCE(536); + if (lookahead == 'o') ADVANCE(527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(584); + if (lookahead == 'p') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(518); + if (lookahead == 'p') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(456); + if (lookahead == 'p') ADVANCE(470); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(569); + if (lookahead == 'p') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(519); + if (lookahead == 'p') ADVANCE(485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(540); + if (lookahead == 'r') ADVANCE(463); + if (lookahead == 'y') ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(458); - if (lookahead == 'y') ADVANCE(536); + if (lookahead == 'r') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(570); + if (lookahead == 'r') ADVANCE(590); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(553); - if (lookahead == 't') ADVANCE(500); + if (lookahead == 'r') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(553); + if (lookahead == 'r') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(480); + if (lookahead == 'r') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(484); + if (lookahead == 'r') ADVANCE(525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(541); - if (lookahead == 'u') ADVANCE(535); + if (lookahead == 'r') ADVANCE(464); + if (lookahead == 'y') ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 551: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(283); + if (lookahead == 'r') ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(469); + if (lookahead == 'r') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(262); + if (lookahead == 's') ADVANCE(559); + if (lookahead == 't') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(256); + if (lookahead == 's') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(274); + if (lookahead == 's') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(368); + if (lookahead == 's') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(465); - if (lookahead == 'u') ADVANCE(535); + if (lookahead == 't') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(582); + if (lookahead == 't') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(574); + if (lookahead == 't') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(476); + if (lookahead == 't') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(439); + if (lookahead == 't') ADVANCE(276); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(500); + if (lookahead == 't') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(501); + if (lookahead == 't') ADVANCE(471); + if (lookahead == 'u') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(490); + if (lookahead == 't') ADVANCE(588); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(441); + if (lookahead == 't') ADVANCE(548); + if (lookahead == 'u') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(466); + if (lookahead == 't') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(516); + if (lookahead == 't') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(535); + if (lookahead == 't') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(470); + if (lookahead == 't') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(478); + if (lookahead == 't') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(558); + if (lookahead == 't') ADVANCE(496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(483); + if (lookahead == 't') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(511); + if (lookahead == 'u') ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(542); + if (lookahead == 'u') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(560); + if (lookahead == 'u') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(319); + if (lookahead == 'u') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') ADVANCE(481); + if (lookahead == 'u') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') ADVANCE(477); + if (lookahead == 'u') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 579: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(489); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 581: - ACCEPT_TOKEN(sym_mutable_specifier); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 582: - ACCEPT_TOKEN(sym_mutable_specifier); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 583: - ACCEPT_TOKEN(sym_super); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); END_STATE(); case 584: - ACCEPT_TOKEN(sym_super); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'z') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(579); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(586); END_STATE(); case 585: - ACCEPT_TOKEN(sym_crate); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'z') ADVANCE(483); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(586); END_STATE(); case 586: + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); + END_STATE(); + case 587: + ACCEPT_TOKEN(sym_mutable_specifier); + END_STATE(); + case 588: + ACCEPT_TOKEN(sym_mutable_specifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); + END_STATE(); + case 589: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 590: + ACCEPT_TOKEN(sym_super); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(586); + END_STATE(); + case 591: + ACCEPT_TOKEN(sym_crate); + END_STATE(); + case 592: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(586); + lookahead != '\n') ADVANCE(592); END_STATE(); - case 587: + case 593: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(403); + lookahead != '\n') ADVANCE(407); END_STATE(); default: return false; @@ -7992,26 +8064,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 247}, - [2] = {.lex_state = 247}, - [3] = {.lex_state = 247}, - [4] = {.lex_state = 247}, - [5] = {.lex_state = 247}, - [6] = {.lex_state = 247}, - [7] = {.lex_state = 247}, - [8] = {.lex_state = 247}, - [9] = {.lex_state = 247}, - [10] = {.lex_state = 247}, - [11] = {.lex_state = 247}, - [12] = {.lex_state = 247}, - [13] = {.lex_state = 247}, - [14] = {.lex_state = 247}, - [15] = {.lex_state = 247}, - [16] = {.lex_state = 247}, - [17] = {.lex_state = 247}, - [18] = {.lex_state = 247}, - [19] = {.lex_state = 247}, - [20] = {.lex_state = 247}, + [1] = {.lex_state = 249}, + [2] = {.lex_state = 249}, + [3] = {.lex_state = 249}, + [4] = {.lex_state = 249}, + [5] = {.lex_state = 249}, + [6] = {.lex_state = 249}, + [7] = {.lex_state = 249}, + [8] = {.lex_state = 249}, + [9] = {.lex_state = 249}, + [10] = {.lex_state = 249}, + [11] = {.lex_state = 249}, + [12] = {.lex_state = 249}, + [13] = {.lex_state = 249}, + [14] = {.lex_state = 249}, + [15] = {.lex_state = 249}, + [16] = {.lex_state = 249}, + [17] = {.lex_state = 249}, + [18] = {.lex_state = 249}, + [19] = {.lex_state = 249}, + [20] = {.lex_state = 249}, [21] = {.lex_state = 2}, [22] = {.lex_state = 2}, [23] = {.lex_state = 1}, @@ -8059,41 +8131,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 1}, [66] = {.lex_state = 1}, [67] = {.lex_state = 1}, - [68] = {.lex_state = 245}, - [69] = {.lex_state = 245}, - [70] = {.lex_state = 245}, - [71] = {.lex_state = 245}, - [72] = {.lex_state = 245}, - [73] = {.lex_state = 245}, - [74] = {.lex_state = 245}, - [75] = {.lex_state = 245}, - [76] = {.lex_state = 245}, - [77] = {.lex_state = 245}, - [78] = {.lex_state = 245}, - [79] = {.lex_state = 245}, - [80] = {.lex_state = 245}, - [81] = {.lex_state = 245}, - [82] = {.lex_state = 245}, - [83] = {.lex_state = 246}, - [84] = {.lex_state = 246}, - [85] = {.lex_state = 246}, - [86] = {.lex_state = 246}, - [87] = {.lex_state = 5}, - [88] = {.lex_state = 245}, + [68] = {.lex_state = 247}, + [69] = {.lex_state = 247}, + [70] = {.lex_state = 247}, + [71] = {.lex_state = 247}, + [72] = {.lex_state = 247}, + [73] = {.lex_state = 247}, + [74] = {.lex_state = 247}, + [75] = {.lex_state = 247}, + [76] = {.lex_state = 247}, + [77] = {.lex_state = 247}, + [78] = {.lex_state = 247}, + [79] = {.lex_state = 247}, + [80] = {.lex_state = 247}, + [81] = {.lex_state = 247}, + [82] = {.lex_state = 247}, + [83] = {.lex_state = 247}, + [84] = {.lex_state = 248}, + [85] = {.lex_state = 248}, + [86] = {.lex_state = 248}, + [87] = {.lex_state = 248}, + [88] = {.lex_state = 5}, [89] = {.lex_state = 5}, - [90] = {.lex_state = 245}, - [91] = {.lex_state = 245}, + [90] = {.lex_state = 247}, + [91] = {.lex_state = 5}, [92] = {.lex_state = 5}, [93] = {.lex_state = 5}, [94] = {.lex_state = 5}, - [95] = {.lex_state = 5}, + [95] = {.lex_state = 247}, [96] = {.lex_state = 5}, [97] = {.lex_state = 5}, [98] = {.lex_state = 5}, [99] = {.lex_state = 5}, [100] = {.lex_state = 5}, [101] = {.lex_state = 5}, - [102] = {.lex_state = 5}, + [102] = {.lex_state = 247}, [103] = {.lex_state = 5}, [104] = {.lex_state = 5}, [105] = {.lex_state = 5}, @@ -8110,18 +8182,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 5}, [117] = {.lex_state = 5}, [118] = {.lex_state = 5}, - [119] = {.lex_state = 6}, + [119] = {.lex_state = 5}, [120] = {.lex_state = 5}, [121] = {.lex_state = 6}, [122] = {.lex_state = 5}, [123] = {.lex_state = 6}, [124] = {.lex_state = 6}, - [125] = {.lex_state = 5}, + [125] = {.lex_state = 6}, [126] = {.lex_state = 6}, [127] = {.lex_state = 6}, [128] = {.lex_state = 6}, - [129] = {.lex_state = 6}, - [130] = {.lex_state = 5}, + [129] = {.lex_state = 5}, + [130] = {.lex_state = 6}, [131] = {.lex_state = 5}, [132] = {.lex_state = 5}, [133] = {.lex_state = 5}, @@ -8130,10 +8202,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [136] = {.lex_state = 5}, [137] = {.lex_state = 5}, [138] = {.lex_state = 5}, - [139] = {.lex_state = 7}, + [139] = {.lex_state = 5}, [140] = {.lex_state = 7}, [141] = {.lex_state = 7}, - [142] = {.lex_state = 5}, + [142] = {.lex_state = 7}, [143] = {.lex_state = 5}, [144] = {.lex_state = 5}, [145] = {.lex_state = 5}, @@ -8212,131 +8284,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [218] = {.lex_state = 5}, [219] = {.lex_state = 5}, [220] = {.lex_state = 5}, - [221] = {.lex_state = 10}, - [222] = {.lex_state = 10}, - [223] = {.lex_state = 10}, - [224] = {.lex_state = 10}, + [221] = {.lex_state = 5}, + [222] = {.lex_state = 5}, + [223] = {.lex_state = 5}, + [224] = {.lex_state = 5}, [225] = {.lex_state = 10}, [226] = {.lex_state = 10}, [227] = {.lex_state = 10}, [228] = {.lex_state = 10}, [229] = {.lex_state = 10}, - [230] = {.lex_state = 11}, + [230] = {.lex_state = 10}, [231] = {.lex_state = 10}, - [232] = {.lex_state = 16}, + [232] = {.lex_state = 10}, [233] = {.lex_state = 10}, - [234] = {.lex_state = 10}, - [235] = {.lex_state = 247}, - [236] = {.lex_state = 247}, + [234] = {.lex_state = 249}, + [235] = {.lex_state = 10}, + [236] = {.lex_state = 249}, [237] = {.lex_state = 16}, - [238] = {.lex_state = 16}, - [239] = {.lex_state = 11}, - [240] = {.lex_state = 11}, - [241] = {.lex_state = 247}, + [238] = {.lex_state = 249}, + [239] = {.lex_state = 10}, + [240] = {.lex_state = 10}, + [241] = {.lex_state = 11}, [242] = {.lex_state = 11}, - [243] = {.lex_state = 16}, - [244] = {.lex_state = 12}, - [245] = {.lex_state = 12}, - [246] = {.lex_state = 12}, - [247] = {.lex_state = 12}, - [248] = {.lex_state = 12}, - [249] = {.lex_state = 12}, - [250] = {.lex_state = 12}, - [251] = {.lex_state = 12}, - [252] = {.lex_state = 12}, - [253] = {.lex_state = 12}, + [243] = {.lex_state = 11}, + [244] = {.lex_state = 11}, + [245] = {.lex_state = 16}, + [246] = {.lex_state = 16}, + [247] = {.lex_state = 16}, + [248] = {.lex_state = 249}, + [249] = {.lex_state = 249}, + [250] = {.lex_state = 249}, + [251] = {.lex_state = 249}, + [252] = {.lex_state = 249}, + [253] = {.lex_state = 249}, [254] = {.lex_state = 12}, [255] = {.lex_state = 12}, - [256] = {.lex_state = 16}, + [256] = {.lex_state = 249}, [257] = {.lex_state = 12}, - [258] = {.lex_state = 247}, - [259] = {.lex_state = 247}, - [260] = {.lex_state = 247}, - [261] = {.lex_state = 247}, - [262] = {.lex_state = 247}, - [263] = {.lex_state = 247}, - [264] = {.lex_state = 247}, - [265] = {.lex_state = 247}, - [266] = {.lex_state = 247}, - [267] = {.lex_state = 247}, - [268] = {.lex_state = 247}, - [269] = {.lex_state = 247}, - [270] = {.lex_state = 247}, - [271] = {.lex_state = 247}, - [272] = {.lex_state = 247}, - [273] = {.lex_state = 247}, - [274] = {.lex_state = 247}, - [275] = {.lex_state = 247}, - [276] = {.lex_state = 247}, - [277] = {.lex_state = 247}, - [278] = {.lex_state = 247}, - [279] = {.lex_state = 247}, - [280] = {.lex_state = 247}, - [281] = {.lex_state = 247}, - [282] = {.lex_state = 247}, - [283] = {.lex_state = 247}, - [284] = {.lex_state = 247}, - [285] = {.lex_state = 247}, - [286] = {.lex_state = 247}, - [287] = {.lex_state = 247}, - [288] = {.lex_state = 247}, - [289] = {.lex_state = 247}, - [290] = {.lex_state = 247}, - [291] = {.lex_state = 247}, - [292] = {.lex_state = 247}, - [293] = {.lex_state = 247}, - [294] = {.lex_state = 247}, - [295] = {.lex_state = 247}, - [296] = {.lex_state = 247}, - [297] = {.lex_state = 247}, - [298] = {.lex_state = 247}, - [299] = {.lex_state = 247}, - [300] = {.lex_state = 247}, - [301] = {.lex_state = 247}, - [302] = {.lex_state = 247}, - [303] = {.lex_state = 247}, - [304] = {.lex_state = 247}, - [305] = {.lex_state = 247}, - [306] = {.lex_state = 247}, - [307] = {.lex_state = 247}, - [308] = {.lex_state = 247}, - [309] = {.lex_state = 247}, - [310] = {.lex_state = 247}, - [311] = {.lex_state = 247}, - [312] = {.lex_state = 247}, - [313] = {.lex_state = 247}, - [314] = {.lex_state = 247}, - [315] = {.lex_state = 247}, - [316] = {.lex_state = 247}, - [317] = {.lex_state = 247}, - [318] = {.lex_state = 247}, - [319] = {.lex_state = 247}, - [320] = {.lex_state = 247}, - [321] = {.lex_state = 247}, - [322] = {.lex_state = 247}, - [323] = {.lex_state = 247}, - [324] = {.lex_state = 247}, - [325] = {.lex_state = 247}, - [326] = {.lex_state = 247}, - [327] = {.lex_state = 247}, - [328] = {.lex_state = 247}, - [329] = {.lex_state = 247}, - [330] = {.lex_state = 247}, - [331] = {.lex_state = 247}, - [332] = {.lex_state = 247}, - [333] = {.lex_state = 247}, - [334] = {.lex_state = 247}, - [335] = {.lex_state = 247}, - [336] = {.lex_state = 247}, - [337] = {.lex_state = 247}, - [338] = {.lex_state = 15}, - [339] = {.lex_state = 16}, - [340] = {.lex_state = 15}, - [341] = {.lex_state = 16}, - [342] = {.lex_state = 15}, - [343] = {.lex_state = 15}, + [258] = {.lex_state = 12}, + [259] = {.lex_state = 249}, + [260] = {.lex_state = 249}, + [261] = {.lex_state = 249}, + [262] = {.lex_state = 249}, + [263] = {.lex_state = 12}, + [264] = {.lex_state = 12}, + [265] = {.lex_state = 249}, + [266] = {.lex_state = 249}, + [267] = {.lex_state = 249}, + [268] = {.lex_state = 249}, + [269] = {.lex_state = 249}, + [270] = {.lex_state = 249}, + [271] = {.lex_state = 249}, + [272] = {.lex_state = 249}, + [273] = {.lex_state = 249}, + [274] = {.lex_state = 249}, + [275] = {.lex_state = 249}, + [276] = {.lex_state = 249}, + [277] = {.lex_state = 249}, + [278] = {.lex_state = 249}, + [279] = {.lex_state = 249}, + [280] = {.lex_state = 249}, + [281] = {.lex_state = 249}, + [282] = {.lex_state = 249}, + [283] = {.lex_state = 249}, + [284] = {.lex_state = 249}, + [285] = {.lex_state = 249}, + [286] = {.lex_state = 12}, + [287] = {.lex_state = 249}, + [288] = {.lex_state = 249}, + [289] = {.lex_state = 249}, + [290] = {.lex_state = 249}, + [291] = {.lex_state = 249}, + [292] = {.lex_state = 249}, + [293] = {.lex_state = 249}, + [294] = {.lex_state = 12}, + [295] = {.lex_state = 249}, + [296] = {.lex_state = 249}, + [297] = {.lex_state = 12}, + [298] = {.lex_state = 12}, + [299] = {.lex_state = 249}, + [300] = {.lex_state = 249}, + [301] = {.lex_state = 249}, + [302] = {.lex_state = 249}, + [303] = {.lex_state = 249}, + [304] = {.lex_state = 12}, + [305] = {.lex_state = 12}, + [306] = {.lex_state = 249}, + [307] = {.lex_state = 249}, + [308] = {.lex_state = 249}, + [309] = {.lex_state = 249}, + [310] = {.lex_state = 249}, + [311] = {.lex_state = 249}, + [312] = {.lex_state = 249}, + [313] = {.lex_state = 249}, + [314] = {.lex_state = 249}, + [315] = {.lex_state = 249}, + [316] = {.lex_state = 12}, + [317] = {.lex_state = 249}, + [318] = {.lex_state = 249}, + [319] = {.lex_state = 249}, + [320] = {.lex_state = 16}, + [321] = {.lex_state = 249}, + [322] = {.lex_state = 249}, + [323] = {.lex_state = 249}, + [324] = {.lex_state = 249}, + [325] = {.lex_state = 249}, + [326] = {.lex_state = 249}, + [327] = {.lex_state = 249}, + [328] = {.lex_state = 249}, + [329] = {.lex_state = 249}, + [330] = {.lex_state = 249}, + [331] = {.lex_state = 249}, + [332] = {.lex_state = 249}, + [333] = {.lex_state = 249}, + [334] = {.lex_state = 249}, + [335] = {.lex_state = 249}, + [336] = {.lex_state = 249}, + [337] = {.lex_state = 249}, + [338] = {.lex_state = 249}, + [339] = {.lex_state = 12}, + [340] = {.lex_state = 249}, + [341] = {.lex_state = 249}, + [342] = {.lex_state = 249}, + [343] = {.lex_state = 16}, [344] = {.lex_state = 15}, - [345] = {.lex_state = 15}, + [345] = {.lex_state = 16}, [346] = {.lex_state = 15}, [347] = {.lex_state = 15}, [348] = {.lex_state = 15}, @@ -8364,14 +8436,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [370] = {.lex_state = 15}, [371] = {.lex_state = 15}, [372] = {.lex_state = 15}, - [373] = {.lex_state = 15}, + [373] = {.lex_state = 5}, [374] = {.lex_state = 15}, [375] = {.lex_state = 15}, [376] = {.lex_state = 15}, [377] = {.lex_state = 15}, [378] = {.lex_state = 15}, [379] = {.lex_state = 15}, - [380] = {.lex_state = 5}, + [380] = {.lex_state = 15}, [381] = {.lex_state = 15}, [382] = {.lex_state = 15}, [383] = {.lex_state = 15}, @@ -8386,55 +8458,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [392] = {.lex_state = 15}, [393] = {.lex_state = 15}, [394] = {.lex_state = 15}, - [395] = {.lex_state = 17}, - [396] = {.lex_state = 17}, - [397] = {.lex_state = 17}, - [398] = {.lex_state = 17}, - [399] = {.lex_state = 17}, - [400] = {.lex_state = 17}, - [401] = {.lex_state = 17}, - [402] = {.lex_state = 17}, + [395] = {.lex_state = 15}, + [396] = {.lex_state = 15}, + [397] = {.lex_state = 15}, + [398] = {.lex_state = 15}, + [399] = {.lex_state = 15}, + [400] = {.lex_state = 15}, + [401] = {.lex_state = 15}, + [402] = {.lex_state = 15}, [403] = {.lex_state = 17}, - [404] = {.lex_state = 5}, + [404] = {.lex_state = 17}, [405] = {.lex_state = 17}, - [406] = {.lex_state = 5}, - [407] = {.lex_state = 4}, - [408] = {.lex_state = 4}, - [409] = {.lex_state = 4}, - [410] = {.lex_state = 4}, - [411] = {.lex_state = 2}, - [412] = {.lex_state = 4}, - [413] = {.lex_state = 4}, - [414] = {.lex_state = 4}, - [415] = {.lex_state = 2}, - [416] = {.lex_state = 2}, + [406] = {.lex_state = 17}, + [407] = {.lex_state = 17}, + [408] = {.lex_state = 17}, + [409] = {.lex_state = 5}, + [410] = {.lex_state = 17}, + [411] = {.lex_state = 17}, + [412] = {.lex_state = 17}, + [413] = {.lex_state = 17}, + [414] = {.lex_state = 5}, + [415] = {.lex_state = 4}, + [416] = {.lex_state = 4}, [417] = {.lex_state = 4}, - [418] = {.lex_state = 2}, - [419] = {.lex_state = 2}, + [418] = {.lex_state = 4}, + [419] = {.lex_state = 4}, [420] = {.lex_state = 2}, - [421] = {.lex_state = 2}, - [422] = {.lex_state = 56}, - [423] = {.lex_state = 56}, + [421] = {.lex_state = 4}, + [422] = {.lex_state = 4}, + [423] = {.lex_state = 4}, [424] = {.lex_state = 2}, - [425] = {.lex_state = 56}, + [425] = {.lex_state = 2}, [426] = {.lex_state = 2}, [427] = {.lex_state = 2}, - [428] = {.lex_state = 2}, + [428] = {.lex_state = 56}, [429] = {.lex_state = 2}, - [430] = {.lex_state = 2}, - [431] = {.lex_state = 56}, + [430] = {.lex_state = 56}, + [431] = {.lex_state = 4}, [432] = {.lex_state = 2}, - [433] = {.lex_state = 4}, + [433] = {.lex_state = 2}, [434] = {.lex_state = 2}, - [435] = {.lex_state = 4}, - [436] = {.lex_state = 4}, - [437] = {.lex_state = 2}, - [438] = {.lex_state = 2}, + [435] = {.lex_state = 2}, + [436] = {.lex_state = 2}, + [437] = {.lex_state = 4}, + [438] = {.lex_state = 56}, [439] = {.lex_state = 2}, - [440] = {.lex_state = 2}, + [440] = {.lex_state = 56}, [441] = {.lex_state = 2}, [442] = {.lex_state = 2}, - [443] = {.lex_state = 2}, + [443] = {.lex_state = 4}, [444] = {.lex_state = 2}, [445] = {.lex_state = 2}, [446] = {.lex_state = 2}, @@ -8479,21 +8551,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [485] = {.lex_state = 2}, [486] = {.lex_state = 2}, [487] = {.lex_state = 2}, - [488] = {.lex_state = 10}, - [489] = {.lex_state = 10}, - [490] = {.lex_state = 10}, - [491] = {.lex_state = 10}, - [492] = {.lex_state = 10}, - [493] = {.lex_state = 10}, - [494] = {.lex_state = 15}, - [495] = {.lex_state = 10}, + [488] = {.lex_state = 2}, + [489] = {.lex_state = 2}, + [490] = {.lex_state = 2}, + [491] = {.lex_state = 2}, + [492] = {.lex_state = 2}, + [493] = {.lex_state = 2}, + [494] = {.lex_state = 2}, + [495] = {.lex_state = 2}, [496] = {.lex_state = 10}, [497] = {.lex_state = 10}, [498] = {.lex_state = 10}, [499] = {.lex_state = 2}, [500] = {.lex_state = 10}, [501] = {.lex_state = 10}, - [502] = {.lex_state = 2}, + [502] = {.lex_state = 10}, [503] = {.lex_state = 10}, [504] = {.lex_state = 10}, [505] = {.lex_state = 10}, @@ -8506,10 +8578,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [512] = {.lex_state = 10}, [513] = {.lex_state = 10}, [514] = {.lex_state = 10}, - [515] = {.lex_state = 10}, + [515] = {.lex_state = 3}, [516] = {.lex_state = 10}, [517] = {.lex_state = 10}, - [518] = {.lex_state = 2}, + [518] = {.lex_state = 10}, [519] = {.lex_state = 10}, [520] = {.lex_state = 10}, [521] = {.lex_state = 10}, @@ -8533,21 +8605,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [539] = {.lex_state = 10}, [540] = {.lex_state = 10}, [541] = {.lex_state = 10}, - [542] = {.lex_state = 10}, + [542] = {.lex_state = 2}, [543] = {.lex_state = 10}, - [544] = {.lex_state = 10}, + [544] = {.lex_state = 2}, [545] = {.lex_state = 10}, [546] = {.lex_state = 10}, [547] = {.lex_state = 10}, [548] = {.lex_state = 10}, - [549] = {.lex_state = 2}, + [549] = {.lex_state = 10}, [550] = {.lex_state = 10}, - [551] = {.lex_state = 10}, + [551] = {.lex_state = 2}, [552] = {.lex_state = 10}, [553] = {.lex_state = 10}, [554] = {.lex_state = 10}, [555] = {.lex_state = 10}, - [556] = {.lex_state = 3}, + [556] = {.lex_state = 10}, [557] = {.lex_state = 10}, [558] = {.lex_state = 10}, [559] = {.lex_state = 10}, @@ -8564,187 +8636,187 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [570] = {.lex_state = 10}, [571] = {.lex_state = 10}, [572] = {.lex_state = 10}, - [573] = {.lex_state = 3}, - [574] = {.lex_state = 20}, - [575] = {.lex_state = 2}, - [576] = {.lex_state = 2}, - [577] = {.lex_state = 2}, - [578] = {.lex_state = 20}, - [579] = {.lex_state = 3}, - [580] = {.lex_state = 20}, + [573] = {.lex_state = 10}, + [574] = {.lex_state = 10}, + [575] = {.lex_state = 10}, + [576] = {.lex_state = 10}, + [577] = {.lex_state = 10}, + [578] = {.lex_state = 15}, + [579] = {.lex_state = 10}, + [580] = {.lex_state = 10}, [581] = {.lex_state = 55}, - [582] = {.lex_state = 55}, - [583] = {.lex_state = 2}, - [584] = {.lex_state = 2}, - [585] = {.lex_state = 3}, - [586] = {.lex_state = 2}, - [587] = {.lex_state = 3}, - [588] = {.lex_state = 2}, - [589] = {.lex_state = 20}, - [590] = {.lex_state = 55}, - [591] = {.lex_state = 20}, - [592] = {.lex_state = 20}, - [593] = {.lex_state = 20}, - [594] = {.lex_state = 55}, - [595] = {.lex_state = 15}, - [596] = {.lex_state = 14}, + [582] = {.lex_state = 20}, + [583] = {.lex_state = 20}, + [584] = {.lex_state = 3}, + [585] = {.lex_state = 55}, + [586] = {.lex_state = 20}, + [587] = {.lex_state = 2}, + [588] = {.lex_state = 20}, + [589] = {.lex_state = 2}, + [590] = {.lex_state = 20}, + [591] = {.lex_state = 2}, + [592] = {.lex_state = 2}, + [593] = {.lex_state = 3}, + [594] = {.lex_state = 3}, + [595] = {.lex_state = 20}, + [596] = {.lex_state = 20}, [597] = {.lex_state = 2}, [598] = {.lex_state = 2}, - [599] = {.lex_state = 55}, - [600] = {.lex_state = 3}, - [601] = {.lex_state = 3}, - [602] = {.lex_state = 55}, + [599] = {.lex_state = 3}, + [600] = {.lex_state = 2}, + [601] = {.lex_state = 55}, + [602] = {.lex_state = 3}, [603] = {.lex_state = 55}, [604] = {.lex_state = 2}, - [605] = {.lex_state = 2}, + [605] = {.lex_state = 55}, [606] = {.lex_state = 20}, - [607] = {.lex_state = 2}, + [607] = {.lex_state = 55}, [608] = {.lex_state = 2}, [609] = {.lex_state = 55}, - [610] = {.lex_state = 55}, + [610] = {.lex_state = 2}, [611] = {.lex_state = 2}, - [612] = {.lex_state = 2}, - [613] = {.lex_state = 2}, + [612] = {.lex_state = 55}, + [613] = {.lex_state = 55}, [614] = {.lex_state = 55}, - [615] = {.lex_state = 55}, - [616] = {.lex_state = 55}, - [617] = {.lex_state = 3}, - [618] = {.lex_state = 55}, - [619] = {.lex_state = 55}, + [615] = {.lex_state = 2}, + [616] = {.lex_state = 2}, + [617] = {.lex_state = 55}, + [618] = {.lex_state = 2}, + [619] = {.lex_state = 2}, [620] = {.lex_state = 2}, - [621] = {.lex_state = 2}, - [622] = {.lex_state = 2}, - [623] = {.lex_state = 55}, + [621] = {.lex_state = 55}, + [622] = {.lex_state = 55}, + [623] = {.lex_state = 2}, [624] = {.lex_state = 55}, [625] = {.lex_state = 55}, - [626] = {.lex_state = 20}, - [627] = {.lex_state = 55}, - [628] = {.lex_state = 2}, + [626] = {.lex_state = 2}, + [627] = {.lex_state = 20}, + [628] = {.lex_state = 55}, [629] = {.lex_state = 2}, - [630] = {.lex_state = 55}, + [630] = {.lex_state = 2}, [631] = {.lex_state = 2}, - [632] = {.lex_state = 2}, - [633] = {.lex_state = 55}, - [634] = {.lex_state = 2}, + [632] = {.lex_state = 55}, + [633] = {.lex_state = 3}, + [634] = {.lex_state = 55}, [635] = {.lex_state = 2}, - [636] = {.lex_state = 2}, + [636] = {.lex_state = 55}, [637] = {.lex_state = 2}, - [638] = {.lex_state = 2}, + [638] = {.lex_state = 16}, [639] = {.lex_state = 2}, - [640] = {.lex_state = 2}, + [640] = {.lex_state = 55}, [641] = {.lex_state = 2}, - [642] = {.lex_state = 20}, - [643] = {.lex_state = 55}, - [644] = {.lex_state = 2}, - [645] = {.lex_state = 55}, - [646] = {.lex_state = 55}, + [642] = {.lex_state = 2}, + [643] = {.lex_state = 3}, + [644] = {.lex_state = 55}, + [645] = {.lex_state = 3}, + [646] = {.lex_state = 15}, [647] = {.lex_state = 55}, - [648] = {.lex_state = 2}, - [649] = {.lex_state = 3}, + [648] = {.lex_state = 55}, + [649] = {.lex_state = 20}, [650] = {.lex_state = 55}, - [651] = {.lex_state = 2}, + [651] = {.lex_state = 55}, [652] = {.lex_state = 55}, - [653] = {.lex_state = 2}, + [653] = {.lex_state = 55}, [654] = {.lex_state = 2}, - [655] = {.lex_state = 2}, + [655] = {.lex_state = 55}, [656] = {.lex_state = 55}, - [657] = {.lex_state = 55}, - [658] = {.lex_state = 3}, + [657] = {.lex_state = 2}, + [658] = {.lex_state = 2}, [659] = {.lex_state = 2}, [660] = {.lex_state = 55}, - [661] = {.lex_state = 55}, - [662] = {.lex_state = 55}, + [661] = {.lex_state = 2}, + [662] = {.lex_state = 2}, [663] = {.lex_state = 55}, [664] = {.lex_state = 55}, [665] = {.lex_state = 2}, - [666] = {.lex_state = 3}, - [667] = {.lex_state = 3}, - [668] = {.lex_state = 20}, - [669] = {.lex_state = 3}, - [670] = {.lex_state = 3}, + [666] = {.lex_state = 55}, + [667] = {.lex_state = 2}, + [668] = {.lex_state = 3}, + [669] = {.lex_state = 2}, + [670] = {.lex_state = 20}, [671] = {.lex_state = 2}, [672] = {.lex_state = 3}, [673] = {.lex_state = 3}, - [674] = {.lex_state = 55}, + [674] = {.lex_state = 2}, [675] = {.lex_state = 2}, - [676] = {.lex_state = 15}, + [676] = {.lex_state = 55}, [677] = {.lex_state = 2}, - [678] = {.lex_state = 55}, - [679] = {.lex_state = 2}, - [680] = {.lex_state = 2}, + [678] = {.lex_state = 2}, + [679] = {.lex_state = 55}, + [680] = {.lex_state = 3}, [681] = {.lex_state = 2}, - [682] = {.lex_state = 2}, + [682] = {.lex_state = 3}, [683] = {.lex_state = 2}, - [684] = {.lex_state = 55}, - [685] = {.lex_state = 2}, - [686] = {.lex_state = 55}, - [687] = {.lex_state = 55}, + [684] = {.lex_state = 2}, + [685] = {.lex_state = 55}, + [686] = {.lex_state = 2}, + [687] = {.lex_state = 2}, [688] = {.lex_state = 2}, [689] = {.lex_state = 55}, - [690] = {.lex_state = 2}, - [691] = {.lex_state = 55}, + [690] = {.lex_state = 55}, + [691] = {.lex_state = 2}, [692] = {.lex_state = 55}, - [693] = {.lex_state = 55}, + [693] = {.lex_state = 3}, [694] = {.lex_state = 2}, - [695] = {.lex_state = 16}, - [696] = {.lex_state = 2}, + [695] = {.lex_state = 2}, + [696] = {.lex_state = 15}, [697] = {.lex_state = 55}, [698] = {.lex_state = 2}, [699] = {.lex_state = 2}, [700] = {.lex_state = 2}, [701] = {.lex_state = 2}, - [702] = {.lex_state = 14}, - [703] = {.lex_state = 14}, + [702] = {.lex_state = 55}, + [703] = {.lex_state = 55}, [704] = {.lex_state = 2}, - [705] = {.lex_state = 2}, - [706] = {.lex_state = 2}, - [707] = {.lex_state = 3}, - [708] = {.lex_state = 2}, + [705] = {.lex_state = 3}, + [706] = {.lex_state = 55}, + [707] = {.lex_state = 2}, + [708] = {.lex_state = 14}, [709] = {.lex_state = 2}, [710] = {.lex_state = 3}, - [711] = {.lex_state = 15}, + [711] = {.lex_state = 2}, [712] = {.lex_state = 2}, [713] = {.lex_state = 2}, [714] = {.lex_state = 2}, - [715] = {.lex_state = 15}, - [716] = {.lex_state = 3}, + [715] = {.lex_state = 2}, + [716] = {.lex_state = 2}, [717] = {.lex_state = 2}, [718] = {.lex_state = 2}, [719] = {.lex_state = 2}, - [720] = {.lex_state = 15}, - [721] = {.lex_state = 2}, + [720] = {.lex_state = 2}, + [721] = {.lex_state = 3}, [722] = {.lex_state = 3}, [723] = {.lex_state = 2}, [724] = {.lex_state = 2}, [725] = {.lex_state = 2}, - [726] = {.lex_state = 3}, - [727] = {.lex_state = 2}, - [728] = {.lex_state = 2}, - [729] = {.lex_state = 2}, + [726] = {.lex_state = 2}, + [727] = {.lex_state = 3}, + [728] = {.lex_state = 15}, + [729] = {.lex_state = 3}, [730] = {.lex_state = 2}, - [731] = {.lex_state = 2}, - [732] = {.lex_state = 2}, + [731] = {.lex_state = 15}, + [732] = {.lex_state = 3}, [733] = {.lex_state = 2}, [734] = {.lex_state = 2}, - [735] = {.lex_state = 14}, - [736] = {.lex_state = 2}, + [735] = {.lex_state = 3}, + [736] = {.lex_state = 3}, [737] = {.lex_state = 2}, [738] = {.lex_state = 2}, - [739] = {.lex_state = 3}, + [739] = {.lex_state = 2}, [740] = {.lex_state = 2}, - [741] = {.lex_state = 15}, - [742] = {.lex_state = 3}, - [743] = {.lex_state = 3}, - [744] = {.lex_state = 2}, - [745] = {.lex_state = 2}, - [746] = {.lex_state = 3}, - [747] = {.lex_state = 3}, + [741] = {.lex_state = 2}, + [742] = {.lex_state = 2}, + [743] = {.lex_state = 2}, + [744] = {.lex_state = 14}, + [745] = {.lex_state = 15}, + [746] = {.lex_state = 14}, + [747] = {.lex_state = 14}, [748] = {.lex_state = 2}, [749] = {.lex_state = 2}, - [750] = {.lex_state = 3}, - [751] = {.lex_state = 3}, - [752] = {.lex_state = 2}, - [753] = {.lex_state = 2}, + [750] = {.lex_state = 2}, + [751] = {.lex_state = 2}, + [752] = {.lex_state = 3}, + [753] = {.lex_state = 3}, [754] = {.lex_state = 2}, [755] = {.lex_state = 3}, [756] = {.lex_state = 3}, @@ -8754,27 +8826,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [760] = {.lex_state = 3}, [761] = {.lex_state = 2}, [762] = {.lex_state = 3}, - [763] = {.lex_state = 2}, - [764] = {.lex_state = 2}, - [765] = {.lex_state = 3}, + [763] = {.lex_state = 3}, + [764] = {.lex_state = 3}, + [765] = {.lex_state = 2}, [766] = {.lex_state = 3}, - [767] = {.lex_state = 3}, + [767] = {.lex_state = 2}, [768] = {.lex_state = 3}, [769] = {.lex_state = 2}, [770] = {.lex_state = 2}, [771] = {.lex_state = 2}, - [772] = {.lex_state = 3}, - [773] = {.lex_state = 3}, + [772] = {.lex_state = 2}, + [773] = {.lex_state = 2}, [774] = {.lex_state = 3}, - [775] = {.lex_state = 3}, + [775] = {.lex_state = 15}, [776] = {.lex_state = 3}, - [777] = {.lex_state = 3}, - [778] = {.lex_state = 3}, - [779] = {.lex_state = 3}, - [780] = {.lex_state = 3}, - [781] = {.lex_state = 3}, - [782] = {.lex_state = 3}, - [783] = {.lex_state = 55}, + [777] = {.lex_state = 2}, + [778] = {.lex_state = 2}, + [779] = {.lex_state = 2}, + [780] = {.lex_state = 2}, + [781] = {.lex_state = 2}, + [782] = {.lex_state = 2}, + [783] = {.lex_state = 3}, [784] = {.lex_state = 3}, [785] = {.lex_state = 3}, [786] = {.lex_state = 3}, @@ -8796,11 +8868,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [802] = {.lex_state = 3}, [803] = {.lex_state = 3}, [804] = {.lex_state = 3}, - [805] = {.lex_state = 15}, + [805] = {.lex_state = 3}, [806] = {.lex_state = 3}, [807] = {.lex_state = 3}, [808] = {.lex_state = 3}, - [809] = {.lex_state = 3}, + [809] = {.lex_state = 55}, [810] = {.lex_state = 3}, [811] = {.lex_state = 3}, [812] = {.lex_state = 3}, @@ -8809,18 +8881,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [815] = {.lex_state = 3}, [816] = {.lex_state = 3}, [817] = {.lex_state = 3}, - [818] = {.lex_state = 55}, - [819] = {.lex_state = 55}, - [820] = {.lex_state = 55}, - [821] = {.lex_state = 55}, - [822] = {.lex_state = 55}, - [823] = {.lex_state = 55}, - [824] = {.lex_state = 55}, - [825] = {.lex_state = 20}, - [826] = {.lex_state = 20}, - [827] = {.lex_state = 55}, - [828] = {.lex_state = 55}, - [829] = {.lex_state = 55}, + [818] = {.lex_state = 3}, + [819] = {.lex_state = 3}, + [820] = {.lex_state = 3}, + [821] = {.lex_state = 3}, + [822] = {.lex_state = 3}, + [823] = {.lex_state = 3}, + [824] = {.lex_state = 3}, + [825] = {.lex_state = 3}, + [826] = {.lex_state = 3}, + [827] = {.lex_state = 3}, + [828] = {.lex_state = 15}, + [829] = {.lex_state = 3}, [830] = {.lex_state = 55}, [831] = {.lex_state = 55}, [832] = {.lex_state = 55}, @@ -8828,335 +8900,335 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [834] = {.lex_state = 55}, [835] = {.lex_state = 55}, [836] = {.lex_state = 55}, - [837] = {.lex_state = 55}, - [838] = {.lex_state = 55}, + [837] = {.lex_state = 20}, + [838] = {.lex_state = 20}, [839] = {.lex_state = 55}, [840] = {.lex_state = 55}, - [841] = {.lex_state = 8}, - [842] = {.lex_state = 8}, - [843] = {.lex_state = 8}, - [844] = {.lex_state = 8}, - [845] = {.lex_state = 247}, - [846] = {.lex_state = 247}, - [847] = {.lex_state = 247}, - [848] = {.lex_state = 247}, - [849] = {.lex_state = 247}, - [850] = {.lex_state = 247}, - [851] = {.lex_state = 247}, - [852] = {.lex_state = 247}, - [853] = {.lex_state = 247}, + [841] = {.lex_state = 55}, + [842] = {.lex_state = 55}, + [843] = {.lex_state = 55}, + [844] = {.lex_state = 55}, + [845] = {.lex_state = 55}, + [846] = {.lex_state = 55}, + [847] = {.lex_state = 55}, + [848] = {.lex_state = 55}, + [849] = {.lex_state = 55}, + [850] = {.lex_state = 55}, + [851] = {.lex_state = 55}, + [852] = {.lex_state = 55}, + [853] = {.lex_state = 8}, [854] = {.lex_state = 8}, - [855] = {.lex_state = 58}, - [856] = {.lex_state = 58}, - [857] = {.lex_state = 247}, - [858] = {.lex_state = 58}, - [859] = {.lex_state = 0}, + [855] = {.lex_state = 8}, + [856] = {.lex_state = 8}, + [857] = {.lex_state = 8}, + [858] = {.lex_state = 8}, + [859] = {.lex_state = 8}, [860] = {.lex_state = 8}, - [861] = {.lex_state = 0}, + [861] = {.lex_state = 8}, [862] = {.lex_state = 8}, - [863] = {.lex_state = 58}, - [864] = {.lex_state = 247}, - [865] = {.lex_state = 9}, - [866] = {.lex_state = 8}, - [867] = {.lex_state = 9}, - [868] = {.lex_state = 8}, - [869] = {.lex_state = 8}, - [870] = {.lex_state = 21}, + [863] = {.lex_state = 8}, + [864] = {.lex_state = 8}, + [865] = {.lex_state = 8}, + [866] = {.lex_state = 58}, + [867] = {.lex_state = 58}, + [868] = {.lex_state = 58}, + [869] = {.lex_state = 58}, + [870] = {.lex_state = 8}, [871] = {.lex_state = 8}, [872] = {.lex_state = 8}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 21}, - [875] = {.lex_state = 9}, - [876] = {.lex_state = 9}, + [873] = {.lex_state = 8}, + [874] = {.lex_state = 8}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 0}, [877] = {.lex_state = 8}, [878] = {.lex_state = 8}, - [879] = {.lex_state = 247}, - [880] = {.lex_state = 247}, + [879] = {.lex_state = 8}, + [880] = {.lex_state = 9}, [881] = {.lex_state = 8}, - [882] = {.lex_state = 8}, - [883] = {.lex_state = 247}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 21}, [884] = {.lex_state = 8}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 22}, + [885] = {.lex_state = 8}, + [886] = {.lex_state = 9}, [887] = {.lex_state = 8}, - [888] = {.lex_state = 21}, - [889] = {.lex_state = 21}, - [890] = {.lex_state = 22}, - [891] = {.lex_state = 8}, + [888] = {.lex_state = 9}, + [889] = {.lex_state = 9}, + [890] = {.lex_state = 21}, + [891] = {.lex_state = 58}, [892] = {.lex_state = 8}, - [893] = {.lex_state = 8}, - [894] = {.lex_state = 21}, - [895] = {.lex_state = 8}, - [896] = {.lex_state = 8}, - [897] = {.lex_state = 21}, + [893] = {.lex_state = 21}, + [894] = {.lex_state = 249}, + [895] = {.lex_state = 22}, + [896] = {.lex_state = 249}, + [897] = {.lex_state = 8}, [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 22}, - [901] = {.lex_state = 58}, + [899] = {.lex_state = 8}, + [900] = {.lex_state = 249}, + [901] = {.lex_state = 8}, [902] = {.lex_state = 8}, - [903] = {.lex_state = 247}, - [904] = {.lex_state = 22}, - [905] = {.lex_state = 58}, - [906] = {.lex_state = 22}, - [907] = {.lex_state = 22}, - [908] = {.lex_state = 22}, - [909] = {.lex_state = 22}, - [910] = {.lex_state = 22}, - [911] = {.lex_state = 9}, - [912] = {.lex_state = 247}, + [903] = {.lex_state = 58}, + [904] = {.lex_state = 21}, + [905] = {.lex_state = 8}, + [906] = {.lex_state = 58}, + [907] = {.lex_state = 0}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 8}, + [910] = {.lex_state = 8}, + [911] = {.lex_state = 8}, + [912] = {.lex_state = 22}, [913] = {.lex_state = 21}, - [914] = {.lex_state = 22}, - [915] = {.lex_state = 58}, + [914] = {.lex_state = 21}, + [915] = {.lex_state = 8}, [916] = {.lex_state = 58}, - [917] = {.lex_state = 58}, - [918] = {.lex_state = 58}, + [917] = {.lex_state = 9}, + [918] = {.lex_state = 22}, [919] = {.lex_state = 22}, - [920] = {.lex_state = 247}, + [920] = {.lex_state = 58}, [921] = {.lex_state = 58}, [922] = {.lex_state = 22}, [923] = {.lex_state = 58}, [924] = {.lex_state = 58}, [925] = {.lex_state = 58}, - [926] = {.lex_state = 22}, + [926] = {.lex_state = 58}, [927] = {.lex_state = 58}, - [928] = {.lex_state = 58}, + [928] = {.lex_state = 22}, [929] = {.lex_state = 58}, - [930] = {.lex_state = 22}, + [930] = {.lex_state = 58}, [931] = {.lex_state = 58}, [932] = {.lex_state = 58}, - [933] = {.lex_state = 58}, - [934] = {.lex_state = 22}, + [933] = {.lex_state = 22}, + [934] = {.lex_state = 21}, [935] = {.lex_state = 58}, - [936] = {.lex_state = 58}, + [936] = {.lex_state = 22}, [937] = {.lex_state = 58}, [938] = {.lex_state = 58}, [939] = {.lex_state = 58}, - [940] = {.lex_state = 22}, + [940] = {.lex_state = 58}, [941] = {.lex_state = 58}, [942] = {.lex_state = 58}, [943] = {.lex_state = 58}, - [944] = {.lex_state = 58}, - [945] = {.lex_state = 58}, + [944] = {.lex_state = 8}, + [945] = {.lex_state = 249}, [946] = {.lex_state = 58}, - [947] = {.lex_state = 247}, + [947] = {.lex_state = 58}, [948] = {.lex_state = 58}, [949] = {.lex_state = 22}, - [950] = {.lex_state = 58}, + [950] = {.lex_state = 22}, [951] = {.lex_state = 58}, - [952] = {.lex_state = 22}, - [953] = {.lex_state = 22}, - [954] = {.lex_state = 247}, + [952] = {.lex_state = 58}, + [953] = {.lex_state = 58}, + [954] = {.lex_state = 58}, [955] = {.lex_state = 58}, [956] = {.lex_state = 58}, - [957] = {.lex_state = 247}, - [958] = {.lex_state = 58}, - [959] = {.lex_state = 247}, + [957] = {.lex_state = 58}, + [958] = {.lex_state = 22}, + [959] = {.lex_state = 249}, [960] = {.lex_state = 22}, [961] = {.lex_state = 22}, - [962] = {.lex_state = 59}, - [963] = {.lex_state = 59}, - [964] = {.lex_state = 22}, - [965] = {.lex_state = 22}, - [966] = {.lex_state = 59}, - [967] = {.lex_state = 247}, - [968] = {.lex_state = 247}, - [969] = {.lex_state = 247}, - [970] = {.lex_state = 247}, - [971] = {.lex_state = 247}, - [972] = {.lex_state = 247}, - [973] = {.lex_state = 9}, - [974] = {.lex_state = 247}, - [975] = {.lex_state = 22}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 8}, - [978] = {.lex_state = 8}, - [979] = {.lex_state = 247}, - [980] = {.lex_state = 247}, - [981] = {.lex_state = 9}, - [982] = {.lex_state = 0}, - [983] = {.lex_state = 9}, - [984] = {.lex_state = 247}, + [962] = {.lex_state = 22}, + [963] = {.lex_state = 22}, + [964] = {.lex_state = 249}, + [965] = {.lex_state = 249}, + [966] = {.lex_state = 22}, + [967] = {.lex_state = 249}, + [968] = {.lex_state = 22}, + [969] = {.lex_state = 22}, + [970] = {.lex_state = 249}, + [971] = {.lex_state = 22}, + [972] = {.lex_state = 22}, + [973] = {.lex_state = 249}, + [974] = {.lex_state = 249}, + [975] = {.lex_state = 249}, + [976] = {.lex_state = 22}, + [977] = {.lex_state = 249}, + [978] = {.lex_state = 22}, + [979] = {.lex_state = 22}, + [980] = {.lex_state = 22}, + [981] = {.lex_state = 249}, + [982] = {.lex_state = 249}, + [983] = {.lex_state = 59}, + [984] = {.lex_state = 249}, [985] = {.lex_state = 9}, - [986] = {.lex_state = 9}, - [987] = {.lex_state = 247}, - [988] = {.lex_state = 9}, - [989] = {.lex_state = 0}, + [986] = {.lex_state = 59}, + [987] = {.lex_state = 59}, + [988] = {.lex_state = 249}, + [989] = {.lex_state = 9}, [990] = {.lex_state = 0}, - [991] = {.lex_state = 0}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 247}, - [995] = {.lex_state = 247}, - [996] = {.lex_state = 0}, - [997] = {.lex_state = 8}, - [998] = {.lex_state = 5}, - [999] = {.lex_state = 22}, - [1000] = {.lex_state = 58}, - [1001] = {.lex_state = 5}, - [1002] = {.lex_state = 59}, + [991] = {.lex_state = 249}, + [992] = {.lex_state = 9}, + [993] = {.lex_state = 249}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 0}, + [996] = {.lex_state = 249}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 8}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 249}, + [1002] = {.lex_state = 9}, [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 8}, - [1005] = {.lex_state = 60}, - [1006] = {.lex_state = 8}, - [1007] = {.lex_state = 8}, - [1008] = {.lex_state = 8}, - [1009] = {.lex_state = 60}, - [1010] = {.lex_state = 8}, - [1011] = {.lex_state = 247}, - [1012] = {.lex_state = 247}, - [1013] = {.lex_state = 4}, - [1014] = {.lex_state = 5}, - [1015] = {.lex_state = 58}, + [1004] = {.lex_state = 249}, + [1005] = {.lex_state = 8}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 9}, + [1008] = {.lex_state = 9}, + [1009] = {.lex_state = 249}, + [1010] = {.lex_state = 0}, + [1011] = {.lex_state = 60}, + [1012] = {.lex_state = 249}, + [1013] = {.lex_state = 8}, + [1014] = {.lex_state = 60}, + [1015] = {.lex_state = 8}, [1016] = {.lex_state = 8}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 8}, - [1019] = {.lex_state = 8}, - [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 8}, - [1022] = {.lex_state = 60}, - [1023] = {.lex_state = 247}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 8}, - [1026] = {.lex_state = 247}, - [1027] = {.lex_state = 58}, - [1028] = {.lex_state = 5}, - [1029] = {.lex_state = 4}, + [1017] = {.lex_state = 8}, + [1018] = {.lex_state = 60}, + [1019] = {.lex_state = 5}, + [1020] = {.lex_state = 249}, + [1021] = {.lex_state = 0}, + [1022] = {.lex_state = 8}, + [1023] = {.lex_state = 8}, + [1024] = {.lex_state = 8}, + [1025] = {.lex_state = 22}, + [1026] = {.lex_state = 5}, + [1027] = {.lex_state = 60}, + [1028] = {.lex_state = 58}, + [1029] = {.lex_state = 249}, [1030] = {.lex_state = 8}, - [1031] = {.lex_state = 247}, - [1032] = {.lex_state = 21}, - [1033] = {.lex_state = 21}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 58}, - [1036] = {.lex_state = 5}, - [1037] = {.lex_state = 5}, - [1038] = {.lex_state = 60}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 5}, - [1041] = {.lex_state = 247}, - [1042] = {.lex_state = 5}, + [1031] = {.lex_state = 249}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 249}, + [1034] = {.lex_state = 8}, + [1035] = {.lex_state = 0}, + [1036] = {.lex_state = 58}, + [1037] = {.lex_state = 0}, + [1038] = {.lex_state = 249}, + [1039] = {.lex_state = 5}, + [1040] = {.lex_state = 8}, + [1041] = {.lex_state = 59}, + [1042] = {.lex_state = 0}, [1043] = {.lex_state = 8}, - [1044] = {.lex_state = 247}, - [1045] = {.lex_state = 8}, + [1044] = {.lex_state = 8}, + [1045] = {.lex_state = 21}, [1046] = {.lex_state = 8}, - [1047] = {.lex_state = 247}, - [1048] = {.lex_state = 247}, - [1049] = {.lex_state = 59}, - [1050] = {.lex_state = 247}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 247}, - [1053] = {.lex_state = 247}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 247}, - [1056] = {.lex_state = 247}, - [1057] = {.lex_state = 247}, - [1058] = {.lex_state = 58}, - [1059] = {.lex_state = 60}, - [1060] = {.lex_state = 247}, - [1061] = {.lex_state = 5}, - [1062] = {.lex_state = 9}, - [1063] = {.lex_state = 60}, - [1064] = {.lex_state = 58}, - [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 59}, - [1067] = {.lex_state = 59}, - [1068] = {.lex_state = 59}, - [1069] = {.lex_state = 59}, - [1070] = {.lex_state = 58}, - [1071] = {.lex_state = 59}, - [1072] = {.lex_state = 59}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 59}, - [1075] = {.lex_state = 247}, - [1076] = {.lex_state = 60}, - [1077] = {.lex_state = 60}, + [1047] = {.lex_state = 4}, + [1048] = {.lex_state = 5}, + [1049] = {.lex_state = 4}, + [1050] = {.lex_state = 58}, + [1051] = {.lex_state = 249}, + [1052] = {.lex_state = 8}, + [1053] = {.lex_state = 21}, + [1054] = {.lex_state = 5}, + [1055] = {.lex_state = 249}, + [1056] = {.lex_state = 5}, + [1057] = {.lex_state = 58}, + [1058] = {.lex_state = 8}, + [1059] = {.lex_state = 5}, + [1060] = {.lex_state = 5}, + [1061] = {.lex_state = 60}, + [1062] = {.lex_state = 58}, + [1063] = {.lex_state = 249}, + [1064] = {.lex_state = 60}, + [1065] = {.lex_state = 249}, + [1066] = {.lex_state = 249}, + [1067] = {.lex_state = 60}, + [1068] = {.lex_state = 5}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 249}, + [1071] = {.lex_state = 60}, + [1072] = {.lex_state = 5}, + [1073] = {.lex_state = 58}, + [1074] = {.lex_state = 58}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 0}, + [1077] = {.lex_state = 249}, [1078] = {.lex_state = 60}, - [1079] = {.lex_state = 247}, - [1080] = {.lex_state = 59}, - [1081] = {.lex_state = 59}, - [1082] = {.lex_state = 59}, - [1083] = {.lex_state = 58}, - [1084] = {.lex_state = 0}, + [1079] = {.lex_state = 249}, + [1080] = {.lex_state = 249}, + [1081] = {.lex_state = 60}, + [1082] = {.lex_state = 60}, + [1083] = {.lex_state = 59}, + [1084] = {.lex_state = 249}, [1085] = {.lex_state = 59}, - [1086] = {.lex_state = 59}, + [1086] = {.lex_state = 0}, [1087] = {.lex_state = 59}, [1088] = {.lex_state = 59}, - [1089] = {.lex_state = 60}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 5}, + [1089] = {.lex_state = 58}, + [1090] = {.lex_state = 59}, + [1091] = {.lex_state = 59}, [1092] = {.lex_state = 0}, [1093] = {.lex_state = 59}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 247}, - [1096] = {.lex_state = 59}, + [1094] = {.lex_state = 59}, + [1095] = {.lex_state = 249}, + [1096] = {.lex_state = 249}, [1097] = {.lex_state = 59}, [1098] = {.lex_state = 59}, - [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 5}, + [1099] = {.lex_state = 59}, + [1100] = {.lex_state = 59}, [1101] = {.lex_state = 59}, [1102] = {.lex_state = 59}, - [1103] = {.lex_state = 58}, - [1104] = {.lex_state = 59}, - [1105] = {.lex_state = 59}, + [1103] = {.lex_state = 0}, + [1104] = {.lex_state = 249}, + [1105] = {.lex_state = 249}, [1106] = {.lex_state = 59}, - [1107] = {.lex_state = 58}, - [1108] = {.lex_state = 58}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 5}, - [1111] = {.lex_state = 59}, - [1112] = {.lex_state = 59}, - [1113] = {.lex_state = 59}, - [1114] = {.lex_state = 59}, - [1115] = {.lex_state = 5}, - [1116] = {.lex_state = 59}, - [1117] = {.lex_state = 58}, - [1118] = {.lex_state = 0}, + [1107] = {.lex_state = 249}, + [1108] = {.lex_state = 0}, + [1109] = {.lex_state = 249}, + [1110] = {.lex_state = 58}, + [1111] = {.lex_state = 5}, + [1112] = {.lex_state = 0}, + [1113] = {.lex_state = 5}, + [1114] = {.lex_state = 249}, + [1115] = {.lex_state = 0}, + [1116] = {.lex_state = 0}, + [1117] = {.lex_state = 59}, + [1118] = {.lex_state = 59}, [1119] = {.lex_state = 59}, - [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 247}, - [1122] = {.lex_state = 247}, - [1123] = {.lex_state = 247}, - [1124] = {.lex_state = 5}, - [1125] = {.lex_state = 58}, - [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 247}, - [1128] = {.lex_state = 247}, - [1129] = {.lex_state = 247}, - [1130] = {.lex_state = 247}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 247}, + [1120] = {.lex_state = 59}, + [1121] = {.lex_state = 59}, + [1122] = {.lex_state = 59}, + [1123] = {.lex_state = 59}, + [1124] = {.lex_state = 59}, + [1125] = {.lex_state = 0}, + [1126] = {.lex_state = 59}, + [1127] = {.lex_state = 58}, + [1128] = {.lex_state = 59}, + [1129] = {.lex_state = 59}, + [1130] = {.lex_state = 59}, + [1131] = {.lex_state = 59}, + [1132] = {.lex_state = 249}, [1133] = {.lex_state = 59}, - [1134] = {.lex_state = 0}, + [1134] = {.lex_state = 59}, [1135] = {.lex_state = 59}, - [1136] = {.lex_state = 5}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 59}, - [1139] = {.lex_state = 59}, - [1140] = {.lex_state = 59}, + [1136] = {.lex_state = 249}, + [1137] = {.lex_state = 59}, + [1138] = {.lex_state = 249}, + [1139] = {.lex_state = 0}, + [1140] = {.lex_state = 60}, [1141] = {.lex_state = 59}, - [1142] = {.lex_state = 59}, - [1143] = {.lex_state = 60}, - [1144] = {.lex_state = 60}, - [1145] = {.lex_state = 247}, - [1146] = {.lex_state = 58}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 58}, + [1144] = {.lex_state = 59}, + [1145] = {.lex_state = 58}, + [1146] = {.lex_state = 5}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 14}, - [1151] = {.lex_state = 21}, + [1148] = {.lex_state = 58}, + [1149] = {.lex_state = 5}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 5}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 247}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 5}, - [1160] = {.lex_state = 9}, - [1161] = {.lex_state = 247}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 9}, - [1165] = {.lex_state = 0}, + [1153] = {.lex_state = 58}, + [1154] = {.lex_state = 59}, + [1155] = {.lex_state = 59}, + [1156] = {.lex_state = 59}, + [1157] = {.lex_state = 9}, + [1158] = {.lex_state = 249}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 249}, + [1162] = {.lex_state = 14}, + [1163] = {.lex_state = 5}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 249}, [1166] = {.lex_state = 0}, [1167] = {.lex_state = 0}, [1168] = {.lex_state = 0}, @@ -9166,470 +9238,485 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 9}, - [1175] = {.lex_state = 9}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 247}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 21}, + [1177] = {.lex_state = 9}, [1178] = {.lex_state = 9}, [1179] = {.lex_state = 9}, - [1180] = {.lex_state = 9}, - [1181] = {.lex_state = 0}, + [1180] = {.lex_state = 0}, + [1181] = {.lex_state = 9}, [1182] = {.lex_state = 9}, - [1183] = {.lex_state = 247}, - [1184] = {.lex_state = 247}, - [1185] = {.lex_state = 9}, + [1183] = {.lex_state = 0}, + [1184] = {.lex_state = 249}, + [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 247}, - [1188] = {.lex_state = 9}, + [1187] = {.lex_state = 60}, + [1188] = {.lex_state = 249}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 9}, - [1191] = {.lex_state = 9}, - [1192] = {.lex_state = 0}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 9}, [1193] = {.lex_state = 9}, - [1194] = {.lex_state = 14}, - [1195] = {.lex_state = 22}, - [1196] = {.lex_state = 247}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 249}, + [1196] = {.lex_state = 0}, [1197] = {.lex_state = 9}, - [1198] = {.lex_state = 247}, - [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 0}, + [1198] = {.lex_state = 9}, + [1199] = {.lex_state = 14}, + [1200] = {.lex_state = 249}, [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 247}, - [1203] = {.lex_state = 247}, - [1204] = {.lex_state = 247}, + [1202] = {.lex_state = 22}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, [1205] = {.lex_state = 9}, - [1206] = {.lex_state = 5}, - [1207] = {.lex_state = 247}, + [1206] = {.lex_state = 249}, + [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 247}, - [1211] = {.lex_state = 0}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 9}, [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 247}, + [1213] = {.lex_state = 9}, [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 9}, + [1215] = {.lex_state = 249}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 9}, + [1217] = {.lex_state = 0}, [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 14}, - [1221] = {.lex_state = 0}, + [1220] = {.lex_state = 0}, + [1221] = {.lex_state = 9}, [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 14}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 9}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 249}, + [1225] = {.lex_state = 249}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 9}, + [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 9}, + [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 5}, + [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 9}, - [1235] = {.lex_state = 9}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 14}, [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 247}, + [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 14}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 9}, - [1244] = {.lex_state = 0}, + [1241] = {.lex_state = 249}, + [1242] = {.lex_state = 249}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 249}, [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, + [1246] = {.lex_state = 9}, + [1247] = {.lex_state = 249}, [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 9}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 9}, - [1255] = {.lex_state = 9}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 247}, - [1259] = {.lex_state = 247}, + [1249] = {.lex_state = 249}, + [1250] = {.lex_state = 249}, + [1251] = {.lex_state = 5}, + [1252] = {.lex_state = 9}, + [1253] = {.lex_state = 9}, + [1254] = {.lex_state = 249}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 249}, + [1257] = {.lex_state = 249}, + [1258] = {.lex_state = 9}, + [1259] = {.lex_state = 9}, [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 0}, + [1261] = {.lex_state = 9}, [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 247}, + [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 247}, + [1267] = {.lex_state = 14}, [1268] = {.lex_state = 0}, [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 60}, + [1270] = {.lex_state = 0}, [1271] = {.lex_state = 0}, [1272] = {.lex_state = 0}, [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 14}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 9}, + [1276] = {.lex_state = 9}, + [1277] = {.lex_state = 249}, + [1278] = {.lex_state = 249}, + [1279] = {.lex_state = 9}, + [1280] = {.lex_state = 249}, [1281] = {.lex_state = 0}, [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 0}, + [1283] = {.lex_state = 9}, + [1284] = {.lex_state = 9}, + [1285] = {.lex_state = 9}, [1286] = {.lex_state = 9}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 9}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 9}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, + [1287] = {.lex_state = 9}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 249}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 249}, + [1292] = {.lex_state = 9}, [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 9}, - [1295] = {.lex_state = 247}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 5}, - [1298] = {.lex_state = 5}, - [1299] = {.lex_state = 9}, - [1300] = {.lex_state = 9}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 0}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, + [1303] = {.lex_state = 9}, [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 9}, - [1306] = {.lex_state = 247}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 9}, + [1305] = {.lex_state = 5}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 9}, + [1308] = {.lex_state = 0}, [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 0}, + [1311] = {.lex_state = 9}, + [1312] = {.lex_state = 5}, [1313] = {.lex_state = 0}, [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 9}, + [1315] = {.lex_state = 249}, + [1316] = {.lex_state = 249}, + [1317] = {.lex_state = 0}, [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 9}, + [1319] = {.lex_state = 0}, [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 247}, + [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 0}, + [1323] = {.lex_state = 9}, [1324] = {.lex_state = 0}, [1325] = {.lex_state = 0}, [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 247}, - [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 247}, - [1330] = {.lex_state = 247}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 249}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 0}, [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 9}, - [1333] = {.lex_state = 247}, - [1334] = {.lex_state = 5}, + [1332] = {.lex_state = 14}, + [1333] = {.lex_state = 0}, + [1334] = {.lex_state = 9}, [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 0}, + [1336] = {.lex_state = 5}, [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 247}, - [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 59}, - [1341] = {.lex_state = 247}, - [1342] = {.lex_state = 247}, - [1343] = {.lex_state = 8}, - [1344] = {.lex_state = 247}, - [1345] = {.lex_state = 59}, - [1346] = {.lex_state = 57}, - [1347] = {.lex_state = 8}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 247}, - [1350] = {.lex_state = 247}, - [1351] = {.lex_state = 247}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 5}, + [1340] = {.lex_state = 9}, + [1341] = {.lex_state = 9}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 0}, + [1344] = {.lex_state = 9}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 0}, + [1348] = {.lex_state = 14}, + [1349] = {.lex_state = 0}, + [1350] = {.lex_state = 0}, + [1351] = {.lex_state = 59}, [1352] = {.lex_state = 0}, [1353] = {.lex_state = 0}, [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 59}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 8}, + [1357] = {.lex_state = 249}, + [1358] = {.lex_state = 8}, [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 247}, - [1363] = {.lex_state = 0}, + [1361] = {.lex_state = 8}, + [1362] = {.lex_state = 8}, + [1363] = {.lex_state = 249}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 247}, + [1365] = {.lex_state = 249}, + [1366] = {.lex_state = 249}, [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, + [1368] = {.lex_state = 58}, [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 247}, - [1371] = {.lex_state = 247}, + [1370] = {.lex_state = 59}, + [1371] = {.lex_state = 0}, [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 247}, - [1375] = {.lex_state = 0}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 249}, [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 247}, + [1378] = {.lex_state = 57}, + [1379] = {.lex_state = 249}, [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 247}, - [1382] = {.lex_state = 59}, - [1383] = {.lex_state = 247}, - [1384] = {.lex_state = 247}, - [1385] = {.lex_state = 247}, - [1386] = {.lex_state = 247}, + [1381] = {.lex_state = 249}, + [1382] = {.lex_state = 249}, + [1383] = {.lex_state = 59}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 249}, + [1386] = {.lex_state = 249}, [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 247}, - [1389] = {.lex_state = 59}, - [1390] = {.lex_state = 247}, - [1391] = {.lex_state = 59}, + [1388] = {.lex_state = 58}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 0}, + [1391] = {.lex_state = 0}, [1392] = {.lex_state = 0}, [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 59}, - [1395] = {.lex_state = 59}, - [1396] = {.lex_state = 247}, - [1397] = {.lex_state = 59}, - [1398] = {.lex_state = 0}, + [1394] = {.lex_state = 0}, + [1395] = {.lex_state = 0}, + [1396] = {.lex_state = 249}, + [1397] = {.lex_state = 0}, + [1398] = {.lex_state = 21}, [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 247}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 59}, - [1404] = {.lex_state = 0}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 249}, + [1402] = {.lex_state = 59}, + [1403] = {.lex_state = 249}, + [1404] = {.lex_state = 59}, [1405] = {.lex_state = 0}, [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 0}, + [1407] = {.lex_state = 249}, + [1408] = {.lex_state = 59}, [1409] = {.lex_state = 59}, - [1410] = {.lex_state = 247}, - [1411] = {.lex_state = 247}, - [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 59}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 247}, + [1410] = {.lex_state = 249}, + [1411] = {.lex_state = 249}, + [1412] = {.lex_state = 59}, + [1413] = {.lex_state = 249}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 249}, + [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 59}, - [1419] = {.lex_state = 59}, - [1420] = {.lex_state = 21}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 59}, - [1424] = {.lex_state = 0}, + [1418] = {.lex_state = 0}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 59}, + [1422] = {.lex_state = 59}, + [1423] = {.lex_state = 0}, + [1424] = {.lex_state = 59}, [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 59}, - [1429] = {.lex_state = 0}, + [1426] = {.lex_state = 59}, + [1427] = {.lex_state = 59}, + [1428] = {.lex_state = 0}, + [1429] = {.lex_state = 59}, [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 247}, - [1432] = {.lex_state = 59}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 0}, [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 59}, - [1435] = {.lex_state = 59}, + [1434] = {.lex_state = 249}, + [1435] = {.lex_state = 249}, [1436] = {.lex_state = 59}, - [1437] = {.lex_state = 58}, - [1438] = {.lex_state = 59}, - [1439] = {.lex_state = 247}, - [1440] = {.lex_state = 58}, - [1441] = {.lex_state = 59}, - [1442] = {.lex_state = 59}, - [1443] = {.lex_state = 247}, - [1444] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 59}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 249}, + [1443] = {.lex_state = 59}, + [1444] = {.lex_state = 8}, [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 58}, - [1447] = {.lex_state = 59}, + [1446] = {.lex_state = 59}, + [1447] = {.lex_state = 249}, [1448] = {.lex_state = 59}, - [1449] = {.lex_state = 59}, + [1449] = {.lex_state = 249}, [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 21}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 59}, - [1454] = {.lex_state = 8}, - [1455] = {.lex_state = 247}, + [1451] = {.lex_state = 249}, + [1452] = {.lex_state = 21}, + [1453] = {.lex_state = 249}, + [1454] = {.lex_state = 0}, + [1455] = {.lex_state = 59}, [1456] = {.lex_state = 59}, - [1457] = {.lex_state = 247}, + [1457] = {.lex_state = 0}, [1458] = {.lex_state = 0}, [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 59}, - [1462] = {.lex_state = 8}, + [1460] = {.lex_state = 59}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, [1463] = {.lex_state = 59}, - [1464] = {.lex_state = 247}, + [1464] = {.lex_state = 0}, [1465] = {.lex_state = 59}, - [1466] = {.lex_state = 59}, - [1467] = {.lex_state = 59}, - [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 0}, + [1468] = {.lex_state = 58}, + [1469] = {.lex_state = 8}, [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 0}, + [1471] = {.lex_state = 249}, + [1472] = {.lex_state = 59}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 10}, - [1479] = {.lex_state = 14}, - [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 14}, + [1474] = {.lex_state = 59}, + [1475] = {.lex_state = 59}, + [1476] = {.lex_state = 59}, + [1477] = {.lex_state = 249}, + [1478] = {.lex_state = 249}, + [1479] = {.lex_state = 8}, + [1480] = {.lex_state = 59}, + [1481] = {.lex_state = 0}, [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 247}, - [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 0}, - [1487] = {.lex_state = 10}, - [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 57}, - [1490] = {.lex_state = 14}, + [1483] = {.lex_state = 249}, + [1484] = {.lex_state = 59}, + [1485] = {.lex_state = 249}, + [1486] = {.lex_state = 59}, + [1487] = {.lex_state = 59}, + [1488] = {.lex_state = 59}, + [1489] = {.lex_state = 4}, + [1490] = {.lex_state = 249}, [1491] = {.lex_state = 0}, [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 57}, - [1494] = {.lex_state = 0}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 14}, [1495] = {.lex_state = 0}, [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 0}, + [1497] = {.lex_state = 57}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 14}, - [1501] = {.lex_state = 0}, + [1500] = {.lex_state = 57}, + [1501] = {.lex_state = 57}, [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 57}, - [1504] = {.lex_state = 57}, + [1503] = {.lex_state = 10}, + [1504] = {.lex_state = 10}, [1505] = {.lex_state = 57}, - [1506] = {.lex_state = 57}, + [1506] = {.lex_state = 0}, [1507] = {.lex_state = 0}, [1508] = {.lex_state = 57}, - [1509] = {.lex_state = 57}, - [1510] = {.lex_state = 57}, - [1511] = {.lex_state = 57}, - [1512] = {.lex_state = 0}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 0}, + [1511] = {.lex_state = 0}, + [1512] = {.lex_state = 57}, [1513] = {.lex_state = 57}, - [1514] = {.lex_state = 57}, - [1515] = {.lex_state = 57}, - [1516] = {.lex_state = 57}, - [1517] = {.lex_state = 57}, - [1518] = {.lex_state = 57}, - [1519] = {.lex_state = 4}, - [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 57}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 10}, - [1524] = {.lex_state = 10}, - [1525] = {.lex_state = 404}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 10}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 0}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 57}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 57}, + [1523] = {.lex_state = 57}, + [1524] = {.lex_state = 57}, + [1525] = {.lex_state = 57}, + [1526] = {.lex_state = 57}, + [1527] = {.lex_state = 57}, + [1528] = {.lex_state = 10}, + [1529] = {.lex_state = 57}, [1530] = {.lex_state = 0}, [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, + [1532] = {.lex_state = 57}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 57}, + [1534] = {.lex_state = 408}, + [1535] = {.lex_state = 0}, [1536] = {.lex_state = 0}, [1537] = {.lex_state = 57}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 57}, + [1538] = {.lex_state = 10}, + [1539] = {.lex_state = 0}, [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 14}, - [1542] = {.lex_state = 57}, - [1543] = {.lex_state = 57}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, [1544] = {.lex_state = 57}, - [1545] = {.lex_state = 57}, + [1545] = {.lex_state = 0}, [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 57}, - [1548] = {.lex_state = 57}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 0}, [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 57}, - [1551] = {.lex_state = 0}, + [1550] = {.lex_state = 0}, + [1551] = {.lex_state = 57}, [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, + [1553] = {.lex_state = 57}, + [1554] = {.lex_state = 57}, [1555] = {.lex_state = 0}, [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 14}, - [1558] = {.lex_state = 0}, + [1557] = {.lex_state = 57}, + [1558] = {.lex_state = 57}, [1559] = {.lex_state = 0}, [1560] = {.lex_state = 0}, [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 57}, - [1563] = {.lex_state = 4}, - [1564] = {.lex_state = 57}, - [1565] = {.lex_state = 0}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 14}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 57}, [1566] = {.lex_state = 0}, [1567] = {.lex_state = 0}, [1568] = {.lex_state = 0}, [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, + [1570] = {.lex_state = 57}, + [1571] = {.lex_state = 4}, + [1572] = {.lex_state = 10}, [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 0}, + [1574] = {.lex_state = 14}, + [1575] = {.lex_state = 57}, [1576] = {.lex_state = 0}, [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 14}, + [1578] = {.lex_state = 0}, [1579] = {.lex_state = 0}, [1580] = {.lex_state = 0}, [1581] = {.lex_state = 0}, [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 14}, - [1584] = {.lex_state = 0}, + [1583] = {.lex_state = 0}, + [1584] = {.lex_state = 57}, [1585] = {.lex_state = 0}, [1586] = {.lex_state = 0}, [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 57}, + [1588] = {.lex_state = 14}, [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 0}, + [1590] = {.lex_state = 57}, + [1591] = {.lex_state = 14}, [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 404}, + [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 404}, - [1596] = {.lex_state = 0}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 57}, [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, [1599] = {.lex_state = 0}, [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 57}, - [1603] = {.lex_state = 57}, - [1604] = {.lex_state = 57}, - [1605] = {.lex_state = 404}, - [1606] = {.lex_state = 57}, - [1607] = {.lex_state = 57}, - [1608] = {.lex_state = 0}, + [1601] = {.lex_state = 57}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 408}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 0}, + [1606] = {.lex_state = 0}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 57}, [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 404}, - [1611] = {.lex_state = 57}, - [1612] = {.lex_state = 0}, + [1610] = {.lex_state = 408}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 57}, [1613] = {.lex_state = 0}, [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 57}, - [1616] = {.lex_state = 57}, - [1617] = {.lex_state = 0}, + [1615] = {.lex_state = 0}, + [1616] = {.lex_state = 408}, + [1617] = {.lex_state = 57}, [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 14}, + [1619] = {.lex_state = 0}, [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 0}, + [1621] = {.lex_state = 408}, [1622] = {.lex_state = 57}, [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 0}, + [1624] = {.lex_state = 57}, [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 14}, + [1626] = {.lex_state = 57}, [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 247}, + [1628] = {.lex_state = 0}, [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, + [1630] = {.lex_state = 14}, + [1631] = {.lex_state = 14}, [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 57}, - [1635] = {.lex_state = 57}, - [1636] = {.lex_state = 57}, - [1637] = {.lex_state = 57}, - [1638] = {.lex_state = 57}, + [1633] = {.lex_state = 57}, + [1634] = {.lex_state = 0}, + [1635] = {.lex_state = 14}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 0}, + [1638] = {.lex_state = 14}, + [1639] = {.lex_state = 0}, + [1640] = {.lex_state = 249}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 0}, + [1644] = {.lex_state = 14}, + [1645] = {.lex_state = 0}, + [1646] = {.lex_state = 0}, + [1647] = {.lex_state = 57}, + [1648] = {.lex_state = 57}, + [1649] = {.lex_state = 57}, + [1650] = {.lex_state = 57}, + [1651] = {.lex_state = 57}, + [1652] = {.lex_state = 57}, + [1653] = {.lex_state = 57}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9720,6 +9807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(1), [anon_sym_static] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), [sym_numeric_literal] = ACTIONS(1), [aux_sym_string_literal_token1] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), @@ -9729,136 +9817,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1), [anon_sym_LT2] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), - [anon_sym_ref] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), + [anon_sym_ref] = ACTIONS(1), [sym_mutable_specifier] = ACTIONS(1), [sym_super] = ACTIONS(1), [sym_crate] = ACTIONS(1), [sym_line_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(1591), - [sym__statement] = STATE(16), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_associated_impl] = STATE(16), - [sym_const_item] = STATE(16), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(16), - [sym_expression] = STATE(749), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(16), - [ts_builtin_sym_end] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_impl] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_trait] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_mod] = ACTIONS(25), - [anon_sym_struct] = ACTIONS(27), - [anon_sym_enum] = ACTIONS(29), - [anon_sym_fn] = ACTIONS(31), - [anon_sym_let] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_extern] = ACTIONS(53), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_pub] = ACTIONS(59), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [2] = { + [sym_source_file] = STATE(1605), [sym__statement] = STATE(11), [sym_impl_item] = STATE(11), [sym_trait_item] = STATE(11), [sym_associated_type] = STATE(11), [sym_associated_impl] = STATE(11), [sym_const_item] = STATE(11), - [sym_macro_invocation] = STATE(90), + [sym_macro_invocation] = STATE(95), [sym_empty_statement] = STATE(11), [sym_attribute_item] = STATE(11), [sym_inner_attribute_item] = STATE(11), @@ -9866,51 +9840,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(11), [sym_enum_item] = STATE(11), [sym_type_item] = STATE(11), - [sym_extern_type] = STATE(260), + [sym_extern_type] = STATE(340), [sym_external_function_item] = STATE(11), [sym_function_item] = STATE(11), [sym_function_signature_item] = STATE(11), - [sym_function] = STATE(1279), + [sym_function] = STATE(1166), [sym_let_declaration] = STATE(11), [sym_use_declaration] = STATE(11), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), [sym_expression_statement] = STATE(11), - [sym_expression] = STATE(690), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), [aux_sym_source_file_repeat1] = STATE(11), + [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(79), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -9955,74 +9930,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [3] = { - [sym__statement] = STATE(8), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_associated_impl] = STATE(8), - [sym_const_item] = STATE(8), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(8), - [sym_expression] = STATE(685), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(8), + [2] = { + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_associated_impl] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(618), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(81), [anon_sym_impl] = ACTIONS(9), @@ -10069,190 +10046,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [4] = { - [sym__statement] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_associated_impl] = STATE(4), - [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(91), - [sym_empty_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(749), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(4), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_RBRACE] = ACTIONS(86), - [anon_sym_impl] = ACTIONS(88), - [anon_sym_SEMI] = ACTIONS(91), - [anon_sym_trait] = ACTIONS(94), - [anon_sym_type] = ACTIONS(97), - [anon_sym_const] = ACTIONS(100), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(106), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_mod] = ACTIONS(112), - [anon_sym_struct] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(118), - [anon_sym_fn] = ACTIONS(121), - [anon_sym_let] = ACTIONS(124), - [anon_sym_use] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(130), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_u8] = ACTIONS(136), - [anon_sym_i8] = ACTIONS(136), - [anon_sym_u16] = ACTIONS(136), - [anon_sym_i16] = ACTIONS(136), - [anon_sym_u32] = ACTIONS(136), - [anon_sym_i32] = ACTIONS(136), - [anon_sym_u64] = ACTIONS(136), - [anon_sym_i64] = ACTIONS(136), - [anon_sym_u128] = ACTIONS(136), - [anon_sym_i128] = ACTIONS(136), - [anon_sym_usize] = ACTIONS(136), - [anon_sym_bool] = ACTIONS(136), - [anon_sym_ByteArray] = ACTIONS(136), - [anon_sym_felt252] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_break] = ACTIONS(142), - [anon_sym_continue] = ACTIONS(145), - [anon_sym_default] = ACTIONS(148), - [anon_sym_if] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(154), - [anon_sym_loop] = ACTIONS(157), - [anon_sym_match] = ACTIONS(160), - [anon_sym_pub] = ACTIONS(163), - [anon_sym_return] = ACTIONS(166), - [anon_sym_while] = ACTIONS(169), - [sym_numeric_literal] = ACTIONS(172), - [aux_sym_string_literal_token1] = ACTIONS(175), - [sym_shortstring_literal] = ACTIONS(178), - [anon_sym_true] = ACTIONS(181), - [anon_sym_false] = ACTIONS(181), - [anon_sym_ref] = ACTIONS(184), - [sym_identifier] = ACTIONS(187), - [sym_super] = ACTIONS(190), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [5] = { - [sym__statement] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_associated_impl] = STATE(4), - [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(604), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(4), + [3] = { + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_associated_impl] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(681), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(193), + [anon_sym_RBRACE] = ACTIONS(83), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10297,76 +10162,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [6] = { - [sym__statement] = STATE(5), - [sym_impl_item] = STATE(5), - [sym_trait_item] = STATE(5), - [sym_associated_type] = STATE(5), - [sym_associated_impl] = STATE(5), - [sym_const_item] = STATE(5), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(5), - [sym_attribute_item] = STATE(5), - [sym_inner_attribute_item] = STATE(5), - [sym_mod_item] = STATE(5), - [sym_struct_item] = STATE(5), - [sym_enum_item] = STATE(5), - [sym_type_item] = STATE(5), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(5), - [sym_function_item] = STATE(5), - [sym_function_signature_item] = STATE(5), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(5), - [sym_use_declaration] = STATE(5), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(5), - [sym_expression] = STATE(605), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(5), + [4] = { + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_associated_impl] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(658), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(195), + [anon_sym_RBRACE] = ACTIONS(85), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10411,76 +10278,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_associated_impl] = STATE(4), - [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(598), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(4), + [5] = { + [sym__statement] = STATE(2), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_associated_impl] = STATE(2), + [sym_const_item] = STATE(2), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(2), + [sym_expression] = STATE(615), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(2), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(87), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10525,76 +10394,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [8] = { - [sym__statement] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_associated_impl] = STATE(4), - [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(675), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(4), + [6] = { + [sym__statement] = STATE(3), + [sym_impl_item] = STATE(3), + [sym_trait_item] = STATE(3), + [sym_associated_type] = STATE(3), + [sym_associated_impl] = STATE(3), + [sym_const_item] = STATE(3), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_mod_item] = STATE(3), + [sym_struct_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_type_item] = STATE(3), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(3), + [sym_expression] = STATE(662), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(3), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(199), + [anon_sym_RBRACE] = ACTIONS(89), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10639,76 +10510,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [9] = { - [sym__statement] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_associated_impl] = STATE(4), - [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(607), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(4), + [7] = { + [sym__statement] = STATE(8), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_associated_impl] = STATE(8), + [sym_const_item] = STATE(8), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(8), + [sym_expression] = STATE(626), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(8), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(201), + [anon_sym_RBRACE] = ACTIONS(91), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10753,76 +10626,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [10] = { - [sym__statement] = STATE(9), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_associated_impl] = STATE(9), - [sym_const_item] = STATE(9), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(9), - [sym_expression] = STATE(608), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(9), + [8] = { + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_associated_impl] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(654), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(203), + [anon_sym_RBRACE] = ACTIONS(93), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10867,24 +10742,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [11] = { + [9] = { [sym__statement] = STATE(4), [sym_impl_item] = STATE(4), [sym_trait_item] = STATE(4), [sym_associated_type] = STATE(4), [sym_associated_impl] = STATE(4), [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(90), + [sym_macro_invocation] = STATE(95), [sym_empty_statement] = STATE(4), [sym_attribute_item] = STATE(4), [sym_inner_attribute_item] = STATE(4), @@ -10892,51 +10768,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(4), [sym_enum_item] = STATE(4), [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(260), + [sym_extern_type] = STATE(340), [sym_external_function_item] = STATE(4), [sym_function_item] = STATE(4), [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1279), + [sym_function] = STATE(1166), [sym_let_declaration] = STATE(4), [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(677), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), + [sym_expression] = STATE(657), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), [aux_sym_source_file_repeat1] = STATE(4), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(205), + [anon_sym_RBRACE] = ACTIONS(95), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -10981,24 +10858,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [12] = { + [10] = { [sym__statement] = STATE(12), [sym_impl_item] = STATE(12), [sym_trait_item] = STATE(12), [sym_associated_type] = STATE(12), [sym_associated_impl] = STATE(12), [sym_const_item] = STATE(12), - [sym_macro_invocation] = STATE(90), + [sym_macro_invocation] = STATE(95), [sym_empty_statement] = STATE(12), [sym_attribute_item] = STATE(12), [sym_inner_attribute_item] = STATE(12), @@ -11006,165 +10884,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(12), [sym_enum_item] = STATE(12), [sym_type_item] = STATE(12), - [sym_extern_type] = STATE(260), + [sym_extern_type] = STATE(340), [sym_external_function_item] = STATE(12), [sym_function_item] = STATE(12), [sym_function_signature_item] = STATE(12), - [sym_function] = STATE(1279), + [sym_function] = STATE(1166), [sym_let_declaration] = STATE(12), [sym_use_declaration] = STATE(12), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), [sym_expression_statement] = STATE(12), - [sym_expression] = STATE(749), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), + [sym_expression] = STATE(604), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), [aux_sym_source_file_repeat1] = STATE(12), - [ts_builtin_sym_end] = ACTIONS(86), - [anon_sym_LBRACE] = ACTIONS(83), - [anon_sym_impl] = ACTIONS(88), - [anon_sym_SEMI] = ACTIONS(91), - [anon_sym_trait] = ACTIONS(94), - [anon_sym_type] = ACTIONS(97), - [anon_sym_const] = ACTIONS(100), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(106), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_mod] = ACTIONS(112), - [anon_sym_struct] = ACTIONS(115), - [anon_sym_enum] = ACTIONS(118), - [anon_sym_fn] = ACTIONS(121), - [anon_sym_let] = ACTIONS(124), - [anon_sym_use] = ACTIONS(127), - [anon_sym_COLON_COLON] = ACTIONS(130), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_u8] = ACTIONS(136), - [anon_sym_i8] = ACTIONS(136), - [anon_sym_u16] = ACTIONS(136), - [anon_sym_i16] = ACTIONS(136), - [anon_sym_u32] = ACTIONS(136), - [anon_sym_i32] = ACTIONS(136), - [anon_sym_u64] = ACTIONS(136), - [anon_sym_i64] = ACTIONS(136), - [anon_sym_u128] = ACTIONS(136), - [anon_sym_i128] = ACTIONS(136), - [anon_sym_usize] = ACTIONS(136), - [anon_sym_bool] = ACTIONS(136), - [anon_sym_ByteArray] = ACTIONS(136), - [anon_sym_felt252] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_AT] = ACTIONS(103), - [anon_sym_break] = ACTIONS(142), - [anon_sym_continue] = ACTIONS(145), - [anon_sym_default] = ACTIONS(148), - [anon_sym_if] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(154), - [anon_sym_loop] = ACTIONS(157), - [anon_sym_match] = ACTIONS(160), - [anon_sym_pub] = ACTIONS(163), - [anon_sym_return] = ACTIONS(166), - [anon_sym_while] = ACTIONS(169), - [sym_numeric_literal] = ACTIONS(172), - [aux_sym_string_literal_token1] = ACTIONS(175), - [sym_shortstring_literal] = ACTIONS(178), - [anon_sym_true] = ACTIONS(181), - [anon_sym_false] = ACTIONS(181), - [anon_sym_ref] = ACTIONS(184), - [sym_identifier] = ACTIONS(187), - [sym_super] = ACTIONS(190), - [sym_line_comment] = ACTIONS(3), - }, - [13] = { - [sym__statement] = STATE(20), - [sym_impl_item] = STATE(20), - [sym_trait_item] = STATE(20), - [sym_associated_type] = STATE(20), - [sym_associated_impl] = STATE(20), - [sym_const_item] = STATE(20), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(20), - [sym_attribute_item] = STATE(20), - [sym_inner_attribute_item] = STATE(20), - [sym_mod_item] = STATE(20), - [sym_struct_item] = STATE(20), - [sym_enum_item] = STATE(20), - [sym_type_item] = STATE(20), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(20), - [sym_function_item] = STATE(20), - [sym_function_signature_item] = STATE(20), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(20), - [sym_use_declaration] = STATE(20), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(20), - [sym_expression] = STATE(632), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(207), + [anon_sym_RBRACE] = ACTIONS(97), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11209,76 +10974,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [14] = { - [sym__statement] = STATE(15), - [sym_impl_item] = STATE(15), - [sym_trait_item] = STATE(15), - [sym_associated_type] = STATE(15), - [sym_associated_impl] = STATE(15), - [sym_const_item] = STATE(15), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(15), - [sym_use_declaration] = STATE(15), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(15), - [sym_expression] = STATE(651), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(15), + [11] = { + [sym__statement] = STATE(16), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_associated_impl] = STATE(16), + [sym_const_item] = STATE(16), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(16), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(16), + [ts_builtin_sym_end] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(209), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11323,76 +11090,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [15] = { - [sym__statement] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_associated_impl] = STATE(4), - [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(613), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(4), + [12] = { + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_associated_impl] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(102), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_RBRACE] = ACTIONS(104), + [anon_sym_impl] = ACTIONS(106), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_trait] = ACTIONS(112), + [anon_sym_type] = ACTIONS(115), + [anon_sym_const] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_struct] = ACTIONS(133), + [anon_sym_enum] = ACTIONS(136), + [anon_sym_fn] = ACTIONS(139), + [anon_sym_let] = ACTIONS(142), + [anon_sym_use] = ACTIONS(145), + [anon_sym_COLON_COLON] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_u8] = ACTIONS(154), + [anon_sym_i8] = ACTIONS(154), + [anon_sym_u16] = ACTIONS(154), + [anon_sym_i16] = ACTIONS(154), + [anon_sym_u32] = ACTIONS(154), + [anon_sym_i32] = ACTIONS(154), + [anon_sym_u64] = ACTIONS(154), + [anon_sym_i64] = ACTIONS(154), + [anon_sym_u128] = ACTIONS(154), + [anon_sym_i128] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_ByteArray] = ACTIONS(154), + [anon_sym_felt252] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(121), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_break] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_default] = ACTIONS(166), + [anon_sym_if] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_pub] = ACTIONS(181), + [anon_sym_return] = ACTIONS(184), + [anon_sym_while] = ACTIONS(187), + [anon_sym_for] = ACTIONS(190), + [sym_numeric_literal] = ACTIONS(193), + [aux_sym_string_literal_token1] = ACTIONS(196), + [sym_shortstring_literal] = ACTIONS(199), + [anon_sym_true] = ACTIONS(202), + [anon_sym_false] = ACTIONS(202), + [anon_sym_ref] = ACTIONS(205), + [sym_identifier] = ACTIONS(208), + [sym_super] = ACTIONS(211), + [sym_line_comment] = ACTIONS(3), + }, + [13] = { + [sym__statement] = STATE(14), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_associated_impl] = STATE(14), + [sym_const_item] = STATE(14), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(14), + [sym_expression] = STATE(620), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(14), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(211), + [anon_sym_RBRACE] = ACTIONS(214), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11437,24 +11322,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [16] = { + [14] = { [sym__statement] = STATE(12), [sym_impl_item] = STATE(12), [sym_trait_item] = STATE(12), [sym_associated_type] = STATE(12), [sym_associated_impl] = STATE(12), [sym_const_item] = STATE(12), - [sym_macro_invocation] = STATE(90), + [sym_macro_invocation] = STATE(95), [sym_empty_statement] = STATE(12), [sym_attribute_item] = STATE(12), [sym_inner_attribute_item] = STATE(12), @@ -11462,51 +11348,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_item] = STATE(12), [sym_enum_item] = STATE(12), [sym_type_item] = STATE(12), - [sym_extern_type] = STATE(260), + [sym_extern_type] = STATE(340), [sym_external_function_item] = STATE(12), [sym_function_item] = STATE(12), [sym_function_signature_item] = STATE(12), - [sym_function] = STATE(1279), + [sym_function] = STATE(1166), [sym_let_declaration] = STATE(12), [sym_use_declaration] = STATE(12), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), [sym_expression_statement] = STATE(12), - [sym_expression] = STATE(749), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), + [sym_expression] = STATE(623), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), [aux_sym_source_file_repeat1] = STATE(12), - [ts_builtin_sym_end] = ACTIONS(213), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(216), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11551,76 +11438,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [17] = { - [sym__statement] = STATE(7), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_associated_impl] = STATE(7), - [sym_const_item] = STATE(7), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(7), - [sym_expression] = STATE(611), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(7), + [15] = { + [sym__statement] = STATE(18), + [sym_impl_item] = STATE(18), + [sym_trait_item] = STATE(18), + [sym_associated_type] = STATE(18), + [sym_associated_impl] = STATE(18), + [sym_const_item] = STATE(18), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(18), + [sym_attribute_item] = STATE(18), + [sym_inner_attribute_item] = STATE(18), + [sym_mod_item] = STATE(18), + [sym_struct_item] = STATE(18), + [sym_enum_item] = STATE(18), + [sym_type_item] = STATE(18), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(18), + [sym_function_item] = STATE(18), + [sym_function_signature_item] = STATE(18), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(18), + [sym_use_declaration] = STATE(18), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(18), + [sym_expression] = STATE(641), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(18), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(218), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11665,76 +11554,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [18] = { - [sym__statement] = STATE(19), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_associated_impl] = STATE(19), - [sym_const_item] = STATE(19), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(19), - [sym_attribute_item] = STATE(19), - [sym_inner_attribute_item] = STATE(19), - [sym_mod_item] = STATE(19), - [sym_struct_item] = STATE(19), - [sym_enum_item] = STATE(19), - [sym_type_item] = STATE(19), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(19), - [sym_expression] = STATE(639), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(19), + [16] = { + [sym__statement] = STATE(16), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_associated_impl] = STATE(16), + [sym_const_item] = STATE(16), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(16), + [sym_expression] = STATE(761), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(16), + [ts_builtin_sym_end] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_impl] = ACTIONS(106), + [anon_sym_SEMI] = ACTIONS(109), + [anon_sym_trait] = ACTIONS(112), + [anon_sym_type] = ACTIONS(115), + [anon_sym_const] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(127), + [anon_sym_mod] = ACTIONS(130), + [anon_sym_struct] = ACTIONS(133), + [anon_sym_enum] = ACTIONS(136), + [anon_sym_fn] = ACTIONS(139), + [anon_sym_let] = ACTIONS(142), + [anon_sym_use] = ACTIONS(145), + [anon_sym_COLON_COLON] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_u8] = ACTIONS(154), + [anon_sym_i8] = ACTIONS(154), + [anon_sym_u16] = ACTIONS(154), + [anon_sym_i16] = ACTIONS(154), + [anon_sym_u32] = ACTIONS(154), + [anon_sym_i32] = ACTIONS(154), + [anon_sym_u64] = ACTIONS(154), + [anon_sym_i64] = ACTIONS(154), + [anon_sym_u128] = ACTIONS(154), + [anon_sym_i128] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_ByteArray] = ACTIONS(154), + [anon_sym_felt252] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(121), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_break] = ACTIONS(160), + [anon_sym_continue] = ACTIONS(163), + [anon_sym_default] = ACTIONS(166), + [anon_sym_if] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_pub] = ACTIONS(181), + [anon_sym_return] = ACTIONS(184), + [anon_sym_while] = ACTIONS(187), + [anon_sym_for] = ACTIONS(190), + [sym_numeric_literal] = ACTIONS(193), + [aux_sym_string_literal_token1] = ACTIONS(196), + [sym_shortstring_literal] = ACTIONS(199), + [anon_sym_true] = ACTIONS(202), + [anon_sym_false] = ACTIONS(202), + [anon_sym_ref] = ACTIONS(205), + [sym_identifier] = ACTIONS(208), + [sym_super] = ACTIONS(211), + [sym_line_comment] = ACTIONS(3), + }, + [17] = { + [sym__statement] = STATE(20), + [sym_impl_item] = STATE(20), + [sym_trait_item] = STATE(20), + [sym_associated_type] = STATE(20), + [sym_associated_impl] = STATE(20), + [sym_const_item] = STATE(20), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(20), + [sym_attribute_item] = STATE(20), + [sym_inner_attribute_item] = STATE(20), + [sym_mod_item] = STATE(20), + [sym_struct_item] = STATE(20), + [sym_enum_item] = STATE(20), + [sym_type_item] = STATE(20), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(20), + [sym_function_item] = STATE(20), + [sym_function_signature_item] = STATE(20), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(20), + [sym_use_declaration] = STATE(20), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(20), + [sym_expression] = STATE(688), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(20), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(217), + [anon_sym_RBRACE] = ACTIONS(220), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11779,76 +11786,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [18] = { + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_associated_impl] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(642), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_impl] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_trait] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_mod] = ACTIONS(25), + [anon_sym_struct] = ACTIONS(27), + [anon_sym_enum] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_let] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_pub] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [19] = { - [sym__statement] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_associated_impl] = STATE(4), - [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(637), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(4), + [sym__statement] = STATE(10), + [sym_impl_item] = STATE(10), + [sym_trait_item] = STATE(10), + [sym_associated_type] = STATE(10), + [sym_associated_impl] = STATE(10), + [sym_const_item] = STATE(10), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(10), + [sym_attribute_item] = STATE(10), + [sym_inner_attribute_item] = STATE(10), + [sym_mod_item] = STATE(10), + [sym_struct_item] = STATE(10), + [sym_enum_item] = STATE(10), + [sym_type_item] = STATE(10), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(10), + [sym_function_item] = STATE(10), + [sym_function_signature_item] = STATE(10), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(10), + [sym_use_declaration] = STATE(10), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(10), + [sym_expression] = STATE(610), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(10), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(219), + [anon_sym_RBRACE] = ACTIONS(224), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -11893,76 +12018,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [20] = { - [sym__statement] = STATE(4), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_associated_impl] = STATE(4), - [sym_const_item] = STATE(4), - [sym_macro_invocation] = STATE(90), - [sym_empty_statement] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_extern_type] = STATE(260), - [sym_external_function_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function] = STATE(1279), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression_statement] = STATE(4), - [sym_expression] = STATE(631), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(88), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(88), - [sym_if_expression] = STATE(88), - [sym_match_expression] = STATE(88), - [sym_while_expression] = STATE(88), - [sym_loop_expression] = STATE(88), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [sym_visibility_modifier] = STATE(859), - [sym_extern] = STATE(1250), - [aux_sym_source_file_repeat1] = STATE(4), + [sym__statement] = STATE(12), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_associated_impl] = STATE(12), + [sym_const_item] = STATE(12), + [sym_macro_invocation] = STATE(95), + [sym_empty_statement] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_extern_type] = STATE(340), + [sym_external_function_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function] = STATE(1166), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression_statement] = STATE(12), + [sym_expression] = STATE(694), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(90), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(90), + [sym_if_expression] = STATE(90), + [sym_match_expression] = STATE(90), + [sym_while_expression] = STATE(90), + [sym_for_expression] = STATE(90), + [sym_loop_expression] = STATE(90), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [sym_visibility_modifier] = STATE(875), + [sym_extern] = STATE(1191), + [aux_sym_source_file_repeat1] = STATE(12), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(226), [anon_sym_impl] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_trait] = ACTIONS(13), @@ -12007,62 +12134,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pub] = ACTIONS(59), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [21] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(447), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(472), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(223), - [anon_sym_EQ] = ACTIONS(225), - [anon_sym_BANG] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(223), - [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [anon_sym_EQ] = ACTIONS(230), + [anon_sym_BANG] = ACTIONS(232), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(228), + [anon_sym_COMMA] = ACTIONS(228), [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_STAR] = ACTIONS(232), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -12077,96 +12206,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(225), - [anon_sym_SLASH] = ACTIONS(225), - [anon_sym_PERCENT] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(230), + [anon_sym_GT] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_DASH] = ACTIONS(234), + [anon_sym_SLASH] = ACTIONS(230), + [anon_sym_PERCENT] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(228), [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [anon_sym_LT_LT] = ACTIONS(223), - [anon_sym_GT_GT] = ACTIONS(223), - [anon_sym_PLUS_EQ] = ACTIONS(223), - [anon_sym_DASH_EQ] = ACTIONS(223), - [anon_sym_STAR_EQ] = ACTIONS(223), - [anon_sym_SLASH_EQ] = ACTIONS(223), - [anon_sym_PERCENT_EQ] = ACTIONS(223), - [anon_sym_EQ_EQ] = ACTIONS(223), - [anon_sym_BANG_EQ] = ACTIONS(223), - [anon_sym_GT_EQ] = ACTIONS(223), - [anon_sym_LT_EQ] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(228), + [anon_sym_PIPE_PIPE] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(228), + [anon_sym_GT_GT] = ACTIONS(228), + [anon_sym_PLUS_EQ] = ACTIONS(228), + [anon_sym_DASH_EQ] = ACTIONS(228), + [anon_sym_STAR_EQ] = ACTIONS(228), + [anon_sym_SLASH_EQ] = ACTIONS(228), + [anon_sym_PERCENT_EQ] = ACTIONS(228), + [anon_sym_EQ_EQ] = ACTIONS(228), + [anon_sym_BANG_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(228), + [anon_sym_LT_EQ] = ACTIONS(228), [anon_sym_AT] = ACTIONS(19), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [22] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(446), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(462), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(231), - [anon_sym_SEMI] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(231), - [anon_sym_COMMA] = ACTIONS(231), + [anon_sym_RBRACE] = ACTIONS(238), + [anon_sym_SEMI] = ACTIONS(238), + [anon_sym_EQ] = ACTIONS(240), + [anon_sym_BANG] = ACTIONS(232), + [anon_sym_LBRACK] = ACTIONS(238), + [anon_sym_RBRACK] = ACTIONS(238), + [anon_sym_COMMA] = ACTIONS(238), [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(231), + [anon_sym_STAR] = ACTIONS(240), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(238), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -12181,3900 +12312,3847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(41), [anon_sym_ByteArray] = ACTIONS(41), [anon_sym_felt252] = ACTIONS(41), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_SLASH] = ACTIONS(240), + [anon_sym_PERCENT] = ACTIONS(240), + [anon_sym_CARET] = ACTIONS(238), [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(231), - [anon_sym_PIPE_PIPE] = ACTIONS(231), - [anon_sym_LT_LT] = ACTIONS(231), - [anon_sym_GT_GT] = ACTIONS(231), - [anon_sym_PLUS_EQ] = ACTIONS(231), - [anon_sym_DASH_EQ] = ACTIONS(231), - [anon_sym_STAR_EQ] = ACTIONS(231), - [anon_sym_SLASH_EQ] = ACTIONS(231), - [anon_sym_PERCENT_EQ] = ACTIONS(231), - [anon_sym_EQ_EQ] = ACTIONS(231), - [anon_sym_BANG_EQ] = ACTIONS(231), - [anon_sym_GT_EQ] = ACTIONS(231), - [anon_sym_LT_EQ] = ACTIONS(231), + [anon_sym_AMP] = ACTIONS(240), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_PLUS_EQ] = ACTIONS(238), + [anon_sym_DASH_EQ] = ACTIONS(238), + [anon_sym_STAR_EQ] = ACTIONS(238), + [anon_sym_SLASH_EQ] = ACTIONS(238), + [anon_sym_PERCENT_EQ] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_BANG_EQ] = ACTIONS(238), + [anon_sym_GT_EQ] = ACTIONS(238), + [anon_sym_LT_EQ] = ACTIONS(238), [anon_sym_AT] = ACTIONS(19), - [anon_sym_DOT] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(231), + [anon_sym_DOT] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [23] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(240), - [anon_sym_impl] = ACTIONS(242), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_trait] = ACTIONS(242), - [anon_sym_type] = ACTIONS(242), - [anon_sym_COLON] = ACTIONS(248), - [anon_sym_const] = ACTIONS(242), - [anon_sym_EQ] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(248), - [anon_sym_POUND] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(251), - [anon_sym_RBRACK] = ACTIONS(240), - [anon_sym_mod] = ACTIONS(242), - [anon_sym_struct] = ACTIONS(242), - [anon_sym_enum] = ACTIONS(242), - [anon_sym_COMMA] = ACTIONS(245), - [anon_sym_fn] = ACTIONS(242), - [anon_sym_DASH_GT] = ACTIONS(245), - [anon_sym_let] = ACTIONS(242), - [anon_sym_use] = ACTIONS(242), - [anon_sym_COLON_COLON] = ACTIONS(245), - [anon_sym_STAR] = ACTIONS(248), - [anon_sym_LPAREN] = ACTIONS(254), - [anon_sym__] = ACTIONS(248), - [anon_sym_RPAREN] = ACTIONS(240), - [anon_sym_u8] = ACTIONS(257), - [anon_sym_i8] = ACTIONS(257), - [anon_sym_u16] = ACTIONS(257), - [anon_sym_i16] = ACTIONS(257), - [anon_sym_u32] = ACTIONS(257), - [anon_sym_i32] = ACTIONS(257), - [anon_sym_u64] = ACTIONS(257), - [anon_sym_i64] = ACTIONS(257), - [anon_sym_u128] = ACTIONS(257), - [anon_sym_i128] = ACTIONS(257), - [anon_sym_usize] = ACTIONS(257), - [anon_sym_bool] = ACTIONS(257), - [anon_sym_ByteArray] = ACTIONS(257), - [anon_sym_felt252] = ACTIONS(257), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(248), - [anon_sym_PERCENT] = ACTIONS(248), - [anon_sym_CARET] = ACTIONS(248), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_AMP] = ACTIONS(248), - [anon_sym_PIPE] = ACTIONS(248), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(245), - [anon_sym_GT_GT] = ACTIONS(245), - [anon_sym_PLUS_EQ] = ACTIONS(245), - [anon_sym_DASH_EQ] = ACTIONS(245), - [anon_sym_STAR_EQ] = ACTIONS(245), - [anon_sym_SLASH_EQ] = ACTIONS(245), - [anon_sym_PERCENT_EQ] = ACTIONS(245), - [anon_sym_CARET_EQ] = ACTIONS(245), - [anon_sym_AMP_EQ] = ACTIONS(245), - [anon_sym_PIPE_EQ] = ACTIONS(245), - [anon_sym_EQ_EQ] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(245), - [anon_sym_GT_EQ] = ACTIONS(245), - [anon_sym_LT_EQ] = ACTIONS(245), - [anon_sym_AT] = ACTIONS(245), - [anon_sym_DOT_DOT] = ACTIONS(245), - [anon_sym_DOT] = ACTIONS(248), - [anon_sym_EQ_GT] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(245), - [anon_sym_break] = ACTIONS(242), - [anon_sym_continue] = ACTIONS(242), - [anon_sym_default] = ACTIONS(242), - [anon_sym_if] = ACTIONS(242), - [anon_sym_extern] = ACTIONS(242), - [anon_sym_nopanic] = ACTIONS(242), - [anon_sym_loop] = ACTIONS(242), - [anon_sym_match] = ACTIONS(242), - [anon_sym_pub] = ACTIONS(242), - [anon_sym_return] = ACTIONS(242), - [anon_sym_static] = ACTIONS(242), - [anon_sym_while] = ACTIONS(242), - [sym_numeric_literal] = ACTIONS(263), - [aux_sym_string_literal_token1] = ACTIONS(266), - [sym_shortstring_literal] = ACTIONS(269), - [anon_sym_true] = ACTIONS(272), - [anon_sym_false] = ACTIONS(272), - [anon_sym_DOLLAR] = ACTIONS(275), - [sym_identifier] = ACTIONS(242), - [sym_mutable_specifier] = ACTIONS(242), - [sym_super] = ACTIONS(242), + [anon_sym_LBRACE] = ACTIONS(242), + [anon_sym_RBRACE] = ACTIONS(245), + [anon_sym_impl] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_trait] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_const] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(253), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_RBRACK] = ACTIONS(245), + [anon_sym_mod] = ACTIONS(247), + [anon_sym_struct] = ACTIONS(247), + [anon_sym_enum] = ACTIONS(247), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_fn] = ACTIONS(247), + [anon_sym_DASH_GT] = ACTIONS(250), + [anon_sym_let] = ACTIONS(247), + [anon_sym_use] = ACTIONS(247), + [anon_sym_COLON_COLON] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(253), + [anon_sym_LPAREN] = ACTIONS(259), + [anon_sym__] = ACTIONS(253), + [anon_sym_RPAREN] = ACTIONS(245), + [anon_sym_u8] = ACTIONS(262), + [anon_sym_i8] = ACTIONS(262), + [anon_sym_u16] = ACTIONS(262), + [anon_sym_i16] = ACTIONS(262), + [anon_sym_u32] = ACTIONS(262), + [anon_sym_i32] = ACTIONS(262), + [anon_sym_u64] = ACTIONS(262), + [anon_sym_i64] = ACTIONS(262), + [anon_sym_u128] = ACTIONS(262), + [anon_sym_i128] = ACTIONS(262), + [anon_sym_usize] = ACTIONS(262), + [anon_sym_bool] = ACTIONS(262), + [anon_sym_ByteArray] = ACTIONS(262), + [anon_sym_felt252] = ACTIONS(262), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_PERCENT] = ACTIONS(253), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_PLUS_EQ] = ACTIONS(250), + [anon_sym_DASH_EQ] = ACTIONS(250), + [anon_sym_STAR_EQ] = ACTIONS(250), + [anon_sym_SLASH_EQ] = ACTIONS(250), + [anon_sym_PERCENT_EQ] = ACTIONS(250), + [anon_sym_CARET_EQ] = ACTIONS(250), + [anon_sym_AMP_EQ] = ACTIONS(250), + [anon_sym_PIPE_EQ] = ACTIONS(250), + [anon_sym_EQ_EQ] = ACTIONS(250), + [anon_sym_BANG_EQ] = ACTIONS(250), + [anon_sym_GT_EQ] = ACTIONS(250), + [anon_sym_LT_EQ] = ACTIONS(250), + [anon_sym_AT] = ACTIONS(250), + [anon_sym_DOT_DOT] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(253), + [anon_sym_EQ_GT] = ACTIONS(250), + [anon_sym_QMARK] = ACTIONS(250), + [anon_sym_break] = ACTIONS(247), + [anon_sym_continue] = ACTIONS(247), + [anon_sym_default] = ACTIONS(247), + [anon_sym_if] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(247), + [anon_sym_nopanic] = ACTIONS(247), + [anon_sym_loop] = ACTIONS(247), + [anon_sym_match] = ACTIONS(247), + [anon_sym_pub] = ACTIONS(247), + [anon_sym_return] = ACTIONS(247), + [anon_sym_static] = ACTIONS(247), + [anon_sym_while] = ACTIONS(247), + [anon_sym_for] = ACTIONS(247), + [sym_numeric_literal] = ACTIONS(268), + [aux_sym_string_literal_token1] = ACTIONS(271), + [sym_shortstring_literal] = ACTIONS(274), + [anon_sym_true] = ACTIONS(277), + [anon_sym_false] = ACTIONS(277), + [anon_sym_DOLLAR] = ACTIONS(280), + [sym_identifier] = ACTIONS(247), + [sym_mutable_specifier] = ACTIONS(247), + [sym_super] = ACTIONS(247), [sym_line_comment] = ACTIONS(3), }, [24] = { - [sym_delim_token_tree] = STATE(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [sym_delim_token_tree] = STATE(28), + [sym__delim_tokens] = STATE(28), + [sym__literal] = STATE(28), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(28), + [aux_sym_delim_token_tree_repeat1] = STATE(28), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(290), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_impl] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(287), + [anon_sym_type] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(287), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(287), + [anon_sym_struct] = ACTIONS(287), + [anon_sym_enum] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(287), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(287), + [anon_sym_use] = ACTIONS(287), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(287), + [anon_sym_default] = ACTIONS(287), + [anon_sym_if] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(287), + [anon_sym_nopanic] = ACTIONS(287), + [anon_sym_loop] = ACTIONS(287), + [anon_sym_match] = ACTIONS(287), + [anon_sym_pub] = ACTIONS(287), + [anon_sym_return] = ACTIONS(287), + [anon_sym_static] = ACTIONS(287), + [anon_sym_while] = ACTIONS(287), + [anon_sym_for] = ACTIONS(287), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(309), + [sym_identifier] = ACTIONS(287), + [sym_mutable_specifier] = ACTIONS(287), + [sym_super] = ACTIONS(287), [sym_line_comment] = ACTIONS(3), }, [25] = { + [sym_delim_token_tree] = STATE(51), + [sym__delim_tokens] = STATE(51), + [sym__literal] = STATE(51), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(51), + [aux_sym_delim_token_tree_repeat1] = STATE(51), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_impl] = ACTIONS(313), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(313), + [anon_sym_type] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(313), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(313), + [anon_sym_struct] = ACTIONS(313), + [anon_sym_enum] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(313), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(313), + [anon_sym_use] = ACTIONS(313), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(313), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_default] = ACTIONS(313), + [anon_sym_if] = ACTIONS(313), + [anon_sym_extern] = ACTIONS(313), + [anon_sym_nopanic] = ACTIONS(313), + [anon_sym_loop] = ACTIONS(313), + [anon_sym_match] = ACTIONS(313), + [anon_sym_pub] = ACTIONS(313), + [anon_sym_return] = ACTIONS(313), + [anon_sym_static] = ACTIONS(313), + [anon_sym_while] = ACTIONS(313), + [anon_sym_for] = ACTIONS(313), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(315), + [sym_identifier] = ACTIONS(313), + [sym_mutable_specifier] = ACTIONS(313), + [sym_super] = ACTIONS(313), + [sym_line_comment] = ACTIONS(3), + }, + [26] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(306), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), - [sym_line_comment] = ACTIONS(3), - }, - [26] = { - [sym_delim_token_tree] = STATE(39), - [sym__delim_tokens] = STATE(39), - [sym__literal] = STATE(39), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(39), - [aux_sym_delim_token_tree_repeat1] = STATE(39), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(308), - [anon_sym_impl] = ACTIONS(310), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(310), - [anon_sym_type] = ACTIONS(310), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(310), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(310), - [anon_sym_struct] = ACTIONS(310), - [anon_sym_enum] = ACTIONS(310), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(310), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(310), - [anon_sym_use] = ACTIONS(310), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_default] = ACTIONS(310), - [anon_sym_if] = ACTIONS(310), - [anon_sym_extern] = ACTIONS(310), - [anon_sym_nopanic] = ACTIONS(310), - [anon_sym_loop] = ACTIONS(310), - [anon_sym_match] = ACTIONS(310), - [anon_sym_pub] = ACTIONS(310), - [anon_sym_return] = ACTIONS(310), - [anon_sym_static] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_identifier] = ACTIONS(310), - [sym_mutable_specifier] = ACTIONS(310), - [sym_super] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(319), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [27] = { - [sym_delim_token_tree] = STATE(53), - [sym__delim_tokens] = STATE(53), - [sym__literal] = STATE(53), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(53), - [aux_sym_delim_token_tree_repeat1] = STATE(53), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_impl] = ACTIONS(316), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(316), - [anon_sym_type] = ACTIONS(316), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(316), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(316), - [anon_sym_struct] = ACTIONS(316), - [anon_sym_enum] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(316), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(316), - [anon_sym_use] = ACTIONS(316), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(316), - [anon_sym_continue] = ACTIONS(316), - [anon_sym_default] = ACTIONS(316), - [anon_sym_if] = ACTIONS(316), - [anon_sym_extern] = ACTIONS(316), - [anon_sym_nopanic] = ACTIONS(316), - [anon_sym_loop] = ACTIONS(316), - [anon_sym_match] = ACTIONS(316), - [anon_sym_pub] = ACTIONS(316), - [anon_sym_return] = ACTIONS(316), - [anon_sym_static] = ACTIONS(316), - [anon_sym_while] = ACTIONS(316), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(318), - [sym_identifier] = ACTIONS(316), - [sym_mutable_specifier] = ACTIONS(316), - [sym_super] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [28] = { - [sym_delim_token_tree] = STATE(29), - [sym__delim_tokens] = STATE(29), - [sym__literal] = STATE(29), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(29), - [aux_sym_delim_token_tree_repeat1] = STATE(29), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(320), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(320), - [anon_sym_type] = ACTIONS(320), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(320), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_RBRACK] = ACTIONS(308), - [anon_sym_mod] = ACTIONS(320), - [anon_sym_struct] = ACTIONS(320), - [anon_sym_enum] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(320), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(320), - [anon_sym_use] = ACTIONS(320), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(320), - [anon_sym_continue] = ACTIONS(320), - [anon_sym_default] = ACTIONS(320), - [anon_sym_if] = ACTIONS(320), - [anon_sym_extern] = ACTIONS(320), - [anon_sym_nopanic] = ACTIONS(320), - [anon_sym_loop] = ACTIONS(320), - [anon_sym_match] = ACTIONS(320), - [anon_sym_pub] = ACTIONS(320), - [anon_sym_return] = ACTIONS(320), - [anon_sym_static] = ACTIONS(320), - [anon_sym_while] = ACTIONS(320), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_identifier] = ACTIONS(320), - [sym_mutable_specifier] = ACTIONS(320), - [sym_super] = ACTIONS(320), - [sym_line_comment] = ACTIONS(3), - }, - [29] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_RBRACK] = ACTIONS(324), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, - [30] = { + [29] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(326), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(323), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), + [sym_line_comment] = ACTIONS(3), + }, + [30] = { + [sym_delim_token_tree] = STATE(33), + [sym__delim_tokens] = STATE(33), + [sym__literal] = STATE(33), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(33), + [aux_sym_delim_token_tree_repeat1] = STATE(33), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(325), + [anon_sym_type] = ACTIONS(325), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(325), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(325), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_enum] = ACTIONS(325), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(325), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(325), + [anon_sym_use] = ACTIONS(325), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(327), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(325), + [anon_sym_continue] = ACTIONS(325), + [anon_sym_default] = ACTIONS(325), + [anon_sym_if] = ACTIONS(325), + [anon_sym_extern] = ACTIONS(325), + [anon_sym_nopanic] = ACTIONS(325), + [anon_sym_loop] = ACTIONS(325), + [anon_sym_match] = ACTIONS(325), + [anon_sym_pub] = ACTIONS(325), + [anon_sym_return] = ACTIONS(325), + [anon_sym_static] = ACTIONS(325), + [anon_sym_while] = ACTIONS(325), + [anon_sym_for] = ACTIONS(325), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(329), + [sym_identifier] = ACTIONS(325), + [sym_mutable_specifier] = ACTIONS(325), + [sym_super] = ACTIONS(325), [sym_line_comment] = ACTIONS(3), }, [31] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(324), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(331), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [32] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_RBRACK] = ACTIONS(326), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(331), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [33] = { - [sym_delim_token_tree] = STATE(31), - [sym__delim_tokens] = STATE(31), - [sym__literal] = STATE(31), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(31), - [aux_sym_delim_token_tree_repeat1] = STATE(31), - [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(328), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(328), - [anon_sym_type] = ACTIONS(328), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(328), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(328), - [anon_sym_struct] = ACTIONS(328), - [anon_sym_enum] = ACTIONS(328), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(328), - [anon_sym_use] = ACTIONS(328), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(308), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(328), - [anon_sym_continue] = ACTIONS(328), - [anon_sym_default] = ACTIONS(328), - [anon_sym_if] = ACTIONS(328), - [anon_sym_extern] = ACTIONS(328), - [anon_sym_nopanic] = ACTIONS(328), - [anon_sym_loop] = ACTIONS(328), - [anon_sym_match] = ACTIONS(328), - [anon_sym_pub] = ACTIONS(328), - [anon_sym_return] = ACTIONS(328), - [anon_sym_static] = ACTIONS(328), - [anon_sym_while] = ACTIONS(328), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(330), - [sym_identifier] = ACTIONS(328), - [sym_mutable_specifier] = ACTIONS(328), - [sym_super] = ACTIONS(328), - [sym_line_comment] = ACTIONS(3), - }, - [34] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(326), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(323), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, - [35] = { + [34] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_RBRACK] = ACTIONS(290), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, - [36] = { - [sym_delim_token_tree] = STATE(30), - [sym__delim_tokens] = STATE(30), - [sym__literal] = STATE(30), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(30), - [aux_sym_delim_token_tree_repeat1] = STATE(30), + [35] = { + [sym_delim_token_tree] = STATE(31), + [sym__delim_tokens] = STATE(31), + [sym__literal] = STATE(31), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(31), + [aux_sym_delim_token_tree_repeat1] = STATE(31), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(332), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(332), - [anon_sym_type] = ACTIONS(332), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(332), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(332), - [anon_sym_struct] = ACTIONS(332), - [anon_sym_enum] = ACTIONS(332), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(332), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(332), - [anon_sym_use] = ACTIONS(332), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(334), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(332), - [anon_sym_default] = ACTIONS(332), - [anon_sym_if] = ACTIONS(332), - [anon_sym_extern] = ACTIONS(332), - [anon_sym_nopanic] = ACTIONS(332), - [anon_sym_loop] = ACTIONS(332), - [anon_sym_match] = ACTIONS(332), - [anon_sym_pub] = ACTIONS(332), - [anon_sym_return] = ACTIONS(332), - [anon_sym_static] = ACTIONS(332), - [anon_sym_while] = ACTIONS(332), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(336), - [sym_identifier] = ACTIONS(332), - [sym_mutable_specifier] = ACTIONS(332), - [sym_super] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(333), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(333), + [anon_sym_type] = ACTIONS(333), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(333), + [anon_sym_struct] = ACTIONS(333), + [anon_sym_enum] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(333), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(333), + [anon_sym_use] = ACTIONS(333), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(335), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(333), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_default] = ACTIONS(333), + [anon_sym_if] = ACTIONS(333), + [anon_sym_extern] = ACTIONS(333), + [anon_sym_nopanic] = ACTIONS(333), + [anon_sym_loop] = ACTIONS(333), + [anon_sym_match] = ACTIONS(333), + [anon_sym_pub] = ACTIONS(333), + [anon_sym_return] = ACTIONS(333), + [anon_sym_static] = ACTIONS(333), + [anon_sym_while] = ACTIONS(333), + [anon_sym_for] = ACTIONS(333), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(337), + [sym_identifier] = ACTIONS(333), + [sym_mutable_specifier] = ACTIONS(333), + [sym_super] = ACTIONS(333), [sym_line_comment] = ACTIONS(3), }, - [37] = { + [36] = { [sym_delim_token_tree] = STATE(32), [sym__delim_tokens] = STATE(32), [sym__literal] = STATE(32), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(32), [aux_sym_delim_token_tree_repeat1] = STATE(32), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(338), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(338), - [anon_sym_type] = ACTIONS(338), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(338), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_RBRACK] = ACTIONS(334), - [anon_sym_mod] = ACTIONS(338), - [anon_sym_struct] = ACTIONS(338), - [anon_sym_enum] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(338), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(338), - [anon_sym_use] = ACTIONS(338), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(338), - [anon_sym_continue] = ACTIONS(338), - [anon_sym_default] = ACTIONS(338), - [anon_sym_if] = ACTIONS(338), - [anon_sym_extern] = ACTIONS(338), - [anon_sym_nopanic] = ACTIONS(338), - [anon_sym_loop] = ACTIONS(338), - [anon_sym_match] = ACTIONS(338), - [anon_sym_pub] = ACTIONS(338), - [anon_sym_return] = ACTIONS(338), - [anon_sym_static] = ACTIONS(338), - [anon_sym_while] = ACTIONS(338), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(340), - [sym_identifier] = ACTIONS(338), - [sym_mutable_specifier] = ACTIONS(338), - [sym_super] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(339), + [anon_sym_type] = ACTIONS(339), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(335), + [anon_sym_mod] = ACTIONS(339), + [anon_sym_struct] = ACTIONS(339), + [anon_sym_enum] = ACTIONS(339), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(339), + [anon_sym_use] = ACTIONS(339), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_default] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_extern] = ACTIONS(339), + [anon_sym_nopanic] = ACTIONS(339), + [anon_sym_loop] = ACTIONS(339), + [anon_sym_match] = ACTIONS(339), + [anon_sym_pub] = ACTIONS(339), + [anon_sym_return] = ACTIONS(339), + [anon_sym_static] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_identifier] = ACTIONS(339), + [sym_mutable_specifier] = ACTIONS(339), + [sym_super] = ACTIONS(339), [sym_line_comment] = ACTIONS(3), }, - [38] = { + [37] = { [sym_delim_token_tree] = STATE(34), [sym__delim_tokens] = STATE(34), [sym__literal] = STATE(34), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(34), [aux_sym_delim_token_tree_repeat1] = STATE(34), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(334), - [anon_sym_impl] = ACTIONS(342), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(342), - [anon_sym_type] = ACTIONS(342), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(342), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(342), - [anon_sym_struct] = ACTIONS(342), - [anon_sym_enum] = ACTIONS(342), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(342), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(342), - [anon_sym_use] = ACTIONS(342), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_default] = ACTIONS(342), - [anon_sym_if] = ACTIONS(342), - [anon_sym_extern] = ACTIONS(342), - [anon_sym_nopanic] = ACTIONS(342), - [anon_sym_loop] = ACTIONS(342), - [anon_sym_match] = ACTIONS(342), - [anon_sym_pub] = ACTIONS(342), - [anon_sym_return] = ACTIONS(342), - [anon_sym_static] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(344), - [sym_identifier] = ACTIONS(342), - [sym_mutable_specifier] = ACTIONS(342), - [sym_super] = ACTIONS(342), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_impl] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(343), + [anon_sym_type] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(343), + [anon_sym_struct] = ACTIONS(343), + [anon_sym_enum] = ACTIONS(343), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(343), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(343), + [anon_sym_use] = ACTIONS(343), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_default] = ACTIONS(343), + [anon_sym_if] = ACTIONS(343), + [anon_sym_extern] = ACTIONS(343), + [anon_sym_nopanic] = ACTIONS(343), + [anon_sym_loop] = ACTIONS(343), + [anon_sym_match] = ACTIONS(343), + [anon_sym_pub] = ACTIONS(343), + [anon_sym_return] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(345), + [sym_identifier] = ACTIONS(343), + [sym_mutable_specifier] = ACTIONS(343), + [sym_super] = ACTIONS(343), + [sym_line_comment] = ACTIONS(3), + }, + [38] = { + [sym_delim_token_tree] = STATE(29), + [sym__delim_tokens] = STATE(29), + [sym__literal] = STATE(29), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(29), + [aux_sym_delim_token_tree_repeat1] = STATE(29), + [aux_sym__non_special_token_repeat1] = STATE(59), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(347), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(347), + [anon_sym_type] = ACTIONS(347), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(347), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(327), + [anon_sym_mod] = ACTIONS(347), + [anon_sym_struct] = ACTIONS(347), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(347), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(347), + [anon_sym_use] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(347), + [anon_sym_continue] = ACTIONS(347), + [anon_sym_default] = ACTIONS(347), + [anon_sym_if] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(347), + [anon_sym_nopanic] = ACTIONS(347), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(347), + [anon_sym_pub] = ACTIONS(347), + [anon_sym_return] = ACTIONS(347), + [anon_sym_static] = ACTIONS(347), + [anon_sym_while] = ACTIONS(347), + [anon_sym_for] = ACTIONS(347), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(349), + [sym_identifier] = ACTIONS(347), + [sym_mutable_specifier] = ACTIONS(347), + [sym_super] = ACTIONS(347), [sym_line_comment] = ACTIONS(3), }, [39] = { - [sym_delim_token_tree] = STATE(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [sym_delim_token_tree] = STATE(50), + [sym__delim_tokens] = STATE(50), + [sym__literal] = STATE(50), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(50), + [aux_sym_delim_token_tree_repeat1] = STATE(50), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(324), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(351), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(351), + [anon_sym_type] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(351), + [anon_sym_struct] = ACTIONS(351), + [anon_sym_enum] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(351), + [anon_sym_use] = ACTIONS(351), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(351), + [anon_sym_continue] = ACTIONS(351), + [anon_sym_default] = ACTIONS(351), + [anon_sym_if] = ACTIONS(351), + [anon_sym_extern] = ACTIONS(351), + [anon_sym_nopanic] = ACTIONS(351), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(351), + [anon_sym_pub] = ACTIONS(351), + [anon_sym_return] = ACTIONS(351), + [anon_sym_static] = ACTIONS(351), + [anon_sym_while] = ACTIONS(351), + [anon_sym_for] = ACTIONS(351), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(353), + [sym_identifier] = ACTIONS(351), + [sym_mutable_specifier] = ACTIONS(351), + [sym_super] = ACTIONS(351), [sym_line_comment] = ACTIONS(3), }, [40] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_RBRACK] = ACTIONS(306), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(355), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [41] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(306), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(355), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [42] = { - [sym_delim_token_tree] = STATE(51), - [sym__delim_tokens] = STATE(51), - [sym__literal] = STATE(51), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(51), - [aux_sym_delim_token_tree_repeat1] = STATE(51), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(346), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(346), - [anon_sym_type] = ACTIONS(346), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(346), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_RBRACK] = ACTIONS(314), - [anon_sym_mod] = ACTIONS(346), - [anon_sym_struct] = ACTIONS(346), - [anon_sym_enum] = ACTIONS(346), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(346), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(346), - [anon_sym_use] = ACTIONS(346), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(346), - [anon_sym_continue] = ACTIONS(346), - [anon_sym_default] = ACTIONS(346), - [anon_sym_if] = ACTIONS(346), - [anon_sym_extern] = ACTIONS(346), - [anon_sym_nopanic] = ACTIONS(346), - [anon_sym_loop] = ACTIONS(346), - [anon_sym_match] = ACTIONS(346), - [anon_sym_pub] = ACTIONS(346), - [anon_sym_return] = ACTIONS(346), - [anon_sym_static] = ACTIONS(346), - [anon_sym_while] = ACTIONS(346), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(348), - [sym_identifier] = ACTIONS(346), - [sym_mutable_specifier] = ACTIONS(346), - [sym_super] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [43] = { - [sym_delim_token_tree] = STATE(25), - [sym__delim_tokens] = STATE(25), - [sym__literal] = STATE(25), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(25), - [aux_sym_delim_token_tree_repeat1] = STATE(25), + [sym_delim_token_tree] = STATE(27), + [sym__delim_tokens] = STATE(27), + [sym__literal] = STATE(27), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(27), + [aux_sym_delim_token_tree_repeat1] = STATE(27), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(350), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(350), - [anon_sym_type] = ACTIONS(350), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(350), - [anon_sym_struct] = ACTIONS(350), - [anon_sym_enum] = ACTIONS(350), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(350), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(350), - [anon_sym_use] = ACTIONS(350), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(352), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(350), - [anon_sym_continue] = ACTIONS(350), - [anon_sym_default] = ACTIONS(350), - [anon_sym_if] = ACTIONS(350), - [anon_sym_extern] = ACTIONS(350), - [anon_sym_nopanic] = ACTIONS(350), - [anon_sym_loop] = ACTIONS(350), - [anon_sym_match] = ACTIONS(350), - [anon_sym_pub] = ACTIONS(350), - [anon_sym_return] = ACTIONS(350), - [anon_sym_static] = ACTIONS(350), - [anon_sym_while] = ACTIONS(350), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(354), - [sym_identifier] = ACTIONS(350), - [sym_mutable_specifier] = ACTIONS(350), - [sym_super] = ACTIONS(350), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_impl] = ACTIONS(357), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(357), + [anon_sym_type] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(357), + [anon_sym_struct] = ACTIONS(357), + [anon_sym_enum] = ACTIONS(357), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(357), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(357), + [anon_sym_use] = ACTIONS(357), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(357), + [anon_sym_default] = ACTIONS(357), + [anon_sym_if] = ACTIONS(357), + [anon_sym_extern] = ACTIONS(357), + [anon_sym_nopanic] = ACTIONS(357), + [anon_sym_loop] = ACTIONS(357), + [anon_sym_match] = ACTIONS(357), + [anon_sym_pub] = ACTIONS(357), + [anon_sym_return] = ACTIONS(357), + [anon_sym_static] = ACTIONS(357), + [anon_sym_while] = ACTIONS(357), + [anon_sym_for] = ACTIONS(357), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym_identifier] = ACTIONS(357), + [sym_mutable_specifier] = ACTIONS(357), + [sym_super] = ACTIONS(357), [sym_line_comment] = ACTIONS(3), }, [44] = { - [sym_delim_token_tree] = STATE(47), - [sym__delim_tokens] = STATE(47), - [sym__literal] = STATE(47), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(47), - [aux_sym_delim_token_tree_repeat1] = STATE(47), + [sym_delim_token_tree] = STATE(53), + [sym__delim_tokens] = STATE(53), + [sym__literal] = STATE(53), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(53), + [aux_sym_delim_token_tree_repeat1] = STATE(53), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(356), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(356), - [anon_sym_type] = ACTIONS(356), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(356), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(356), - [anon_sym_struct] = ACTIONS(356), - [anon_sym_enum] = ACTIONS(356), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(356), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(356), - [anon_sym_use] = ACTIONS(356), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(314), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(356), - [anon_sym_continue] = ACTIONS(356), - [anon_sym_default] = ACTIONS(356), - [anon_sym_if] = ACTIONS(356), - [anon_sym_extern] = ACTIONS(356), - [anon_sym_nopanic] = ACTIONS(356), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(356), - [anon_sym_pub] = ACTIONS(356), - [anon_sym_return] = ACTIONS(356), - [anon_sym_static] = ACTIONS(356), - [anon_sym_while] = ACTIONS(356), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(358), - [sym_identifier] = ACTIONS(356), - [sym_mutable_specifier] = ACTIONS(356), - [sym_super] = ACTIONS(356), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(361), + [anon_sym_type] = ACTIONS(361), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_mod] = ACTIONS(361), + [anon_sym_struct] = ACTIONS(361), + [anon_sym_enum] = ACTIONS(361), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(361), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(361), + [anon_sym_use] = ACTIONS(361), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(361), + [anon_sym_continue] = ACTIONS(361), + [anon_sym_default] = ACTIONS(361), + [anon_sym_if] = ACTIONS(361), + [anon_sym_extern] = ACTIONS(361), + [anon_sym_nopanic] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(361), + [anon_sym_match] = ACTIONS(361), + [anon_sym_pub] = ACTIONS(361), + [anon_sym_return] = ACTIONS(361), + [anon_sym_static] = ACTIONS(361), + [anon_sym_while] = ACTIONS(361), + [anon_sym_for] = ACTIONS(361), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(363), + [sym_identifier] = ACTIONS(361), + [sym_mutable_specifier] = ACTIONS(361), + [sym_super] = ACTIONS(361), [sym_line_comment] = ACTIONS(3), }, [45] = { [sym_delim_token_tree] = STATE(40), [sym__delim_tokens] = STATE(40), [sym__literal] = STATE(40), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(40), [aux_sym_delim_token_tree_repeat1] = STATE(40), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(360), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(360), - [anon_sym_type] = ACTIONS(360), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(360), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_RBRACK] = ACTIONS(352), - [anon_sym_mod] = ACTIONS(360), - [anon_sym_struct] = ACTIONS(360), - [anon_sym_enum] = ACTIONS(360), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(360), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(360), - [anon_sym_use] = ACTIONS(360), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(360), - [anon_sym_continue] = ACTIONS(360), - [anon_sym_default] = ACTIONS(360), - [anon_sym_if] = ACTIONS(360), - [anon_sym_extern] = ACTIONS(360), - [anon_sym_nopanic] = ACTIONS(360), - [anon_sym_loop] = ACTIONS(360), - [anon_sym_match] = ACTIONS(360), - [anon_sym_pub] = ACTIONS(360), - [anon_sym_return] = ACTIONS(360), - [anon_sym_static] = ACTIONS(360), - [anon_sym_while] = ACTIONS(360), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(362), - [sym_identifier] = ACTIONS(360), - [sym_mutable_specifier] = ACTIONS(360), - [sym_super] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(365), + [anon_sym_type] = ACTIONS(365), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(365), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(365), + [anon_sym_struct] = ACTIONS(365), + [anon_sym_enum] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(365), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(365), + [anon_sym_use] = ACTIONS(365), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(365), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_default] = ACTIONS(365), + [anon_sym_if] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(365), + [anon_sym_nopanic] = ACTIONS(365), + [anon_sym_loop] = ACTIONS(365), + [anon_sym_match] = ACTIONS(365), + [anon_sym_pub] = ACTIONS(365), + [anon_sym_return] = ACTIONS(365), + [anon_sym_static] = ACTIONS(365), + [anon_sym_while] = ACTIONS(365), + [anon_sym_for] = ACTIONS(365), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_identifier] = ACTIONS(365), + [sym_mutable_specifier] = ACTIONS(365), + [sym_super] = ACTIONS(365), [sym_line_comment] = ACTIONS(3), }, [46] = { [sym_delim_token_tree] = STATE(41), [sym__delim_tokens] = STATE(41), [sym__literal] = STATE(41), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(41), [aux_sym_delim_token_tree_repeat1] = STATE(41), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(352), - [anon_sym_impl] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(364), - [anon_sym_type] = ACTIONS(364), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(364), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(364), - [anon_sym_struct] = ACTIONS(364), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(364), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(364), - [anon_sym_use] = ACTIONS(364), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(364), - [anon_sym_continue] = ACTIONS(364), - [anon_sym_default] = ACTIONS(364), - [anon_sym_if] = ACTIONS(364), - [anon_sym_extern] = ACTIONS(364), - [anon_sym_nopanic] = ACTIONS(364), - [anon_sym_loop] = ACTIONS(364), - [anon_sym_match] = ACTIONS(364), - [anon_sym_pub] = ACTIONS(364), - [anon_sym_return] = ACTIONS(364), - [anon_sym_static] = ACTIONS(364), - [anon_sym_while] = ACTIONS(364), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(366), - [sym_identifier] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(364), - [sym_super] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(371), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(371), + [anon_sym_type] = ACTIONS(371), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(371), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(367), + [anon_sym_mod] = ACTIONS(371), + [anon_sym_struct] = ACTIONS(371), + [anon_sym_enum] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(371), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(371), + [anon_sym_use] = ACTIONS(371), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_default] = ACTIONS(371), + [anon_sym_if] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(371), + [anon_sym_nopanic] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(371), + [anon_sym_match] = ACTIONS(371), + [anon_sym_pub] = ACTIONS(371), + [anon_sym_return] = ACTIONS(371), + [anon_sym_static] = ACTIONS(371), + [anon_sym_while] = ACTIONS(371), + [anon_sym_for] = ACTIONS(371), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(373), + [sym_identifier] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(371), + [sym_super] = ACTIONS(371), [sym_line_comment] = ACTIONS(3), }, [47] = { - [sym_delim_token_tree] = STATE(23), - [sym__delim_tokens] = STATE(23), - [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(23), - [aux_sym_delim_token_tree_repeat1] = STATE(23), + [sym_delim_token_tree] = STATE(42), + [sym__delim_tokens] = STATE(42), + [sym__literal] = STATE(42), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(42), + [aux_sym_delim_token_tree_repeat1] = STATE(42), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_impl] = ACTIONS(375), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(375), + [anon_sym_type] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(375), + [anon_sym_struct] = ACTIONS(375), + [anon_sym_enum] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(375), + [anon_sym_use] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(375), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_default] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(375), + [anon_sym_nopanic] = ACTIONS(375), + [anon_sym_loop] = ACTIONS(375), + [anon_sym_match] = ACTIONS(375), + [anon_sym_pub] = ACTIONS(375), + [anon_sym_return] = ACTIONS(375), + [anon_sym_static] = ACTIONS(375), + [anon_sym_while] = ACTIONS(375), + [anon_sym_for] = ACTIONS(375), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(377), + [sym_identifier] = ACTIONS(375), + [sym_mutable_specifier] = ACTIONS(375), + [sym_super] = ACTIONS(375), [sym_line_comment] = ACTIONS(3), }, [48] = { [sym_delim_token_tree] = STATE(52), [sym__delim_tokens] = STATE(52), [sym__literal] = STATE(52), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(52), [aux_sym_delim_token_tree_repeat1] = STATE(52), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(370), - [anon_sym_impl] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(372), - [anon_sym_type] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(372), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(372), - [anon_sym_struct] = ACTIONS(372), - [anon_sym_enum] = ACTIONS(372), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(372), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(372), - [anon_sym_use] = ACTIONS(372), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(372), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_default] = ACTIONS(372), - [anon_sym_if] = ACTIONS(372), - [anon_sym_extern] = ACTIONS(372), - [anon_sym_nopanic] = ACTIONS(372), - [anon_sym_loop] = ACTIONS(372), - [anon_sym_match] = ACTIONS(372), - [anon_sym_pub] = ACTIONS(372), - [anon_sym_return] = ACTIONS(372), - [anon_sym_static] = ACTIONS(372), - [anon_sym_while] = ACTIONS(372), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(374), - [sym_identifier] = ACTIONS(372), - [sym_mutable_specifier] = ACTIONS(372), - [sym_super] = ACTIONS(372), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(379), + [anon_sym_type] = ACTIONS(379), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(285), + [anon_sym_mod] = ACTIONS(379), + [anon_sym_struct] = ACTIONS(379), + [anon_sym_enum] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(379), + [anon_sym_use] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(379), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_default] = ACTIONS(379), + [anon_sym_if] = ACTIONS(379), + [anon_sym_extern] = ACTIONS(379), + [anon_sym_nopanic] = ACTIONS(379), + [anon_sym_loop] = ACTIONS(379), + [anon_sym_match] = ACTIONS(379), + [anon_sym_pub] = ACTIONS(379), + [anon_sym_return] = ACTIONS(379), + [anon_sym_static] = ACTIONS(379), + [anon_sym_while] = ACTIONS(379), + [anon_sym_for] = ACTIONS(379), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(381), + [sym_identifier] = ACTIONS(379), + [sym_mutable_specifier] = ACTIONS(379), + [sym_super] = ACTIONS(379), [sym_line_comment] = ACTIONS(3), }, [49] = { - [sym_delim_token_tree] = STATE(35), - [sym__delim_tokens] = STATE(35), - [sym__literal] = STATE(35), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(35), - [aux_sym_delim_token_tree_repeat1] = STATE(35), + [sym_delim_token_tree] = STATE(26), + [sym__delim_tokens] = STATE(26), + [sym__literal] = STATE(26), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(26), + [aux_sym_delim_token_tree_repeat1] = STATE(26), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(376), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(376), - [anon_sym_type] = ACTIONS(376), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(376), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_RBRACK] = ACTIONS(370), - [anon_sym_mod] = ACTIONS(376), - [anon_sym_struct] = ACTIONS(376), - [anon_sym_enum] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(376), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(376), - [anon_sym_use] = ACTIONS(376), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(376), - [anon_sym_continue] = ACTIONS(376), - [anon_sym_default] = ACTIONS(376), - [anon_sym_if] = ACTIONS(376), - [anon_sym_extern] = ACTIONS(376), - [anon_sym_nopanic] = ACTIONS(376), - [anon_sym_loop] = ACTIONS(376), - [anon_sym_match] = ACTIONS(376), - [anon_sym_pub] = ACTIONS(376), - [anon_sym_return] = ACTIONS(376), - [anon_sym_static] = ACTIONS(376), - [anon_sym_while] = ACTIONS(376), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(378), - [sym_identifier] = ACTIONS(376), - [sym_mutable_specifier] = ACTIONS(376), - [sym_super] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(383), + [anon_sym_type] = ACTIONS(383), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(383), + [anon_sym_struct] = ACTIONS(383), + [anon_sym_enum] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(383), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(383), + [anon_sym_use] = ACTIONS(383), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(285), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(383), + [anon_sym_default] = ACTIONS(383), + [anon_sym_if] = ACTIONS(383), + [anon_sym_extern] = ACTIONS(383), + [anon_sym_nopanic] = ACTIONS(383), + [anon_sym_loop] = ACTIONS(383), + [anon_sym_match] = ACTIONS(383), + [anon_sym_pub] = ACTIONS(383), + [anon_sym_return] = ACTIONS(383), + [anon_sym_static] = ACTIONS(383), + [anon_sym_while] = ACTIONS(383), + [anon_sym_for] = ACTIONS(383), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(385), + [sym_identifier] = ACTIONS(383), + [sym_mutable_specifier] = ACTIONS(383), + [sym_super] = ACTIONS(383), [sym_line_comment] = ACTIONS(3), }, [50] = { - [sym_delim_token_tree] = STATE(24), - [sym__delim_tokens] = STATE(24), - [sym__literal] = STATE(24), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), - [sym__non_delim_token] = STATE(24), - [aux_sym_delim_token_tree_repeat1] = STATE(24), + [sym_delim_token_tree] = STATE(23), + [sym__delim_tokens] = STATE(23), + [sym__literal] = STATE(23), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), + [sym__non_delim_token] = STATE(23), + [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(380), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(380), - [anon_sym_type] = ACTIONS(380), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(380), - [anon_sym_struct] = ACTIONS(380), - [anon_sym_enum] = ACTIONS(380), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(380), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(380), - [anon_sym_use] = ACTIONS(380), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_RPAREN] = ACTIONS(370), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(380), - [anon_sym_continue] = ACTIONS(380), - [anon_sym_default] = ACTIONS(380), - [anon_sym_if] = ACTIONS(380), - [anon_sym_extern] = ACTIONS(380), - [anon_sym_nopanic] = ACTIONS(380), - [anon_sym_loop] = ACTIONS(380), - [anon_sym_match] = ACTIONS(380), - [anon_sym_pub] = ACTIONS(380), - [anon_sym_return] = ACTIONS(380), - [anon_sym_static] = ACTIONS(380), - [anon_sym_while] = ACTIONS(380), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_identifier] = ACTIONS(380), - [sym_mutable_specifier] = ACTIONS(380), - [sym_super] = ACTIONS(380), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [51] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_RBRACK] = ACTIONS(368), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [52] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(290), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(319), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [53] = { [sym_delim_token_tree] = STATE(23), [sym__delim_tokens] = STATE(23), [sym__literal] = STATE(23), - [sym_negative_literal] = STATE(62), - [sym_string_literal] = STATE(62), - [sym_boolean_literal] = STATE(62), + [sym_negative_literal] = STATE(65), + [sym_string_literal] = STATE(65), + [sym_boolean_literal] = STATE(65), [sym__non_delim_token] = STATE(23), [aux_sym_delim_token_tree_repeat1] = STATE(23), [aux_sym__non_special_token_repeat1] = STATE(59), - [anon_sym_LBRACE] = ACTIONS(278), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_impl] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(282), - [anon_sym_trait] = ACTIONS(280), - [anon_sym_type] = ACTIONS(280), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_const] = ACTIONS(280), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_POUND] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_mod] = ACTIONS(280), - [anon_sym_struct] = ACTIONS(280), - [anon_sym_enum] = ACTIONS(280), - [anon_sym_COMMA] = ACTIONS(282), - [anon_sym_fn] = ACTIONS(280), - [anon_sym_DASH_GT] = ACTIONS(282), - [anon_sym_let] = ACTIONS(280), - [anon_sym_use] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(288), - [anon_sym__] = ACTIONS(284), - [anon_sym_u8] = ACTIONS(292), - [anon_sym_i8] = ACTIONS(292), - [anon_sym_u16] = ACTIONS(292), - [anon_sym_i16] = ACTIONS(292), - [anon_sym_u32] = ACTIONS(292), - [anon_sym_i32] = ACTIONS(292), - [anon_sym_u64] = ACTIONS(292), - [anon_sym_i64] = ACTIONS(292), - [anon_sym_u128] = ACTIONS(292), - [anon_sym_i128] = ACTIONS(292), - [anon_sym_usize] = ACTIONS(292), - [anon_sym_bool] = ACTIONS(292), - [anon_sym_ByteArray] = ACTIONS(292), - [anon_sym_felt252] = ACTIONS(292), - [anon_sym_LT] = ACTIONS(284), - [anon_sym_GT] = ACTIONS(284), - [anon_sym_PLUS] = ACTIONS(284), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_SLASH] = ACTIONS(284), - [anon_sym_PERCENT] = ACTIONS(284), - [anon_sym_CARET] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(282), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_PIPE] = ACTIONS(284), - [anon_sym_AMP_AMP] = ACTIONS(282), - [anon_sym_PIPE_PIPE] = ACTIONS(282), - [anon_sym_LT_LT] = ACTIONS(282), - [anon_sym_GT_GT] = ACTIONS(282), - [anon_sym_PLUS_EQ] = ACTIONS(282), - [anon_sym_DASH_EQ] = ACTIONS(282), - [anon_sym_STAR_EQ] = ACTIONS(282), - [anon_sym_SLASH_EQ] = ACTIONS(282), - [anon_sym_PERCENT_EQ] = ACTIONS(282), - [anon_sym_CARET_EQ] = ACTIONS(282), - [anon_sym_AMP_EQ] = ACTIONS(282), - [anon_sym_PIPE_EQ] = ACTIONS(282), - [anon_sym_EQ_EQ] = ACTIONS(282), - [anon_sym_BANG_EQ] = ACTIONS(282), - [anon_sym_GT_EQ] = ACTIONS(282), - [anon_sym_LT_EQ] = ACTIONS(282), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_DOT_DOT] = ACTIONS(282), - [anon_sym_DOT] = ACTIONS(284), - [anon_sym_EQ_GT] = ACTIONS(282), - [anon_sym_QMARK] = ACTIONS(282), - [anon_sym_break] = ACTIONS(280), - [anon_sym_continue] = ACTIONS(280), - [anon_sym_default] = ACTIONS(280), - [anon_sym_if] = ACTIONS(280), - [anon_sym_extern] = ACTIONS(280), - [anon_sym_nopanic] = ACTIONS(280), - [anon_sym_loop] = ACTIONS(280), - [anon_sym_match] = ACTIONS(280), - [anon_sym_pub] = ACTIONS(280), - [anon_sym_return] = ACTIONS(280), - [anon_sym_static] = ACTIONS(280), - [anon_sym_while] = ACTIONS(280), - [sym_numeric_literal] = ACTIONS(296), - [aux_sym_string_literal_token1] = ACTIONS(298), - [sym_shortstring_literal] = ACTIONS(300), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(304), - [sym_identifier] = ACTIONS(280), - [sym_mutable_specifier] = ACTIONS(280), - [sym_super] = ACTIONS(280), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_impl] = ACTIONS(317), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_trait] = ACTIONS(317), + [anon_sym_type] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_const] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(291), + [anon_sym_POUND] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_RBRACK] = ACTIONS(387), + [anon_sym_mod] = ACTIONS(317), + [anon_sym_struct] = ACTIONS(317), + [anon_sym_enum] = ACTIONS(317), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_DASH_GT] = ACTIONS(289), + [anon_sym_let] = ACTIONS(317), + [anon_sym_use] = ACTIONS(317), + [anon_sym_COLON_COLON] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym__] = ACTIONS(291), + [anon_sym_u8] = ACTIONS(297), + [anon_sym_i8] = ACTIONS(297), + [anon_sym_u16] = ACTIONS(297), + [anon_sym_i16] = ACTIONS(297), + [anon_sym_u32] = ACTIONS(297), + [anon_sym_i32] = ACTIONS(297), + [anon_sym_u64] = ACTIONS(297), + [anon_sym_i64] = ACTIONS(297), + [anon_sym_u128] = ACTIONS(297), + [anon_sym_i128] = ACTIONS(297), + [anon_sym_usize] = ACTIONS(297), + [anon_sym_bool] = ACTIONS(297), + [anon_sym_ByteArray] = ACTIONS(297), + [anon_sym_felt252] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_LT_LT] = ACTIONS(289), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_CARET_EQ] = ACTIONS(289), + [anon_sym_AMP_EQ] = ACTIONS(289), + [anon_sym_PIPE_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_EQ_GT] = ACTIONS(289), + [anon_sym_QMARK] = ACTIONS(289), + [anon_sym_break] = ACTIONS(317), + [anon_sym_continue] = ACTIONS(317), + [anon_sym_default] = ACTIONS(317), + [anon_sym_if] = ACTIONS(317), + [anon_sym_extern] = ACTIONS(317), + [anon_sym_nopanic] = ACTIONS(317), + [anon_sym_loop] = ACTIONS(317), + [anon_sym_match] = ACTIONS(317), + [anon_sym_pub] = ACTIONS(317), + [anon_sym_return] = ACTIONS(317), + [anon_sym_static] = ACTIONS(317), + [anon_sym_while] = ACTIONS(317), + [anon_sym_for] = ACTIONS(317), + [sym_numeric_literal] = ACTIONS(301), + [aux_sym_string_literal_token1] = ACTIONS(303), + [sym_shortstring_literal] = ACTIONS(305), + [anon_sym_true] = ACTIONS(307), + [anon_sym_false] = ACTIONS(307), + [anon_sym_DOLLAR] = ACTIONS(321), + [sym_identifier] = ACTIONS(317), + [sym_mutable_specifier] = ACTIONS(317), + [sym_super] = ACTIONS(317), [sym_line_comment] = ACTIONS(3), }, [54] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(746), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(231), - [anon_sym_PIPE_PIPE] = ACTIONS(231), - [anon_sym_LT_LT] = ACTIONS(231), - [anon_sym_GT_GT] = ACTIONS(231), - [anon_sym_PLUS_EQ] = ACTIONS(231), - [anon_sym_DASH_EQ] = ACTIONS(231), - [anon_sym_STAR_EQ] = ACTIONS(231), - [anon_sym_SLASH_EQ] = ACTIONS(231), - [anon_sym_PERCENT_EQ] = ACTIONS(231), - [anon_sym_EQ_EQ] = ACTIONS(231), - [anon_sym_BANG_EQ] = ACTIONS(231), - [anon_sym_GT_EQ] = ACTIONS(231), - [anon_sym_LT_EQ] = ACTIONS(231), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_DOT] = ACTIONS(231), - [anon_sym_EQ_GT] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(231), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(760), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(230), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(230), + [anon_sym_GT] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(230), + [anon_sym_PERCENT] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(228), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(228), + [anon_sym_PIPE_PIPE] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(228), + [anon_sym_GT_GT] = ACTIONS(228), + [anon_sym_PLUS_EQ] = ACTIONS(228), + [anon_sym_DASH_EQ] = ACTIONS(228), + [anon_sym_STAR_EQ] = ACTIONS(228), + [anon_sym_SLASH_EQ] = ACTIONS(228), + [anon_sym_PERCENT_EQ] = ACTIONS(228), + [anon_sym_EQ_EQ] = ACTIONS(228), + [anon_sym_BANG_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(228), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_EQ_GT] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [55] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(742), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_EQ] = ACTIONS(225), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(225), - [anon_sym_SLASH] = ACTIONS(225), - [anon_sym_PERCENT] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [anon_sym_LT_LT] = ACTIONS(223), - [anon_sym_GT_GT] = ACTIONS(223), - [anon_sym_PLUS_EQ] = ACTIONS(223), - [anon_sym_DASH_EQ] = ACTIONS(223), - [anon_sym_STAR_EQ] = ACTIONS(223), - [anon_sym_SLASH_EQ] = ACTIONS(223), - [anon_sym_PERCENT_EQ] = ACTIONS(223), - [anon_sym_EQ_EQ] = ACTIONS(223), - [anon_sym_BANG_EQ] = ACTIONS(223), - [anon_sym_GT_EQ] = ACTIONS(223), - [anon_sym_LT_EQ] = ACTIONS(223), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_EQ_GT] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(755), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(240), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(238), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(240), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_SLASH] = ACTIONS(240), + [anon_sym_PERCENT] = ACTIONS(240), + [anon_sym_CARET] = ACTIONS(238), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(240), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_PLUS_EQ] = ACTIONS(238), + [anon_sym_DASH_EQ] = ACTIONS(238), + [anon_sym_STAR_EQ] = ACTIONS(238), + [anon_sym_SLASH_EQ] = ACTIONS(238), + [anon_sym_PERCENT_EQ] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_BANG_EQ] = ACTIONS(238), + [anon_sym_GT_EQ] = ACTIONS(238), + [anon_sym_LT_EQ] = ACTIONS(238), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(238), + [anon_sym_EQ_GT] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [56] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(712), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_EQ] = ACTIONS(225), - [anon_sym_BANG] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(225), - [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_GT] = ACTIONS(225), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(225), - [anon_sym_SLASH] = ACTIONS(225), - [anon_sym_PERCENT] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(223), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [anon_sym_LT_LT] = ACTIONS(223), - [anon_sym_GT_GT] = ACTIONS(223), - [anon_sym_PLUS_EQ] = ACTIONS(223), - [anon_sym_DASH_EQ] = ACTIONS(223), - [anon_sym_STAR_EQ] = ACTIONS(223), - [anon_sym_SLASH_EQ] = ACTIONS(223), - [anon_sym_PERCENT_EQ] = ACTIONS(223), - [anon_sym_EQ_EQ] = ACTIONS(223), - [anon_sym_BANG_EQ] = ACTIONS(223), - [anon_sym_GT_EQ] = ACTIONS(223), - [anon_sym_LT_EQ] = ACTIONS(223), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(223), - [anon_sym_QMARK] = ACTIONS(223), - [anon_sym_break] = ACTIONS(438), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(757), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(238), + [anon_sym_EQ] = ACTIONS(240), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_LBRACK] = ACTIONS(238), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(240), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(240), + [anon_sym_GT] = ACTIONS(240), + [anon_sym_PLUS] = ACTIONS(240), + [anon_sym_DASH] = ACTIONS(240), + [anon_sym_SLASH] = ACTIONS(240), + [anon_sym_PERCENT] = ACTIONS(240), + [anon_sym_CARET] = ACTIONS(238), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(240), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(238), + [anon_sym_PIPE_PIPE] = ACTIONS(238), + [anon_sym_LT_LT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(238), + [anon_sym_PLUS_EQ] = ACTIONS(238), + [anon_sym_DASH_EQ] = ACTIONS(238), + [anon_sym_STAR_EQ] = ACTIONS(238), + [anon_sym_SLASH_EQ] = ACTIONS(238), + [anon_sym_PERCENT_EQ] = ACTIONS(238), + [anon_sym_EQ_EQ] = ACTIONS(238), + [anon_sym_BANG_EQ] = ACTIONS(238), + [anon_sym_GT_EQ] = ACTIONS(238), + [anon_sym_LT_EQ] = ACTIONS(238), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(238), + [anon_sym_QMARK] = ACTIONS(238), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [57] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(714), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(741), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(230), + [anon_sym_BANG] = ACTIONS(437), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(437), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_PERCENT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(231), - [anon_sym_PIPE_PIPE] = ACTIONS(231), - [anon_sym_LT_LT] = ACTIONS(231), - [anon_sym_GT_GT] = ACTIONS(231), - [anon_sym_PLUS_EQ] = ACTIONS(231), - [anon_sym_DASH_EQ] = ACTIONS(231), - [anon_sym_STAR_EQ] = ACTIONS(231), - [anon_sym_SLASH_EQ] = ACTIONS(231), - [anon_sym_PERCENT_EQ] = ACTIONS(231), - [anon_sym_EQ_EQ] = ACTIONS(231), - [anon_sym_BANG_EQ] = ACTIONS(231), - [anon_sym_GT_EQ] = ACTIONS(231), - [anon_sym_LT_EQ] = ACTIONS(231), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(231), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(230), + [anon_sym_GT] = ACTIONS(230), + [anon_sym_PLUS] = ACTIONS(230), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_SLASH] = ACTIONS(230), + [anon_sym_PERCENT] = ACTIONS(230), + [anon_sym_CARET] = ACTIONS(228), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_PIPE] = ACTIONS(230), + [anon_sym_AMP_AMP] = ACTIONS(228), + [anon_sym_PIPE_PIPE] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(228), + [anon_sym_GT_GT] = ACTIONS(228), + [anon_sym_PLUS_EQ] = ACTIONS(228), + [anon_sym_DASH_EQ] = ACTIONS(228), + [anon_sym_STAR_EQ] = ACTIONS(228), + [anon_sym_SLASH_EQ] = ACTIONS(228), + [anon_sym_PERCENT_EQ] = ACTIONS(228), + [anon_sym_EQ_EQ] = ACTIONS(228), + [anon_sym_BANG_EQ] = ACTIONS(228), + [anon_sym_GT_EQ] = ACTIONS(228), + [anon_sym_LT_EQ] = ACTIONS(228), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(228), + [anon_sym_QMARK] = ACTIONS(228), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [58] = { [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(452), - [anon_sym_RBRACE] = ACTIONS(452), - [anon_sym_impl] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_trait] = ACTIONS(454), - [anon_sym_type] = ACTIONS(454), - [anon_sym_COLON] = ACTIONS(459), - [anon_sym_const] = ACTIONS(454), - [anon_sym_EQ] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(452), - [anon_sym_RBRACK] = ACTIONS(452), - [anon_sym_mod] = ACTIONS(454), - [anon_sym_struct] = ACTIONS(454), - [anon_sym_enum] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(456), - [anon_sym_fn] = ACTIONS(454), - [anon_sym_DASH_GT] = ACTIONS(456), - [anon_sym_let] = ACTIONS(454), - [anon_sym_use] = ACTIONS(454), - [anon_sym_COLON_COLON] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(452), - [anon_sym__] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_u8] = ACTIONS(454), - [anon_sym_i8] = ACTIONS(454), - [anon_sym_u16] = ACTIONS(454), - [anon_sym_i16] = ACTIONS(454), - [anon_sym_u32] = ACTIONS(454), - [anon_sym_i32] = ACTIONS(454), - [anon_sym_u64] = ACTIONS(454), - [anon_sym_i64] = ACTIONS(454), - [anon_sym_u128] = ACTIONS(454), - [anon_sym_i128] = ACTIONS(454), - [anon_sym_usize] = ACTIONS(454), - [anon_sym_bool] = ACTIONS(454), - [anon_sym_ByteArray] = ACTIONS(454), - [anon_sym_felt252] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(459), - [anon_sym_CARET] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(456), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_PLUS_EQ] = ACTIONS(456), - [anon_sym_DASH_EQ] = ACTIONS(456), - [anon_sym_STAR_EQ] = ACTIONS(456), - [anon_sym_SLASH_EQ] = ACTIONS(456), - [anon_sym_PERCENT_EQ] = ACTIONS(456), - [anon_sym_CARET_EQ] = ACTIONS(456), - [anon_sym_AMP_EQ] = ACTIONS(456), - [anon_sym_PIPE_EQ] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(456), - [anon_sym_BANG_EQ] = ACTIONS(456), - [anon_sym_GT_EQ] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(456), - [anon_sym_AT] = ACTIONS(456), - [anon_sym_DOT_DOT] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(459), - [anon_sym_EQ_GT] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(456), - [anon_sym_break] = ACTIONS(454), - [anon_sym_continue] = ACTIONS(454), - [anon_sym_default] = ACTIONS(454), - [anon_sym_if] = ACTIONS(454), - [anon_sym_extern] = ACTIONS(454), - [anon_sym_nopanic] = ACTIONS(454), - [anon_sym_loop] = ACTIONS(454), - [anon_sym_match] = ACTIONS(454), - [anon_sym_pub] = ACTIONS(454), - [anon_sym_return] = ACTIONS(454), - [anon_sym_static] = ACTIONS(454), - [anon_sym_while] = ACTIONS(454), - [sym_numeric_literal] = ACTIONS(454), - [aux_sym_string_literal_token1] = ACTIONS(452), - [sym_shortstring_literal] = ACTIONS(452), - [anon_sym_true] = ACTIONS(454), - [anon_sym_false] = ACTIONS(454), - [anon_sym_DOLLAR] = ACTIONS(452), - [sym_identifier] = ACTIONS(454), - [sym_mutable_specifier] = ACTIONS(454), - [sym_super] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_impl] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(463), + [anon_sym_trait] = ACTIONS(461), + [anon_sym_type] = ACTIONS(461), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_const] = ACTIONS(461), + [anon_sym_EQ] = ACTIONS(466), + [anon_sym_BANG] = ACTIONS(466), + [anon_sym_POUND] = ACTIONS(463), + [anon_sym_LBRACK] = ACTIONS(459), + [anon_sym_RBRACK] = ACTIONS(459), + [anon_sym_mod] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(461), + [anon_sym_enum] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(463), + [anon_sym_fn] = ACTIONS(461), + [anon_sym_DASH_GT] = ACTIONS(463), + [anon_sym_let] = ACTIONS(461), + [anon_sym_use] = ACTIONS(461), + [anon_sym_COLON_COLON] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym__] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(459), + [anon_sym_u8] = ACTIONS(461), + [anon_sym_i8] = ACTIONS(461), + [anon_sym_u16] = ACTIONS(461), + [anon_sym_i16] = ACTIONS(461), + [anon_sym_u32] = ACTIONS(461), + [anon_sym_i32] = ACTIONS(461), + [anon_sym_u64] = ACTIONS(461), + [anon_sym_i64] = ACTIONS(461), + [anon_sym_u128] = ACTIONS(461), + [anon_sym_i128] = ACTIONS(461), + [anon_sym_usize] = ACTIONS(461), + [anon_sym_bool] = ACTIONS(461), + [anon_sym_ByteArray] = ACTIONS(461), + [anon_sym_felt252] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_GT] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(466), + [anon_sym_SLASH] = ACTIONS(466), + [anon_sym_PERCENT] = ACTIONS(466), + [anon_sym_CARET] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(463), + [anon_sym_AMP] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(466), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE_PIPE] = ACTIONS(463), + [anon_sym_LT_LT] = ACTIONS(463), + [anon_sym_GT_GT] = ACTIONS(463), + [anon_sym_PLUS_EQ] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(463), + [anon_sym_STAR_EQ] = ACTIONS(463), + [anon_sym_SLASH_EQ] = ACTIONS(463), + [anon_sym_PERCENT_EQ] = ACTIONS(463), + [anon_sym_CARET_EQ] = ACTIONS(463), + [anon_sym_AMP_EQ] = ACTIONS(463), + [anon_sym_PIPE_EQ] = ACTIONS(463), + [anon_sym_EQ_EQ] = ACTIONS(463), + [anon_sym_BANG_EQ] = ACTIONS(463), + [anon_sym_GT_EQ] = ACTIONS(463), + [anon_sym_LT_EQ] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(463), + [anon_sym_DOT_DOT] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(466), + [anon_sym_EQ_GT] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(463), + [anon_sym_break] = ACTIONS(461), + [anon_sym_continue] = ACTIONS(461), + [anon_sym_default] = ACTIONS(461), + [anon_sym_if] = ACTIONS(461), + [anon_sym_extern] = ACTIONS(461), + [anon_sym_nopanic] = ACTIONS(461), + [anon_sym_loop] = ACTIONS(461), + [anon_sym_match] = ACTIONS(461), + [anon_sym_pub] = ACTIONS(461), + [anon_sym_return] = ACTIONS(461), + [anon_sym_static] = ACTIONS(461), + [anon_sym_while] = ACTIONS(461), + [anon_sym_for] = ACTIONS(461), + [sym_numeric_literal] = ACTIONS(461), + [aux_sym_string_literal_token1] = ACTIONS(459), + [sym_shortstring_literal] = ACTIONS(459), + [anon_sym_true] = ACTIONS(461), + [anon_sym_false] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(459), + [sym_identifier] = ACTIONS(461), + [sym_mutable_specifier] = ACTIONS(461), + [sym_super] = ACTIONS(461), [sym_line_comment] = ACTIONS(3), }, [59] = { [aux_sym__non_special_token_repeat1] = STATE(58), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_impl] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_trait] = ACTIONS(464), - [anon_sym_type] = ACTIONS(464), - [anon_sym_COLON] = ACTIONS(468), - [anon_sym_const] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_RBRACK] = ACTIONS(462), - [anon_sym_mod] = ACTIONS(464), - [anon_sym_struct] = ACTIONS(464), - [anon_sym_enum] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_fn] = ACTIONS(464), - [anon_sym_DASH_GT] = ACTIONS(466), - [anon_sym_let] = ACTIONS(464), - [anon_sym_use] = ACTIONS(464), - [anon_sym_COLON_COLON] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_LPAREN] = ACTIONS(462), - [anon_sym__] = ACTIONS(468), - [anon_sym_RPAREN] = ACTIONS(462), - [anon_sym_u8] = ACTIONS(464), - [anon_sym_i8] = ACTIONS(464), - [anon_sym_u16] = ACTIONS(464), - [anon_sym_i16] = ACTIONS(464), - [anon_sym_u32] = ACTIONS(464), - [anon_sym_i32] = ACTIONS(464), - [anon_sym_u64] = ACTIONS(464), - [anon_sym_i64] = ACTIONS(464), - [anon_sym_u128] = ACTIONS(464), - [anon_sym_i128] = ACTIONS(464), - [anon_sym_usize] = ACTIONS(464), - [anon_sym_bool] = ACTIONS(464), - [anon_sym_ByteArray] = ACTIONS(464), - [anon_sym_felt252] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(468), - [anon_sym_PERCENT] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(466), - [anon_sym_PLUS_EQ] = ACTIONS(466), - [anon_sym_DASH_EQ] = ACTIONS(466), - [anon_sym_STAR_EQ] = ACTIONS(466), - [anon_sym_SLASH_EQ] = ACTIONS(466), - [anon_sym_PERCENT_EQ] = ACTIONS(466), - [anon_sym_CARET_EQ] = ACTIONS(466), - [anon_sym_AMP_EQ] = ACTIONS(466), - [anon_sym_PIPE_EQ] = ACTIONS(466), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_AT] = ACTIONS(466), - [anon_sym_DOT_DOT] = ACTIONS(466), - [anon_sym_DOT] = ACTIONS(468), - [anon_sym_EQ_GT] = ACTIONS(466), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_break] = ACTIONS(464), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_default] = ACTIONS(464), - [anon_sym_if] = ACTIONS(464), - [anon_sym_extern] = ACTIONS(464), - [anon_sym_nopanic] = ACTIONS(464), - [anon_sym_loop] = ACTIONS(464), - [anon_sym_match] = ACTIONS(464), - [anon_sym_pub] = ACTIONS(464), - [anon_sym_return] = ACTIONS(464), - [anon_sym_static] = ACTIONS(464), - [anon_sym_while] = ACTIONS(464), - [sym_numeric_literal] = ACTIONS(464), - [aux_sym_string_literal_token1] = ACTIONS(462), - [sym_shortstring_literal] = ACTIONS(462), - [anon_sym_true] = ACTIONS(464), - [anon_sym_false] = ACTIONS(464), - [anon_sym_DOLLAR] = ACTIONS(462), - [sym_identifier] = ACTIONS(464), - [sym_mutable_specifier] = ACTIONS(464), - [sym_super] = ACTIONS(464), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_impl] = ACTIONS(471), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_trait] = ACTIONS(471), + [anon_sym_type] = ACTIONS(471), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_const] = ACTIONS(471), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_POUND] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(469), + [anon_sym_RBRACK] = ACTIONS(469), + [anon_sym_mod] = ACTIONS(471), + [anon_sym_struct] = ACTIONS(471), + [anon_sym_enum] = ACTIONS(471), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_fn] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(473), + [anon_sym_let] = ACTIONS(471), + [anon_sym_use] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym__] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_u8] = ACTIONS(471), + [anon_sym_i8] = ACTIONS(471), + [anon_sym_u16] = ACTIONS(471), + [anon_sym_i16] = ACTIONS(471), + [anon_sym_u32] = ACTIONS(471), + [anon_sym_i32] = ACTIONS(471), + [anon_sym_u64] = ACTIONS(471), + [anon_sym_i64] = ACTIONS(471), + [anon_sym_u128] = ACTIONS(471), + [anon_sym_i128] = ACTIONS(471), + [anon_sym_usize] = ACTIONS(471), + [anon_sym_bool] = ACTIONS(471), + [anon_sym_ByteArray] = ACTIONS(471), + [anon_sym_felt252] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_PERCENT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PIPE] = ACTIONS(475), + [anon_sym_AMP_AMP] = ACTIONS(473), + [anon_sym_PIPE_PIPE] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [anon_sym_DASH_EQ] = ACTIONS(473), + [anon_sym_STAR_EQ] = ACTIONS(473), + [anon_sym_SLASH_EQ] = ACTIONS(473), + [anon_sym_PERCENT_EQ] = ACTIONS(473), + [anon_sym_CARET_EQ] = ACTIONS(473), + [anon_sym_AMP_EQ] = ACTIONS(473), + [anon_sym_PIPE_EQ] = ACTIONS(473), + [anon_sym_EQ_EQ] = ACTIONS(473), + [anon_sym_BANG_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_EQ_GT] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_break] = ACTIONS(471), + [anon_sym_continue] = ACTIONS(471), + [anon_sym_default] = ACTIONS(471), + [anon_sym_if] = ACTIONS(471), + [anon_sym_extern] = ACTIONS(471), + [anon_sym_nopanic] = ACTIONS(471), + [anon_sym_loop] = ACTIONS(471), + [anon_sym_match] = ACTIONS(471), + [anon_sym_pub] = ACTIONS(471), + [anon_sym_return] = ACTIONS(471), + [anon_sym_static] = ACTIONS(471), + [anon_sym_while] = ACTIONS(471), + [anon_sym_for] = ACTIONS(471), + [sym_numeric_literal] = ACTIONS(471), + [aux_sym_string_literal_token1] = ACTIONS(469), + [sym_shortstring_literal] = ACTIONS(469), + [anon_sym_true] = ACTIONS(471), + [anon_sym_false] = ACTIONS(471), + [anon_sym_DOLLAR] = ACTIONS(469), + [sym_identifier] = ACTIONS(471), + [sym_mutable_specifier] = ACTIONS(471), + [sym_super] = ACTIONS(471), [sym_line_comment] = ACTIONS(3), }, [60] = { - [anon_sym_LBRACE] = ACTIONS(470), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_impl] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_trait] = ACTIONS(472), - [anon_sym_type] = ACTIONS(472), - [anon_sym_COLON] = ACTIONS(472), - [anon_sym_const] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(472), - [anon_sym_POUND] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(470), - [anon_sym_RBRACK] = ACTIONS(470), - [anon_sym_mod] = ACTIONS(472), - [anon_sym_struct] = ACTIONS(472), - [anon_sym_enum] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_fn] = ACTIONS(472), - [anon_sym_DASH_GT] = ACTIONS(470), - [anon_sym_let] = ACTIONS(472), - [anon_sym_use] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_LPAREN] = ACTIONS(470), - [anon_sym__] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(470), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_ByteArray] = ACTIONS(472), - [anon_sym_felt252] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_TILDE] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(470), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_AT] = ACTIONS(470), - [anon_sym_DOT_DOT] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(472), - [anon_sym_EQ_GT] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_break] = ACTIONS(472), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_default] = ACTIONS(472), - [anon_sym_if] = ACTIONS(472), - [anon_sym_extern] = ACTIONS(472), - [anon_sym_nopanic] = ACTIONS(472), - [anon_sym_loop] = ACTIONS(472), - [anon_sym_match] = ACTIONS(472), - [anon_sym_pub] = ACTIONS(472), - [anon_sym_return] = ACTIONS(472), - [anon_sym_static] = ACTIONS(472), - [anon_sym_while] = ACTIONS(472), - [sym_numeric_literal] = ACTIONS(474), - [aux_sym_string_literal_token1] = ACTIONS(470), - [sym_shortstring_literal] = ACTIONS(470), - [anon_sym_true] = ACTIONS(472), - [anon_sym_false] = ACTIONS(472), - [anon_sym_DOLLAR] = ACTIONS(470), - [sym_identifier] = ACTIONS(472), - [sym_mutable_specifier] = ACTIONS(472), - [sym_super] = ACTIONS(472), - [sym_line_comment] = ACTIONS(3), - }, - [61] = { [anon_sym_LBRACE] = ACTIONS(477), [anon_sym_RBRACE] = ACTIONS(477), [anon_sym_impl] = ACTIONS(479), @@ -16158,6 +16236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(479), [anon_sym_static] = ACTIONS(479), [anon_sym_while] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), [sym_numeric_literal] = ACTIONS(479), [aux_sym_string_literal_token1] = ACTIONS(477), [sym_shortstring_literal] = ACTIONS(477), @@ -16169,7 +16248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(479), [sym_line_comment] = ACTIONS(3), }, - [62] = { + [61] = { [anon_sym_LBRACE] = ACTIONS(481), [anon_sym_RBRACE] = ACTIONS(481), [anon_sym_impl] = ACTIONS(483), @@ -16253,6 +16332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(483), [anon_sym_static] = ACTIONS(483), [anon_sym_while] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), [sym_numeric_literal] = ACTIONS(483), [aux_sym_string_literal_token1] = ACTIONS(481), [sym_shortstring_literal] = ACTIONS(481), @@ -16264,7 +16344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(483), [sym_line_comment] = ACTIONS(3), }, - [63] = { + [62] = { [anon_sym_LBRACE] = ACTIONS(485), [anon_sym_RBRACE] = ACTIONS(485), [anon_sym_impl] = ACTIONS(487), @@ -16348,6 +16428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(487), [anon_sym_static] = ACTIONS(487), [anon_sym_while] = ACTIONS(487), + [anon_sym_for] = ACTIONS(487), [sym_numeric_literal] = ACTIONS(487), [aux_sym_string_literal_token1] = ACTIONS(485), [sym_shortstring_literal] = ACTIONS(485), @@ -16359,7 +16440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(487), [sym_line_comment] = ACTIONS(3), }, - [64] = { + [63] = { [anon_sym_LBRACE] = ACTIONS(489), [anon_sym_RBRACE] = ACTIONS(489), [anon_sym_impl] = ACTIONS(491), @@ -16443,6 +16524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(491), [anon_sym_static] = ACTIONS(491), [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), [sym_numeric_literal] = ACTIONS(491), [aux_sym_string_literal_token1] = ACTIONS(489), [sym_shortstring_literal] = ACTIONS(489), @@ -16454,7 +16536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(491), [sym_line_comment] = ACTIONS(3), }, - [65] = { + [64] = { [anon_sym_LBRACE] = ACTIONS(493), [anon_sym_RBRACE] = ACTIONS(493), [anon_sym_impl] = ACTIONS(495), @@ -16538,6 +16620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(495), [anon_sym_static] = ACTIONS(495), [anon_sym_while] = ACTIONS(495), + [anon_sym_for] = ACTIONS(495), [sym_numeric_literal] = ACTIONS(495), [aux_sym_string_literal_token1] = ACTIONS(493), [sym_shortstring_literal] = ACTIONS(493), @@ -16549,7 +16632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(495), [sym_line_comment] = ACTIONS(3), }, - [66] = { + [65] = { [anon_sym_LBRACE] = ACTIONS(497), [anon_sym_RBRACE] = ACTIONS(497), [anon_sym_impl] = ACTIONS(499), @@ -16633,6 +16716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(499), [anon_sym_static] = ACTIONS(499), [anon_sym_while] = ACTIONS(499), + [anon_sym_for] = ACTIONS(499), [sym_numeric_literal] = ACTIONS(499), [aux_sym_string_literal_token1] = ACTIONS(497), [sym_shortstring_literal] = ACTIONS(497), @@ -16644,7 +16728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(499), [sym_line_comment] = ACTIONS(3), }, - [67] = { + [66] = { [anon_sym_LBRACE] = ACTIONS(501), [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_impl] = ACTIONS(503), @@ -16728,7 +16812,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(503), [anon_sym_static] = ACTIONS(503), [anon_sym_while] = ACTIONS(503), - [sym_numeric_literal] = ACTIONS(503), + [anon_sym_for] = ACTIONS(503), + [sym_numeric_literal] = ACTIONS(505), [aux_sym_string_literal_token1] = ACTIONS(501), [sym_shortstring_literal] = ACTIONS(501), [anon_sym_true] = ACTIONS(503), @@ -16739,1661 +16824,1863 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(503), [sym_line_comment] = ACTIONS(3), }, + [67] = { + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_impl] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_trait] = ACTIONS(510), + [anon_sym_type] = ACTIONS(510), + [anon_sym_COLON] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(508), + [anon_sym_RBRACK] = ACTIONS(508), + [anon_sym_mod] = ACTIONS(510), + [anon_sym_struct] = ACTIONS(510), + [anon_sym_enum] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_fn] = ACTIONS(510), + [anon_sym_DASH_GT] = ACTIONS(508), + [anon_sym_let] = ACTIONS(510), + [anon_sym_use] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym__] = ACTIONS(510), + [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(510), + [anon_sym_i8] = ACTIONS(510), + [anon_sym_u16] = ACTIONS(510), + [anon_sym_i16] = ACTIONS(510), + [anon_sym_u32] = ACTIONS(510), + [anon_sym_i32] = ACTIONS(510), + [anon_sym_u64] = ACTIONS(510), + [anon_sym_i64] = ACTIONS(510), + [anon_sym_u128] = ACTIONS(510), + [anon_sym_i128] = ACTIONS(510), + [anon_sym_usize] = ACTIONS(510), + [anon_sym_bool] = ACTIONS(510), + [anon_sym_ByteArray] = ACTIONS(510), + [anon_sym_felt252] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(508), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(508), + [anon_sym_PLUS_EQ] = ACTIONS(508), + [anon_sym_DASH_EQ] = ACTIONS(508), + [anon_sym_STAR_EQ] = ACTIONS(508), + [anon_sym_SLASH_EQ] = ACTIONS(508), + [anon_sym_PERCENT_EQ] = ACTIONS(508), + [anon_sym_CARET_EQ] = ACTIONS(508), + [anon_sym_AMP_EQ] = ACTIONS(508), + [anon_sym_PIPE_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_EQ_GT] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_break] = ACTIONS(510), + [anon_sym_continue] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_if] = ACTIONS(510), + [anon_sym_extern] = ACTIONS(510), + [anon_sym_nopanic] = ACTIONS(510), + [anon_sym_loop] = ACTIONS(510), + [anon_sym_match] = ACTIONS(510), + [anon_sym_pub] = ACTIONS(510), + [anon_sym_return] = ACTIONS(510), + [anon_sym_static] = ACTIONS(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_for] = ACTIONS(510), + [sym_numeric_literal] = ACTIONS(510), + [aux_sym_string_literal_token1] = ACTIONS(508), + [sym_shortstring_literal] = ACTIONS(508), + [anon_sym_true] = ACTIONS(510), + [anon_sym_false] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(508), + [sym_identifier] = ACTIONS(510), + [sym_mutable_specifier] = ACTIONS(510), + [sym_super] = ACTIONS(510), + [sym_line_comment] = ACTIONS(3), + }, [68] = { - [ts_builtin_sym_end] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_RBRACE] = ACTIONS(505), - [anon_sym_impl] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_trait] = ACTIONS(507), - [anon_sym_type] = ACTIONS(507), - [anon_sym_const] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_POUND] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(505), - [anon_sym_RBRACK] = ACTIONS(505), - [anon_sym_mod] = ACTIONS(507), - [anon_sym_struct] = ACTIONS(507), - [anon_sym_enum] = ACTIONS(507), - [anon_sym_COMMA] = ACTIONS(505), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_let] = ACTIONS(507), - [anon_sym_use] = ACTIONS(507), - [anon_sym_COLON_COLON] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(505), - [anon_sym_RPAREN] = ACTIONS(505), - [anon_sym_u8] = ACTIONS(507), - [anon_sym_i8] = ACTIONS(507), - [anon_sym_u16] = ACTIONS(507), - [anon_sym_i16] = ACTIONS(507), - [anon_sym_u32] = ACTIONS(507), - [anon_sym_i32] = ACTIONS(507), - [anon_sym_u64] = ACTIONS(507), - [anon_sym_i64] = ACTIONS(507), - [anon_sym_u128] = ACTIONS(507), - [anon_sym_i128] = ACTIONS(507), - [anon_sym_usize] = ACTIONS(507), - [anon_sym_bool] = ACTIONS(507), - [anon_sym_ByteArray] = ACTIONS(507), - [anon_sym_felt252] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_GT] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_PLUS_EQ] = ACTIONS(505), - [anon_sym_DASH_EQ] = ACTIONS(505), - [anon_sym_STAR_EQ] = ACTIONS(505), - [anon_sym_SLASH_EQ] = ACTIONS(505), - [anon_sym_PERCENT_EQ] = ACTIONS(505), - [anon_sym_EQ_EQ] = ACTIONS(505), - [anon_sym_BANG_EQ] = ACTIONS(505), - [anon_sym_GT_EQ] = ACTIONS(505), - [anon_sym_LT_EQ] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(505), - [anon_sym_DOT] = ACTIONS(505), - [anon_sym_QMARK] = ACTIONS(505), - [anon_sym_break] = ACTIONS(507), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(507), - [anon_sym_if] = ACTIONS(507), - [anon_sym_extern] = ACTIONS(507), - [anon_sym_loop] = ACTIONS(507), - [anon_sym_match] = ACTIONS(507), - [anon_sym_pub] = ACTIONS(507), - [anon_sym_return] = ACTIONS(507), - [anon_sym_while] = ACTIONS(507), - [sym_numeric_literal] = ACTIONS(507), - [aux_sym_string_literal_token1] = ACTIONS(505), - [sym_shortstring_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_ref] = ACTIONS(507), - [sym_identifier] = ACTIONS(507), - [sym_super] = ACTIONS(507), + [ts_builtin_sym_end] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_impl] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_trait] = ACTIONS(514), + [anon_sym_type] = ACTIONS(514), + [anon_sym_const] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(514), + [anon_sym_POUND] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_RBRACK] = ACTIONS(512), + [anon_sym_mod] = ACTIONS(514), + [anon_sym_struct] = ACTIONS(514), + [anon_sym_enum] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_fn] = ACTIONS(514), + [anon_sym_let] = ACTIONS(514), + [anon_sym_use] = ACTIONS(514), + [anon_sym_COLON_COLON] = ACTIONS(512), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_u8] = ACTIONS(514), + [anon_sym_i8] = ACTIONS(514), + [anon_sym_u16] = ACTIONS(514), + [anon_sym_i16] = ACTIONS(514), + [anon_sym_u32] = ACTIONS(514), + [anon_sym_i32] = ACTIONS(514), + [anon_sym_u64] = ACTIONS(514), + [anon_sym_i64] = ACTIONS(514), + [anon_sym_u128] = ACTIONS(514), + [anon_sym_i128] = ACTIONS(514), + [anon_sym_usize] = ACTIONS(514), + [anon_sym_bool] = ACTIONS(514), + [anon_sym_ByteArray] = ACTIONS(514), + [anon_sym_felt252] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_CARET] = ACTIONS(512), + [anon_sym_TILDE] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_PLUS_EQ] = ACTIONS(512), + [anon_sym_DASH_EQ] = ACTIONS(512), + [anon_sym_STAR_EQ] = ACTIONS(512), + [anon_sym_SLASH_EQ] = ACTIONS(512), + [anon_sym_PERCENT_EQ] = ACTIONS(512), + [anon_sym_EQ_EQ] = ACTIONS(512), + [anon_sym_BANG_EQ] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_continue] = ACTIONS(514), + [anon_sym_default] = ACTIONS(514), + [anon_sym_if] = ACTIONS(514), + [anon_sym_extern] = ACTIONS(514), + [anon_sym_loop] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [anon_sym_pub] = ACTIONS(514), + [anon_sym_return] = ACTIONS(514), + [anon_sym_while] = ACTIONS(514), + [anon_sym_for] = ACTIONS(514), + [sym_numeric_literal] = ACTIONS(514), + [aux_sym_string_literal_token1] = ACTIONS(512), + [sym_shortstring_literal] = ACTIONS(512), + [anon_sym_true] = ACTIONS(514), + [anon_sym_false] = ACTIONS(514), + [anon_sym_ref] = ACTIONS(514), + [sym_identifier] = ACTIONS(514), + [sym_super] = ACTIONS(514), [sym_line_comment] = ACTIONS(3), }, [69] = { - [ts_builtin_sym_end] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_impl] = ACTIONS(511), - [anon_sym_SEMI] = ACTIONS(509), - [anon_sym_trait] = ACTIONS(511), - [anon_sym_type] = ACTIONS(511), - [anon_sym_const] = ACTIONS(511), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_POUND] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_RBRACK] = ACTIONS(509), - [anon_sym_mod] = ACTIONS(511), - [anon_sym_struct] = ACTIONS(511), - [anon_sym_enum] = ACTIONS(511), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_fn] = ACTIONS(511), - [anon_sym_let] = ACTIONS(511), - [anon_sym_use] = ACTIONS(511), - [anon_sym_COLON_COLON] = ACTIONS(509), - [anon_sym_STAR] = ACTIONS(511), - [anon_sym_LPAREN] = ACTIONS(509), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_u8] = ACTIONS(511), - [anon_sym_i8] = ACTIONS(511), - [anon_sym_u16] = ACTIONS(511), - [anon_sym_i16] = ACTIONS(511), - [anon_sym_u32] = ACTIONS(511), - [anon_sym_i32] = ACTIONS(511), - [anon_sym_u64] = ACTIONS(511), - [anon_sym_i64] = ACTIONS(511), - [anon_sym_u128] = ACTIONS(511), - [anon_sym_i128] = ACTIONS(511), - [anon_sym_usize] = ACTIONS(511), - [anon_sym_bool] = ACTIONS(511), - [anon_sym_ByteArray] = ACTIONS(511), - [anon_sym_felt252] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_GT] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(511), - [anon_sym_SLASH] = ACTIONS(511), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_TILDE] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(511), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_PLUS_EQ] = ACTIONS(509), - [anon_sym_DASH_EQ] = ACTIONS(509), - [anon_sym_STAR_EQ] = ACTIONS(509), - [anon_sym_SLASH_EQ] = ACTIONS(509), - [anon_sym_PERCENT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_AT] = ACTIONS(509), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_break] = ACTIONS(511), - [anon_sym_continue] = ACTIONS(511), - [anon_sym_default] = ACTIONS(511), - [anon_sym_if] = ACTIONS(511), - [anon_sym_extern] = ACTIONS(511), - [anon_sym_loop] = ACTIONS(511), - [anon_sym_match] = ACTIONS(511), - [anon_sym_pub] = ACTIONS(511), - [anon_sym_return] = ACTIONS(511), - [anon_sym_while] = ACTIONS(511), - [sym_numeric_literal] = ACTIONS(511), - [aux_sym_string_literal_token1] = ACTIONS(509), - [sym_shortstring_literal] = ACTIONS(509), - [anon_sym_true] = ACTIONS(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_ref] = ACTIONS(511), - [sym_identifier] = ACTIONS(511), - [sym_super] = ACTIONS(511), + [ts_builtin_sym_end] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_impl] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_trait] = ACTIONS(518), + [anon_sym_type] = ACTIONS(518), + [anon_sym_const] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_POUND] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_RBRACK] = ACTIONS(516), + [anon_sym_mod] = ACTIONS(518), + [anon_sym_struct] = ACTIONS(518), + [anon_sym_enum] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(516), + [anon_sym_fn] = ACTIONS(518), + [anon_sym_let] = ACTIONS(518), + [anon_sym_use] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(516), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_u8] = ACTIONS(518), + [anon_sym_i8] = ACTIONS(518), + [anon_sym_u16] = ACTIONS(518), + [anon_sym_i16] = ACTIONS(518), + [anon_sym_u32] = ACTIONS(518), + [anon_sym_i32] = ACTIONS(518), + [anon_sym_u64] = ACTIONS(518), + [anon_sym_i64] = ACTIONS(518), + [anon_sym_u128] = ACTIONS(518), + [anon_sym_i128] = ACTIONS(518), + [anon_sym_usize] = ACTIONS(518), + [anon_sym_bool] = ACTIONS(518), + [anon_sym_ByteArray] = ACTIONS(518), + [anon_sym_felt252] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_PERCENT] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(516), + [anon_sym_TILDE] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(518), + [anon_sym_PIPE] = ACTIONS(518), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_PLUS_EQ] = ACTIONS(516), + [anon_sym_DASH_EQ] = ACTIONS(516), + [anon_sym_STAR_EQ] = ACTIONS(516), + [anon_sym_SLASH_EQ] = ACTIONS(516), + [anon_sym_PERCENT_EQ] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_BANG_EQ] = ACTIONS(516), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_break] = ACTIONS(518), + [anon_sym_continue] = ACTIONS(518), + [anon_sym_default] = ACTIONS(518), + [anon_sym_if] = ACTIONS(518), + [anon_sym_extern] = ACTIONS(518), + [anon_sym_loop] = ACTIONS(518), + [anon_sym_match] = ACTIONS(518), + [anon_sym_pub] = ACTIONS(518), + [anon_sym_return] = ACTIONS(518), + [anon_sym_while] = ACTIONS(518), + [anon_sym_for] = ACTIONS(518), + [sym_numeric_literal] = ACTIONS(518), + [aux_sym_string_literal_token1] = ACTIONS(516), + [sym_shortstring_literal] = ACTIONS(516), + [anon_sym_true] = ACTIONS(518), + [anon_sym_false] = ACTIONS(518), + [anon_sym_ref] = ACTIONS(518), + [sym_identifier] = ACTIONS(518), + [sym_super] = ACTIONS(518), [sym_line_comment] = ACTIONS(3), }, [70] = { - [ts_builtin_sym_end] = ACTIONS(513), - [anon_sym_LBRACE] = ACTIONS(513), - [anon_sym_RBRACE] = ACTIONS(513), - [anon_sym_impl] = ACTIONS(515), - [anon_sym_SEMI] = ACTIONS(513), - [anon_sym_trait] = ACTIONS(515), - [anon_sym_type] = ACTIONS(515), - [anon_sym_const] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_POUND] = ACTIONS(513), - [anon_sym_LBRACK] = ACTIONS(513), - [anon_sym_RBRACK] = ACTIONS(513), - [anon_sym_mod] = ACTIONS(515), - [anon_sym_struct] = ACTIONS(515), - [anon_sym_enum] = ACTIONS(515), - [anon_sym_COMMA] = ACTIONS(513), - [anon_sym_fn] = ACTIONS(515), - [anon_sym_let] = ACTIONS(515), - [anon_sym_use] = ACTIONS(515), - [anon_sym_COLON_COLON] = ACTIONS(513), - [anon_sym_STAR] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(513), - [anon_sym_RPAREN] = ACTIONS(513), - [anon_sym_u8] = ACTIONS(515), - [anon_sym_i8] = ACTIONS(515), - [anon_sym_u16] = ACTIONS(515), - [anon_sym_i16] = ACTIONS(515), - [anon_sym_u32] = ACTIONS(515), - [anon_sym_i32] = ACTIONS(515), - [anon_sym_u64] = ACTIONS(515), - [anon_sym_i64] = ACTIONS(515), - [anon_sym_u128] = ACTIONS(515), - [anon_sym_i128] = ACTIONS(515), - [anon_sym_usize] = ACTIONS(515), - [anon_sym_bool] = ACTIONS(515), - [anon_sym_ByteArray] = ACTIONS(515), - [anon_sym_felt252] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_SLASH] = ACTIONS(515), - [anon_sym_PERCENT] = ACTIONS(515), - [anon_sym_CARET] = ACTIONS(513), - [anon_sym_TILDE] = ACTIONS(513), - [anon_sym_AMP] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(513), - [anon_sym_PIPE_PIPE] = ACTIONS(513), - [anon_sym_LT_LT] = ACTIONS(513), - [anon_sym_GT_GT] = ACTIONS(513), - [anon_sym_PLUS_EQ] = ACTIONS(513), - [anon_sym_DASH_EQ] = ACTIONS(513), - [anon_sym_STAR_EQ] = ACTIONS(513), - [anon_sym_SLASH_EQ] = ACTIONS(513), - [anon_sym_PERCENT_EQ] = ACTIONS(513), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_GT_EQ] = ACTIONS(513), - [anon_sym_LT_EQ] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(513), - [anon_sym_DOT] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(513), - [anon_sym_break] = ACTIONS(515), - [anon_sym_continue] = ACTIONS(515), - [anon_sym_default] = ACTIONS(515), - [anon_sym_if] = ACTIONS(515), - [anon_sym_extern] = ACTIONS(515), - [anon_sym_loop] = ACTIONS(515), - [anon_sym_match] = ACTIONS(515), - [anon_sym_pub] = ACTIONS(515), - [anon_sym_return] = ACTIONS(515), - [anon_sym_while] = ACTIONS(515), - [sym_numeric_literal] = ACTIONS(515), - [aux_sym_string_literal_token1] = ACTIONS(513), - [sym_shortstring_literal] = ACTIONS(513), - [anon_sym_true] = ACTIONS(515), - [anon_sym_false] = ACTIONS(515), - [anon_sym_ref] = ACTIONS(515), - [sym_identifier] = ACTIONS(515), - [sym_super] = ACTIONS(515), + [ts_builtin_sym_end] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_impl] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(520), + [anon_sym_trait] = ACTIONS(522), + [anon_sym_type] = ACTIONS(522), + [anon_sym_const] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(522), + [anon_sym_POUND] = ACTIONS(520), + [anon_sym_LBRACK] = ACTIONS(520), + [anon_sym_RBRACK] = ACTIONS(520), + [anon_sym_mod] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(522), + [anon_sym_enum] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(520), + [anon_sym_fn] = ACTIONS(522), + [anon_sym_let] = ACTIONS(522), + [anon_sym_use] = ACTIONS(522), + [anon_sym_COLON_COLON] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_RPAREN] = ACTIONS(520), + [anon_sym_u8] = ACTIONS(522), + [anon_sym_i8] = ACTIONS(522), + [anon_sym_u16] = ACTIONS(522), + [anon_sym_i16] = ACTIONS(522), + [anon_sym_u32] = ACTIONS(522), + [anon_sym_i32] = ACTIONS(522), + [anon_sym_u64] = ACTIONS(522), + [anon_sym_i64] = ACTIONS(522), + [anon_sym_u128] = ACTIONS(522), + [anon_sym_i128] = ACTIONS(522), + [anon_sym_usize] = ACTIONS(522), + [anon_sym_bool] = ACTIONS(522), + [anon_sym_ByteArray] = ACTIONS(522), + [anon_sym_felt252] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_GT] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(522), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(520), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_PIPE] = ACTIONS(522), + [anon_sym_AMP_AMP] = ACTIONS(520), + [anon_sym_PIPE_PIPE] = ACTIONS(520), + [anon_sym_LT_LT] = ACTIONS(520), + [anon_sym_GT_GT] = ACTIONS(520), + [anon_sym_PLUS_EQ] = ACTIONS(520), + [anon_sym_DASH_EQ] = ACTIONS(520), + [anon_sym_STAR_EQ] = ACTIONS(520), + [anon_sym_SLASH_EQ] = ACTIONS(520), + [anon_sym_PERCENT_EQ] = ACTIONS(520), + [anon_sym_EQ_EQ] = ACTIONS(520), + [anon_sym_BANG_EQ] = ACTIONS(520), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_DOT] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_break] = ACTIONS(522), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_default] = ACTIONS(522), + [anon_sym_if] = ACTIONS(522), + [anon_sym_extern] = ACTIONS(522), + [anon_sym_loop] = ACTIONS(522), + [anon_sym_match] = ACTIONS(522), + [anon_sym_pub] = ACTIONS(522), + [anon_sym_return] = ACTIONS(522), + [anon_sym_while] = ACTIONS(522), + [anon_sym_for] = ACTIONS(522), + [sym_numeric_literal] = ACTIONS(522), + [aux_sym_string_literal_token1] = ACTIONS(520), + [sym_shortstring_literal] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_ref] = ACTIONS(522), + [sym_identifier] = ACTIONS(522), + [sym_super] = ACTIONS(522), [sym_line_comment] = ACTIONS(3), }, [71] = { - [ts_builtin_sym_end] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(517), - [anon_sym_RBRACE] = ACTIONS(517), - [anon_sym_impl] = ACTIONS(519), - [anon_sym_SEMI] = ACTIONS(517), - [anon_sym_trait] = ACTIONS(519), - [anon_sym_type] = ACTIONS(519), - [anon_sym_const] = ACTIONS(519), - [anon_sym_EQ] = ACTIONS(519), - [anon_sym_BANG] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(517), - [anon_sym_RBRACK] = ACTIONS(517), - [anon_sym_mod] = ACTIONS(519), - [anon_sym_struct] = ACTIONS(519), - [anon_sym_enum] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(517), - [anon_sym_fn] = ACTIONS(519), - [anon_sym_let] = ACTIONS(519), - [anon_sym_use] = ACTIONS(519), - [anon_sym_COLON_COLON] = ACTIONS(517), - [anon_sym_STAR] = ACTIONS(519), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_RPAREN] = ACTIONS(517), - [anon_sym_u8] = ACTIONS(519), - [anon_sym_i8] = ACTIONS(519), - [anon_sym_u16] = ACTIONS(519), - [anon_sym_i16] = ACTIONS(519), - [anon_sym_u32] = ACTIONS(519), - [anon_sym_i32] = ACTIONS(519), - [anon_sym_u64] = ACTIONS(519), - [anon_sym_i64] = ACTIONS(519), - [anon_sym_u128] = ACTIONS(519), - [anon_sym_i128] = ACTIONS(519), - [anon_sym_usize] = ACTIONS(519), - [anon_sym_bool] = ACTIONS(519), - [anon_sym_ByteArray] = ACTIONS(519), - [anon_sym_felt252] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(519), - [anon_sym_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(519), - [anon_sym_SLASH] = ACTIONS(519), - [anon_sym_PERCENT] = ACTIONS(519), - [anon_sym_CARET] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(519), - [anon_sym_AMP_AMP] = ACTIONS(517), - [anon_sym_PIPE_PIPE] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(517), - [anon_sym_GT_GT] = ACTIONS(517), - [anon_sym_PLUS_EQ] = ACTIONS(517), - [anon_sym_DASH_EQ] = ACTIONS(517), - [anon_sym_STAR_EQ] = ACTIONS(517), - [anon_sym_SLASH_EQ] = ACTIONS(517), - [anon_sym_PERCENT_EQ] = ACTIONS(517), - [anon_sym_EQ_EQ] = ACTIONS(517), - [anon_sym_BANG_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(517), - [anon_sym_QMARK] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(519), - [anon_sym_default] = ACTIONS(519), - [anon_sym_if] = ACTIONS(519), - [anon_sym_extern] = ACTIONS(519), - [anon_sym_loop] = ACTIONS(519), - [anon_sym_match] = ACTIONS(519), - [anon_sym_pub] = ACTIONS(519), - [anon_sym_return] = ACTIONS(519), - [anon_sym_while] = ACTIONS(519), - [sym_numeric_literal] = ACTIONS(519), - [aux_sym_string_literal_token1] = ACTIONS(517), - [sym_shortstring_literal] = ACTIONS(517), - [anon_sym_true] = ACTIONS(519), - [anon_sym_false] = ACTIONS(519), - [anon_sym_ref] = ACTIONS(519), - [sym_identifier] = ACTIONS(519), - [sym_super] = ACTIONS(519), + [ts_builtin_sym_end] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_impl] = ACTIONS(526), + [anon_sym_SEMI] = ACTIONS(524), + [anon_sym_trait] = ACTIONS(526), + [anon_sym_type] = ACTIONS(526), + [anon_sym_const] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_POUND] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(524), + [anon_sym_RBRACK] = ACTIONS(524), + [anon_sym_mod] = ACTIONS(526), + [anon_sym_struct] = ACTIONS(526), + [anon_sym_enum] = ACTIONS(526), + [anon_sym_COMMA] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(526), + [anon_sym_let] = ACTIONS(526), + [anon_sym_use] = ACTIONS(526), + [anon_sym_COLON_COLON] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_RPAREN] = ACTIONS(524), + [anon_sym_u8] = ACTIONS(526), + [anon_sym_i8] = ACTIONS(526), + [anon_sym_u16] = ACTIONS(526), + [anon_sym_i16] = ACTIONS(526), + [anon_sym_u32] = ACTIONS(526), + [anon_sym_i32] = ACTIONS(526), + [anon_sym_u64] = ACTIONS(526), + [anon_sym_i64] = ACTIONS(526), + [anon_sym_u128] = ACTIONS(526), + [anon_sym_i128] = ACTIONS(526), + [anon_sym_usize] = ACTIONS(526), + [anon_sym_bool] = ACTIONS(526), + [anon_sym_ByteArray] = ACTIONS(526), + [anon_sym_felt252] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(526), + [anon_sym_DASH] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(526), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(524), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_AMP_AMP] = ACTIONS(524), + [anon_sym_PIPE_PIPE] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(524), + [anon_sym_PLUS_EQ] = ACTIONS(524), + [anon_sym_DASH_EQ] = ACTIONS(524), + [anon_sym_STAR_EQ] = ACTIONS(524), + [anon_sym_SLASH_EQ] = ACTIONS(524), + [anon_sym_PERCENT_EQ] = ACTIONS(524), + [anon_sym_EQ_EQ] = ACTIONS(524), + [anon_sym_BANG_EQ] = ACTIONS(524), + [anon_sym_GT_EQ] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_break] = ACTIONS(526), + [anon_sym_continue] = ACTIONS(526), + [anon_sym_default] = ACTIONS(526), + [anon_sym_if] = ACTIONS(526), + [anon_sym_extern] = ACTIONS(526), + [anon_sym_loop] = ACTIONS(526), + [anon_sym_match] = ACTIONS(526), + [anon_sym_pub] = ACTIONS(526), + [anon_sym_return] = ACTIONS(526), + [anon_sym_while] = ACTIONS(526), + [anon_sym_for] = ACTIONS(526), + [sym_numeric_literal] = ACTIONS(526), + [aux_sym_string_literal_token1] = ACTIONS(524), + [sym_shortstring_literal] = ACTIONS(524), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [anon_sym_ref] = ACTIONS(526), + [sym_identifier] = ACTIONS(526), + [sym_super] = ACTIONS(526), [sym_line_comment] = ACTIONS(3), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(521), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_impl] = ACTIONS(523), - [anon_sym_SEMI] = ACTIONS(521), - [anon_sym_trait] = ACTIONS(523), - [anon_sym_type] = ACTIONS(523), - [anon_sym_const] = ACTIONS(523), - [anon_sym_EQ] = ACTIONS(523), - [anon_sym_BANG] = ACTIONS(523), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(521), - [anon_sym_RBRACK] = ACTIONS(521), - [anon_sym_mod] = ACTIONS(523), - [anon_sym_struct] = ACTIONS(523), - [anon_sym_enum] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(521), - [anon_sym_fn] = ACTIONS(523), - [anon_sym_let] = ACTIONS(523), - [anon_sym_use] = ACTIONS(523), - [anon_sym_COLON_COLON] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(523), - [anon_sym_LPAREN] = ACTIONS(521), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_u8] = ACTIONS(523), - [anon_sym_i8] = ACTIONS(523), - [anon_sym_u16] = ACTIONS(523), - [anon_sym_i16] = ACTIONS(523), - [anon_sym_u32] = ACTIONS(523), - [anon_sym_i32] = ACTIONS(523), - [anon_sym_u64] = ACTIONS(523), - [anon_sym_i64] = ACTIONS(523), - [anon_sym_u128] = ACTIONS(523), - [anon_sym_i128] = ACTIONS(523), - [anon_sym_usize] = ACTIONS(523), - [anon_sym_bool] = ACTIONS(523), - [anon_sym_ByteArray] = ACTIONS(523), - [anon_sym_felt252] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(523), - [anon_sym_GT] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(523), - [anon_sym_DASH] = ACTIONS(523), - [anon_sym_SLASH] = ACTIONS(523), - [anon_sym_PERCENT] = ACTIONS(523), - [anon_sym_CARET] = ACTIONS(521), - [anon_sym_TILDE] = ACTIONS(521), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(523), - [anon_sym_AMP_AMP] = ACTIONS(521), - [anon_sym_PIPE_PIPE] = ACTIONS(521), - [anon_sym_LT_LT] = ACTIONS(521), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_PLUS_EQ] = ACTIONS(521), - [anon_sym_DASH_EQ] = ACTIONS(521), - [anon_sym_STAR_EQ] = ACTIONS(521), - [anon_sym_SLASH_EQ] = ACTIONS(521), - [anon_sym_PERCENT_EQ] = ACTIONS(521), - [anon_sym_EQ_EQ] = ACTIONS(521), - [anon_sym_BANG_EQ] = ACTIONS(521), - [anon_sym_GT_EQ] = ACTIONS(521), - [anon_sym_LT_EQ] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(521), - [anon_sym_DOT] = ACTIONS(521), - [anon_sym_QMARK] = ACTIONS(521), - [anon_sym_break] = ACTIONS(523), - [anon_sym_continue] = ACTIONS(523), - [anon_sym_default] = ACTIONS(523), - [anon_sym_if] = ACTIONS(523), - [anon_sym_extern] = ACTIONS(523), - [anon_sym_loop] = ACTIONS(523), - [anon_sym_match] = ACTIONS(523), - [anon_sym_pub] = ACTIONS(523), - [anon_sym_return] = ACTIONS(523), - [anon_sym_while] = ACTIONS(523), - [sym_numeric_literal] = ACTIONS(523), - [aux_sym_string_literal_token1] = ACTIONS(521), - [sym_shortstring_literal] = ACTIONS(521), - [anon_sym_true] = ACTIONS(523), - [anon_sym_false] = ACTIONS(523), - [anon_sym_ref] = ACTIONS(523), - [sym_identifier] = ACTIONS(523), - [sym_super] = ACTIONS(523), + [ts_builtin_sym_end] = ACTIONS(528), + [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_impl] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_trait] = ACTIONS(530), + [anon_sym_type] = ACTIONS(530), + [anon_sym_const] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(530), + [anon_sym_BANG] = ACTIONS(530), + [anon_sym_POUND] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(528), + [anon_sym_RBRACK] = ACTIONS(528), + [anon_sym_mod] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(530), + [anon_sym_enum] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(528), + [anon_sym_fn] = ACTIONS(530), + [anon_sym_let] = ACTIONS(530), + [anon_sym_use] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(528), + [anon_sym_RPAREN] = ACTIONS(528), + [anon_sym_u8] = ACTIONS(530), + [anon_sym_i8] = ACTIONS(530), + [anon_sym_u16] = ACTIONS(530), + [anon_sym_i16] = ACTIONS(530), + [anon_sym_u32] = ACTIONS(530), + [anon_sym_i32] = ACTIONS(530), + [anon_sym_u64] = ACTIONS(530), + [anon_sym_i64] = ACTIONS(530), + [anon_sym_u128] = ACTIONS(530), + [anon_sym_i128] = ACTIONS(530), + [anon_sym_usize] = ACTIONS(530), + [anon_sym_bool] = ACTIONS(530), + [anon_sym_ByteArray] = ACTIONS(530), + [anon_sym_felt252] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(530), + [anon_sym_GT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(530), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(528), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_AMP] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(530), + [anon_sym_AMP_AMP] = ACTIONS(528), + [anon_sym_PIPE_PIPE] = ACTIONS(528), + [anon_sym_LT_LT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_PLUS_EQ] = ACTIONS(528), + [anon_sym_DASH_EQ] = ACTIONS(528), + [anon_sym_STAR_EQ] = ACTIONS(528), + [anon_sym_SLASH_EQ] = ACTIONS(528), + [anon_sym_PERCENT_EQ] = ACTIONS(528), + [anon_sym_EQ_EQ] = ACTIONS(528), + [anon_sym_BANG_EQ] = ACTIONS(528), + [anon_sym_GT_EQ] = ACTIONS(528), + [anon_sym_LT_EQ] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(528), + [anon_sym_DOT] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(528), + [anon_sym_break] = ACTIONS(530), + [anon_sym_continue] = ACTIONS(530), + [anon_sym_default] = ACTIONS(530), + [anon_sym_if] = ACTIONS(530), + [anon_sym_extern] = ACTIONS(530), + [anon_sym_loop] = ACTIONS(530), + [anon_sym_match] = ACTIONS(530), + [anon_sym_pub] = ACTIONS(530), + [anon_sym_return] = ACTIONS(530), + [anon_sym_while] = ACTIONS(530), + [anon_sym_for] = ACTIONS(530), + [sym_numeric_literal] = ACTIONS(530), + [aux_sym_string_literal_token1] = ACTIONS(528), + [sym_shortstring_literal] = ACTIONS(528), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_ref] = ACTIONS(530), + [sym_identifier] = ACTIONS(530), + [sym_super] = ACTIONS(530), [sym_line_comment] = ACTIONS(3), }, [73] = { - [ts_builtin_sym_end] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_RBRACE] = ACTIONS(501), - [anon_sym_impl] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(501), - [anon_sym_trait] = ACTIONS(503), - [anon_sym_type] = ACTIONS(503), - [anon_sym_const] = ACTIONS(503), - [anon_sym_EQ] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_POUND] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(501), - [anon_sym_RBRACK] = ACTIONS(501), - [anon_sym_mod] = ACTIONS(503), - [anon_sym_struct] = ACTIONS(503), - [anon_sym_enum] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(501), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_let] = ACTIONS(503), - [anon_sym_use] = ACTIONS(503), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_RPAREN] = ACTIONS(501), - [anon_sym_u8] = ACTIONS(503), - [anon_sym_i8] = ACTIONS(503), - [anon_sym_u16] = ACTIONS(503), - [anon_sym_i16] = ACTIONS(503), - [anon_sym_u32] = ACTIONS(503), - [anon_sym_i32] = ACTIONS(503), - [anon_sym_u64] = ACTIONS(503), - [anon_sym_i64] = ACTIONS(503), - [anon_sym_u128] = ACTIONS(503), - [anon_sym_i128] = ACTIONS(503), - [anon_sym_usize] = ACTIONS(503), - [anon_sym_bool] = ACTIONS(503), - [anon_sym_ByteArray] = ACTIONS(503), - [anon_sym_felt252] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_GT] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(503), - [anon_sym_PERCENT] = ACTIONS(503), - [anon_sym_CARET] = ACTIONS(501), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(503), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_LT_LT] = ACTIONS(501), - [anon_sym_GT_GT] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_EQ_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ] = ACTIONS(501), - [anon_sym_GT_EQ] = ACTIONS(501), - [anon_sym_LT_EQ] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(501), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_QMARK] = ACTIONS(501), - [anon_sym_break] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(503), - [anon_sym_default] = ACTIONS(503), - [anon_sym_if] = ACTIONS(503), - [anon_sym_extern] = ACTIONS(503), - [anon_sym_loop] = ACTIONS(503), - [anon_sym_match] = ACTIONS(503), - [anon_sym_pub] = ACTIONS(503), - [anon_sym_return] = ACTIONS(503), - [anon_sym_while] = ACTIONS(503), - [sym_numeric_literal] = ACTIONS(503), - [aux_sym_string_literal_token1] = ACTIONS(501), - [sym_shortstring_literal] = ACTIONS(501), - [anon_sym_true] = ACTIONS(503), - [anon_sym_false] = ACTIONS(503), - [anon_sym_ref] = ACTIONS(503), - [sym_identifier] = ACTIONS(503), - [sym_super] = ACTIONS(503), + [ts_builtin_sym_end] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_RBRACE] = ACTIONS(489), + [anon_sym_impl] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(489), + [anon_sym_trait] = ACTIONS(491), + [anon_sym_type] = ACTIONS(491), + [anon_sym_const] = ACTIONS(491), + [anon_sym_EQ] = ACTIONS(491), + [anon_sym_BANG] = ACTIONS(491), + [anon_sym_POUND] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(489), + [anon_sym_RBRACK] = ACTIONS(489), + [anon_sym_mod] = ACTIONS(491), + [anon_sym_struct] = ACTIONS(491), + [anon_sym_enum] = ACTIONS(491), + [anon_sym_COMMA] = ACTIONS(489), + [anon_sym_fn] = ACTIONS(491), + [anon_sym_let] = ACTIONS(491), + [anon_sym_use] = ACTIONS(491), + [anon_sym_COLON_COLON] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_u8] = ACTIONS(491), + [anon_sym_i8] = ACTIONS(491), + [anon_sym_u16] = ACTIONS(491), + [anon_sym_i16] = ACTIONS(491), + [anon_sym_u32] = ACTIONS(491), + [anon_sym_i32] = ACTIONS(491), + [anon_sym_u64] = ACTIONS(491), + [anon_sym_i64] = ACTIONS(491), + [anon_sym_u128] = ACTIONS(491), + [anon_sym_i128] = ACTIONS(491), + [anon_sym_usize] = ACTIONS(491), + [anon_sym_bool] = ACTIONS(491), + [anon_sym_ByteArray] = ACTIONS(491), + [anon_sym_felt252] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(491), + [anon_sym_DASH] = ACTIONS(491), + [anon_sym_SLASH] = ACTIONS(491), + [anon_sym_PERCENT] = ACTIONS(491), + [anon_sym_CARET] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_PLUS_EQ] = ACTIONS(489), + [anon_sym_DASH_EQ] = ACTIONS(489), + [anon_sym_STAR_EQ] = ACTIONS(489), + [anon_sym_SLASH_EQ] = ACTIONS(489), + [anon_sym_PERCENT_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_GT_EQ] = ACTIONS(489), + [anon_sym_LT_EQ] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_default] = ACTIONS(491), + [anon_sym_if] = ACTIONS(491), + [anon_sym_extern] = ACTIONS(491), + [anon_sym_loop] = ACTIONS(491), + [anon_sym_match] = ACTIONS(491), + [anon_sym_pub] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_while] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [sym_numeric_literal] = ACTIONS(491), + [aux_sym_string_literal_token1] = ACTIONS(489), + [sym_shortstring_literal] = ACTIONS(489), + [anon_sym_true] = ACTIONS(491), + [anon_sym_false] = ACTIONS(491), + [anon_sym_ref] = ACTIONS(491), + [sym_identifier] = ACTIONS(491), + [sym_super] = ACTIONS(491), [sym_line_comment] = ACTIONS(3), }, [74] = { - [ts_builtin_sym_end] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(525), - [anon_sym_RBRACE] = ACTIONS(525), - [anon_sym_impl] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(525), - [anon_sym_trait] = ACTIONS(527), - [anon_sym_type] = ACTIONS(527), - [anon_sym_const] = ACTIONS(527), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(525), - [anon_sym_RBRACK] = ACTIONS(525), - [anon_sym_mod] = ACTIONS(527), - [anon_sym_struct] = ACTIONS(527), - [anon_sym_enum] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(525), - [anon_sym_fn] = ACTIONS(527), - [anon_sym_let] = ACTIONS(527), - [anon_sym_use] = ACTIONS(527), - [anon_sym_COLON_COLON] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_RPAREN] = ACTIONS(525), - [anon_sym_u8] = ACTIONS(527), - [anon_sym_i8] = ACTIONS(527), - [anon_sym_u16] = ACTIONS(527), - [anon_sym_i16] = ACTIONS(527), - [anon_sym_u32] = ACTIONS(527), - [anon_sym_i32] = ACTIONS(527), - [anon_sym_u64] = ACTIONS(527), - [anon_sym_i64] = ACTIONS(527), - [anon_sym_u128] = ACTIONS(527), - [anon_sym_i128] = ACTIONS(527), - [anon_sym_usize] = ACTIONS(527), - [anon_sym_bool] = ACTIONS(527), - [anon_sym_ByteArray] = ACTIONS(527), - [anon_sym_felt252] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(525), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_AMP_AMP] = ACTIONS(525), - [anon_sym_PIPE_PIPE] = ACTIONS(525), - [anon_sym_LT_LT] = ACTIONS(525), - [anon_sym_GT_GT] = ACTIONS(525), - [anon_sym_PLUS_EQ] = ACTIONS(525), - [anon_sym_DASH_EQ] = ACTIONS(525), - [anon_sym_STAR_EQ] = ACTIONS(525), - [anon_sym_SLASH_EQ] = ACTIONS(525), - [anon_sym_PERCENT_EQ] = ACTIONS(525), - [anon_sym_EQ_EQ] = ACTIONS(525), - [anon_sym_BANG_EQ] = ACTIONS(525), - [anon_sym_GT_EQ] = ACTIONS(525), - [anon_sym_LT_EQ] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(525), - [anon_sym_DOT] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(527), - [anon_sym_default] = ACTIONS(527), - [anon_sym_if] = ACTIONS(527), - [anon_sym_extern] = ACTIONS(527), - [anon_sym_loop] = ACTIONS(527), - [anon_sym_match] = ACTIONS(527), - [anon_sym_pub] = ACTIONS(527), - [anon_sym_return] = ACTIONS(527), - [anon_sym_while] = ACTIONS(527), - [sym_numeric_literal] = ACTIONS(527), - [aux_sym_string_literal_token1] = ACTIONS(525), - [sym_shortstring_literal] = ACTIONS(525), - [anon_sym_true] = ACTIONS(527), - [anon_sym_false] = ACTIONS(527), - [anon_sym_ref] = ACTIONS(527), - [sym_identifier] = ACTIONS(527), - [sym_super] = ACTIONS(527), + [ts_builtin_sym_end] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_impl] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(532), + [anon_sym_trait] = ACTIONS(534), + [anon_sym_type] = ACTIONS(534), + [anon_sym_const] = ACTIONS(534), + [anon_sym_EQ] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_RBRACK] = ACTIONS(532), + [anon_sym_mod] = ACTIONS(534), + [anon_sym_struct] = ACTIONS(534), + [anon_sym_enum] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(532), + [anon_sym_fn] = ACTIONS(534), + [anon_sym_let] = ACTIONS(534), + [anon_sym_use] = ACTIONS(534), + [anon_sym_COLON_COLON] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_RPAREN] = ACTIONS(532), + [anon_sym_u8] = ACTIONS(534), + [anon_sym_i8] = ACTIONS(534), + [anon_sym_u16] = ACTIONS(534), + [anon_sym_i16] = ACTIONS(534), + [anon_sym_u32] = ACTIONS(534), + [anon_sym_i32] = ACTIONS(534), + [anon_sym_u64] = ACTIONS(534), + [anon_sym_i64] = ACTIONS(534), + [anon_sym_u128] = ACTIONS(534), + [anon_sym_i128] = ACTIONS(534), + [anon_sym_usize] = ACTIONS(534), + [anon_sym_bool] = ACTIONS(534), + [anon_sym_ByteArray] = ACTIONS(534), + [anon_sym_felt252] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_TILDE] = ACTIONS(532), + [anon_sym_AMP] = ACTIONS(534), + [anon_sym_PIPE] = ACTIONS(534), + [anon_sym_AMP_AMP] = ACTIONS(532), + [anon_sym_PIPE_PIPE] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(532), + [anon_sym_PLUS_EQ] = ACTIONS(532), + [anon_sym_DASH_EQ] = ACTIONS(532), + [anon_sym_STAR_EQ] = ACTIONS(532), + [anon_sym_SLASH_EQ] = ACTIONS(532), + [anon_sym_PERCENT_EQ] = ACTIONS(532), + [anon_sym_EQ_EQ] = ACTIONS(532), + [anon_sym_BANG_EQ] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(532), + [anon_sym_break] = ACTIONS(534), + [anon_sym_continue] = ACTIONS(534), + [anon_sym_default] = ACTIONS(534), + [anon_sym_if] = ACTIONS(534), + [anon_sym_extern] = ACTIONS(534), + [anon_sym_loop] = ACTIONS(534), + [anon_sym_match] = ACTIONS(534), + [anon_sym_pub] = ACTIONS(534), + [anon_sym_return] = ACTIONS(534), + [anon_sym_while] = ACTIONS(534), + [anon_sym_for] = ACTIONS(534), + [sym_numeric_literal] = ACTIONS(534), + [aux_sym_string_literal_token1] = ACTIONS(532), + [sym_shortstring_literal] = ACTIONS(532), + [anon_sym_true] = ACTIONS(534), + [anon_sym_false] = ACTIONS(534), + [anon_sym_ref] = ACTIONS(534), + [sym_identifier] = ACTIONS(534), + [sym_super] = ACTIONS(534), [sym_line_comment] = ACTIONS(3), }, [75] = { - [ts_builtin_sym_end] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(529), - [anon_sym_RBRACE] = ACTIONS(529), - [anon_sym_impl] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(529), - [anon_sym_trait] = ACTIONS(531), - [anon_sym_type] = ACTIONS(531), - [anon_sym_const] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_BANG] = ACTIONS(531), - [anon_sym_POUND] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(529), - [anon_sym_mod] = ACTIONS(531), - [anon_sym_struct] = ACTIONS(531), - [anon_sym_enum] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(529), - [anon_sym_fn] = ACTIONS(531), - [anon_sym_let] = ACTIONS(531), - [anon_sym_use] = ACTIONS(531), - [anon_sym_COLON_COLON] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(531), - [anon_sym_LPAREN] = ACTIONS(529), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_u8] = ACTIONS(531), - [anon_sym_i8] = ACTIONS(531), - [anon_sym_u16] = ACTIONS(531), - [anon_sym_i16] = ACTIONS(531), - [anon_sym_u32] = ACTIONS(531), - [anon_sym_i32] = ACTIONS(531), - [anon_sym_u64] = ACTIONS(531), - [anon_sym_i64] = ACTIONS(531), - [anon_sym_u128] = ACTIONS(531), - [anon_sym_i128] = ACTIONS(531), - [anon_sym_usize] = ACTIONS(531), - [anon_sym_bool] = ACTIONS(531), - [anon_sym_ByteArray] = ACTIONS(531), - [anon_sym_felt252] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_GT] = ACTIONS(531), - [anon_sym_PLUS] = ACTIONS(531), - [anon_sym_DASH] = ACTIONS(531), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_PERCENT] = ACTIONS(531), - [anon_sym_CARET] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(531), - [anon_sym_PIPE] = ACTIONS(531), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_LT_LT] = ACTIONS(529), - [anon_sym_GT_GT] = ACTIONS(529), - [anon_sym_PLUS_EQ] = ACTIONS(529), - [anon_sym_DASH_EQ] = ACTIONS(529), - [anon_sym_STAR_EQ] = ACTIONS(529), - [anon_sym_SLASH_EQ] = ACTIONS(529), - [anon_sym_PERCENT_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_GT_EQ] = ACTIONS(529), - [anon_sym_LT_EQ] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(529), - [anon_sym_DOT] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(529), - [anon_sym_break] = ACTIONS(531), - [anon_sym_continue] = ACTIONS(531), - [anon_sym_default] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_extern] = ACTIONS(531), - [anon_sym_loop] = ACTIONS(531), - [anon_sym_match] = ACTIONS(531), - [anon_sym_pub] = ACTIONS(531), - [anon_sym_return] = ACTIONS(531), - [anon_sym_while] = ACTIONS(531), - [sym_numeric_literal] = ACTIONS(531), - [aux_sym_string_literal_token1] = ACTIONS(529), - [sym_shortstring_literal] = ACTIONS(529), - [anon_sym_true] = ACTIONS(531), - [anon_sym_false] = ACTIONS(531), - [anon_sym_ref] = ACTIONS(531), - [sym_identifier] = ACTIONS(531), - [sym_super] = ACTIONS(531), + [ts_builtin_sym_end] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_impl] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_trait] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_RBRACK] = ACTIONS(536), + [anon_sym_mod] = ACTIONS(538), + [anon_sym_struct] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(536), + [anon_sym_fn] = ACTIONS(538), + [anon_sym_let] = ACTIONS(538), + [anon_sym_use] = ACTIONS(538), + [anon_sym_COLON_COLON] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(536), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_ByteArray] = ACTIONS(538), + [anon_sym_felt252] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(536), + [anon_sym_TILDE] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_AMP_AMP] = ACTIONS(536), + [anon_sym_PIPE_PIPE] = ACTIONS(536), + [anon_sym_LT_LT] = ACTIONS(536), + [anon_sym_GT_GT] = ACTIONS(536), + [anon_sym_PLUS_EQ] = ACTIONS(536), + [anon_sym_DASH_EQ] = ACTIONS(536), + [anon_sym_STAR_EQ] = ACTIONS(536), + [anon_sym_SLASH_EQ] = ACTIONS(536), + [anon_sym_PERCENT_EQ] = ACTIONS(536), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(536), + [anon_sym_QMARK] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_if] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_loop] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_pub] = ACTIONS(538), + [anon_sym_return] = ACTIONS(538), + [anon_sym_while] = ACTIONS(538), + [anon_sym_for] = ACTIONS(538), + [sym_numeric_literal] = ACTIONS(538), + [aux_sym_string_literal_token1] = ACTIONS(536), + [sym_shortstring_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [anon_sym_ref] = ACTIONS(538), + [sym_identifier] = ACTIONS(538), + [sym_super] = ACTIONS(538), [sym_line_comment] = ACTIONS(3), }, [76] = { - [ts_builtin_sym_end] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(533), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_impl] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(533), - [anon_sym_trait] = ACTIONS(535), - [anon_sym_type] = ACTIONS(535), - [anon_sym_const] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_LBRACK] = ACTIONS(533), - [anon_sym_RBRACK] = ACTIONS(533), - [anon_sym_mod] = ACTIONS(535), - [anon_sym_struct] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_fn] = ACTIONS(535), - [anon_sym_let] = ACTIONS(535), - [anon_sym_use] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(533), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_u8] = ACTIONS(535), - [anon_sym_i8] = ACTIONS(535), - [anon_sym_u16] = ACTIONS(535), - [anon_sym_i16] = ACTIONS(535), - [anon_sym_u32] = ACTIONS(535), - [anon_sym_i32] = ACTIONS(535), - [anon_sym_u64] = ACTIONS(535), - [anon_sym_i64] = ACTIONS(535), - [anon_sym_u128] = ACTIONS(535), - [anon_sym_i128] = ACTIONS(535), - [anon_sym_usize] = ACTIONS(535), - [anon_sym_bool] = ACTIONS(535), - [anon_sym_ByteArray] = ACTIONS(535), - [anon_sym_felt252] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(535), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(535), - [anon_sym_CARET] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_AMP_AMP] = ACTIONS(533), - [anon_sym_PIPE_PIPE] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(533), - [anon_sym_GT_GT] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_EQ_EQ] = ACTIONS(533), - [anon_sym_BANG_EQ] = ACTIONS(533), - [anon_sym_GT_EQ] = ACTIONS(533), - [anon_sym_LT_EQ] = ACTIONS(533), - [anon_sym_AT] = ACTIONS(533), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_QMARK] = ACTIONS(533), - [anon_sym_break] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_default] = ACTIONS(535), - [anon_sym_if] = ACTIONS(535), - [anon_sym_extern] = ACTIONS(535), - [anon_sym_loop] = ACTIONS(535), - [anon_sym_match] = ACTIONS(535), - [anon_sym_pub] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [sym_numeric_literal] = ACTIONS(535), - [aux_sym_string_literal_token1] = ACTIONS(533), - [sym_shortstring_literal] = ACTIONS(533), - [anon_sym_true] = ACTIONS(535), - [anon_sym_false] = ACTIONS(535), - [anon_sym_ref] = ACTIONS(535), - [sym_identifier] = ACTIONS(535), - [sym_super] = ACTIONS(535), + [ts_builtin_sym_end] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_impl] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_trait] = ACTIONS(542), + [anon_sym_type] = ACTIONS(542), + [anon_sym_const] = ACTIONS(542), + [anon_sym_EQ] = ACTIONS(542), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_POUND] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_mod] = ACTIONS(542), + [anon_sym_struct] = ACTIONS(542), + [anon_sym_enum] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(540), + [anon_sym_fn] = ACTIONS(542), + [anon_sym_let] = ACTIONS(542), + [anon_sym_use] = ACTIONS(542), + [anon_sym_COLON_COLON] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(542), + [anon_sym_LPAREN] = ACTIONS(540), + [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_u8] = ACTIONS(542), + [anon_sym_i8] = ACTIONS(542), + [anon_sym_u16] = ACTIONS(542), + [anon_sym_i16] = ACTIONS(542), + [anon_sym_u32] = ACTIONS(542), + [anon_sym_i32] = ACTIONS(542), + [anon_sym_u64] = ACTIONS(542), + [anon_sym_i64] = ACTIONS(542), + [anon_sym_u128] = ACTIONS(542), + [anon_sym_i128] = ACTIONS(542), + [anon_sym_usize] = ACTIONS(542), + [anon_sym_bool] = ACTIONS(542), + [anon_sym_ByteArray] = ACTIONS(542), + [anon_sym_felt252] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(542), + [anon_sym_GT] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(542), + [anon_sym_DASH] = ACTIONS(542), + [anon_sym_SLASH] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(542), + [anon_sym_CARET] = ACTIONS(540), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(542), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(540), + [anon_sym_PIPE_PIPE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(540), + [anon_sym_GT_GT] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(540), + [anon_sym_DASH_EQ] = ACTIONS(540), + [anon_sym_STAR_EQ] = ACTIONS(540), + [anon_sym_SLASH_EQ] = ACTIONS(540), + [anon_sym_PERCENT_EQ] = ACTIONS(540), + [anon_sym_EQ_EQ] = ACTIONS(540), + [anon_sym_BANG_EQ] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(540), + [anon_sym_LT_EQ] = ACTIONS(540), + [anon_sym_AT] = ACTIONS(540), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_QMARK] = ACTIONS(540), + [anon_sym_break] = ACTIONS(542), + [anon_sym_continue] = ACTIONS(542), + [anon_sym_default] = ACTIONS(542), + [anon_sym_if] = ACTIONS(542), + [anon_sym_extern] = ACTIONS(542), + [anon_sym_loop] = ACTIONS(542), + [anon_sym_match] = ACTIONS(542), + [anon_sym_pub] = ACTIONS(542), + [anon_sym_return] = ACTIONS(542), + [anon_sym_while] = ACTIONS(542), + [anon_sym_for] = ACTIONS(542), + [sym_numeric_literal] = ACTIONS(542), + [aux_sym_string_literal_token1] = ACTIONS(540), + [sym_shortstring_literal] = ACTIONS(540), + [anon_sym_true] = ACTIONS(542), + [anon_sym_false] = ACTIONS(542), + [anon_sym_ref] = ACTIONS(542), + [sym_identifier] = ACTIONS(542), + [sym_super] = ACTIONS(542), [sym_line_comment] = ACTIONS(3), }, [77] = { - [ts_builtin_sym_end] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_impl] = ACTIONS(539), - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_trait] = ACTIONS(539), - [anon_sym_type] = ACTIONS(539), - [anon_sym_const] = ACTIONS(539), - [anon_sym_EQ] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(539), - [anon_sym_POUND] = ACTIONS(537), - [anon_sym_LBRACK] = ACTIONS(537), - [anon_sym_RBRACK] = ACTIONS(537), - [anon_sym_mod] = ACTIONS(539), - [anon_sym_struct] = ACTIONS(539), - [anon_sym_enum] = ACTIONS(539), - [anon_sym_COMMA] = ACTIONS(537), - [anon_sym_fn] = ACTIONS(539), - [anon_sym_let] = ACTIONS(539), - [anon_sym_use] = ACTIONS(539), - [anon_sym_COLON_COLON] = ACTIONS(537), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(537), - [anon_sym_RPAREN] = ACTIONS(537), - [anon_sym_u8] = ACTIONS(539), - [anon_sym_i8] = ACTIONS(539), - [anon_sym_u16] = ACTIONS(539), - [anon_sym_i16] = ACTIONS(539), - [anon_sym_u32] = ACTIONS(539), - [anon_sym_i32] = ACTIONS(539), - [anon_sym_u64] = ACTIONS(539), - [anon_sym_i64] = ACTIONS(539), - [anon_sym_u128] = ACTIONS(539), - [anon_sym_i128] = ACTIONS(539), - [anon_sym_usize] = ACTIONS(539), - [anon_sym_bool] = ACTIONS(539), - [anon_sym_ByteArray] = ACTIONS(539), - [anon_sym_felt252] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(539), - [anon_sym_GT] = ACTIONS(539), - [anon_sym_PLUS] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(539), - [anon_sym_SLASH] = ACTIONS(539), - [anon_sym_PERCENT] = ACTIONS(539), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_AMP] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(539), - [anon_sym_AMP_AMP] = ACTIONS(537), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_LT_LT] = ACTIONS(537), - [anon_sym_GT_GT] = ACTIONS(537), - [anon_sym_PLUS_EQ] = ACTIONS(537), - [anon_sym_DASH_EQ] = ACTIONS(537), - [anon_sym_STAR_EQ] = ACTIONS(537), - [anon_sym_SLASH_EQ] = ACTIONS(537), - [anon_sym_PERCENT_EQ] = ACTIONS(537), - [anon_sym_EQ_EQ] = ACTIONS(537), - [anon_sym_BANG_EQ] = ACTIONS(537), - [anon_sym_GT_EQ] = ACTIONS(537), - [anon_sym_LT_EQ] = ACTIONS(537), - [anon_sym_AT] = ACTIONS(537), - [anon_sym_DOT] = ACTIONS(537), - [anon_sym_QMARK] = ACTIONS(537), - [anon_sym_break] = ACTIONS(539), - [anon_sym_continue] = ACTIONS(539), - [anon_sym_default] = ACTIONS(539), - [anon_sym_if] = ACTIONS(539), - [anon_sym_extern] = ACTIONS(539), - [anon_sym_loop] = ACTIONS(539), - [anon_sym_match] = ACTIONS(539), - [anon_sym_pub] = ACTIONS(539), - [anon_sym_return] = ACTIONS(539), - [anon_sym_while] = ACTIONS(539), - [sym_numeric_literal] = ACTIONS(539), - [aux_sym_string_literal_token1] = ACTIONS(537), - [sym_shortstring_literal] = ACTIONS(537), - [anon_sym_true] = ACTIONS(539), - [anon_sym_false] = ACTIONS(539), - [anon_sym_ref] = ACTIONS(539), - [sym_identifier] = ACTIONS(539), - [sym_super] = ACTIONS(539), + [ts_builtin_sym_end] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_impl] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_trait] = ACTIONS(546), + [anon_sym_type] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_POUND] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_RBRACK] = ACTIONS(544), + [anon_sym_mod] = ACTIONS(546), + [anon_sym_struct] = ACTIONS(546), + [anon_sym_enum] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(544), + [anon_sym_fn] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_use] = ACTIONS(546), + [anon_sym_COLON_COLON] = ACTIONS(544), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_RPAREN] = ACTIONS(544), + [anon_sym_u8] = ACTIONS(546), + [anon_sym_i8] = ACTIONS(546), + [anon_sym_u16] = ACTIONS(546), + [anon_sym_i16] = ACTIONS(546), + [anon_sym_u32] = ACTIONS(546), + [anon_sym_i32] = ACTIONS(546), + [anon_sym_u64] = ACTIONS(546), + [anon_sym_i64] = ACTIONS(546), + [anon_sym_u128] = ACTIONS(546), + [anon_sym_i128] = ACTIONS(546), + [anon_sym_usize] = ACTIONS(546), + [anon_sym_bool] = ACTIONS(546), + [anon_sym_ByteArray] = ACTIONS(546), + [anon_sym_felt252] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PIPE] = ACTIONS(546), + [anon_sym_AMP_AMP] = ACTIONS(544), + [anon_sym_PIPE_PIPE] = ACTIONS(544), + [anon_sym_LT_LT] = ACTIONS(544), + [anon_sym_GT_GT] = ACTIONS(544), + [anon_sym_PLUS_EQ] = ACTIONS(544), + [anon_sym_DASH_EQ] = ACTIONS(544), + [anon_sym_STAR_EQ] = ACTIONS(544), + [anon_sym_SLASH_EQ] = ACTIONS(544), + [anon_sym_PERCENT_EQ] = ACTIONS(544), + [anon_sym_EQ_EQ] = ACTIONS(544), + [anon_sym_BANG_EQ] = ACTIONS(544), + [anon_sym_GT_EQ] = ACTIONS(544), + [anon_sym_LT_EQ] = ACTIONS(544), + [anon_sym_AT] = ACTIONS(544), + [anon_sym_DOT] = ACTIONS(544), + [anon_sym_QMARK] = ACTIONS(544), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_default] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_extern] = ACTIONS(546), + [anon_sym_loop] = ACTIONS(546), + [anon_sym_match] = ACTIONS(546), + [anon_sym_pub] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_while] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [sym_numeric_literal] = ACTIONS(546), + [aux_sym_string_literal_token1] = ACTIONS(544), + [sym_shortstring_literal] = ACTIONS(544), + [anon_sym_true] = ACTIONS(546), + [anon_sym_false] = ACTIONS(546), + [anon_sym_ref] = ACTIONS(546), + [sym_identifier] = ACTIONS(546), + [sym_super] = ACTIONS(546), [sym_line_comment] = ACTIONS(3), }, [78] = { - [ts_builtin_sym_end] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_impl] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_trait] = ACTIONS(543), - [anon_sym_type] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_EQ] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(543), - [anon_sym_POUND] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(541), - [anon_sym_RBRACK] = ACTIONS(541), - [anon_sym_mod] = ACTIONS(543), - [anon_sym_struct] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(541), - [anon_sym_fn] = ACTIONS(543), - [anon_sym_let] = ACTIONS(543), - [anon_sym_use] = ACTIONS(543), - [anon_sym_COLON_COLON] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_u8] = ACTIONS(543), - [anon_sym_i8] = ACTIONS(543), - [anon_sym_u16] = ACTIONS(543), - [anon_sym_i16] = ACTIONS(543), - [anon_sym_u32] = ACTIONS(543), - [anon_sym_i32] = ACTIONS(543), - [anon_sym_u64] = ACTIONS(543), - [anon_sym_i64] = ACTIONS(543), - [anon_sym_u128] = ACTIONS(543), - [anon_sym_i128] = ACTIONS(543), - [anon_sym_usize] = ACTIONS(543), - [anon_sym_bool] = ACTIONS(543), - [anon_sym_ByteArray] = ACTIONS(543), - [anon_sym_felt252] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_PERCENT] = ACTIONS(543), - [anon_sym_CARET] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), - [anon_sym_PIPE] = ACTIONS(543), - [anon_sym_AMP_AMP] = ACTIONS(541), - [anon_sym_PIPE_PIPE] = ACTIONS(541), - [anon_sym_LT_LT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(541), - [anon_sym_PLUS_EQ] = ACTIONS(541), - [anon_sym_DASH_EQ] = ACTIONS(541), - [anon_sym_STAR_EQ] = ACTIONS(541), - [anon_sym_SLASH_EQ] = ACTIONS(541), - [anon_sym_PERCENT_EQ] = ACTIONS(541), - [anon_sym_EQ_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_GT_EQ] = ACTIONS(541), - [anon_sym_LT_EQ] = ACTIONS(541), - [anon_sym_AT] = ACTIONS(541), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(541), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_default] = ACTIONS(543), - [anon_sym_if] = ACTIONS(543), - [anon_sym_extern] = ACTIONS(543), - [anon_sym_loop] = ACTIONS(543), - [anon_sym_match] = ACTIONS(543), - [anon_sym_pub] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [sym_numeric_literal] = ACTIONS(543), - [aux_sym_string_literal_token1] = ACTIONS(541), - [sym_shortstring_literal] = ACTIONS(541), - [anon_sym_true] = ACTIONS(543), - [anon_sym_false] = ACTIONS(543), - [anon_sym_ref] = ACTIONS(543), - [sym_identifier] = ACTIONS(543), - [sym_super] = ACTIONS(543), + [ts_builtin_sym_end] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_impl] = ACTIONS(550), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_trait] = ACTIONS(550), + [anon_sym_type] = ACTIONS(550), + [anon_sym_const] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_POUND] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_RBRACK] = ACTIONS(548), + [anon_sym_mod] = ACTIONS(550), + [anon_sym_struct] = ACTIONS(550), + [anon_sym_enum] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_fn] = ACTIONS(550), + [anon_sym_let] = ACTIONS(550), + [anon_sym_use] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(548), + [anon_sym_u8] = ACTIONS(550), + [anon_sym_i8] = ACTIONS(550), + [anon_sym_u16] = ACTIONS(550), + [anon_sym_i16] = ACTIONS(550), + [anon_sym_u32] = ACTIONS(550), + [anon_sym_i32] = ACTIONS(550), + [anon_sym_u64] = ACTIONS(550), + [anon_sym_i64] = ACTIONS(550), + [anon_sym_u128] = ACTIONS(550), + [anon_sym_i128] = ACTIONS(550), + [anon_sym_usize] = ACTIONS(550), + [anon_sym_bool] = ACTIONS(550), + [anon_sym_ByteArray] = ACTIONS(550), + [anon_sym_felt252] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(548), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_PERCENT_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(548), + [anon_sym_break] = ACTIONS(550), + [anon_sym_continue] = ACTIONS(550), + [anon_sym_default] = ACTIONS(550), + [anon_sym_if] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(550), + [anon_sym_loop] = ACTIONS(550), + [anon_sym_match] = ACTIONS(550), + [anon_sym_pub] = ACTIONS(550), + [anon_sym_return] = ACTIONS(550), + [anon_sym_while] = ACTIONS(550), + [anon_sym_for] = ACTIONS(550), + [sym_numeric_literal] = ACTIONS(550), + [aux_sym_string_literal_token1] = ACTIONS(548), + [sym_shortstring_literal] = ACTIONS(548), + [anon_sym_true] = ACTIONS(550), + [anon_sym_false] = ACTIONS(550), + [anon_sym_ref] = ACTIONS(550), + [sym_identifier] = ACTIONS(550), + [sym_super] = ACTIONS(550), [sym_line_comment] = ACTIONS(3), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_impl] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_trait] = ACTIONS(547), - [anon_sym_type] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_POUND] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_mod] = ACTIONS(547), - [anon_sym_struct] = ACTIONS(547), - [anon_sym_enum] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_fn] = ACTIONS(547), - [anon_sym_let] = ACTIONS(547), - [anon_sym_use] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_u8] = ACTIONS(547), - [anon_sym_i8] = ACTIONS(547), - [anon_sym_u16] = ACTIONS(547), - [anon_sym_i16] = ACTIONS(547), - [anon_sym_u32] = ACTIONS(547), - [anon_sym_i32] = ACTIONS(547), - [anon_sym_u64] = ACTIONS(547), - [anon_sym_i64] = ACTIONS(547), - [anon_sym_u128] = ACTIONS(547), - [anon_sym_i128] = ACTIONS(547), - [anon_sym_usize] = ACTIONS(547), - [anon_sym_bool] = ACTIONS(547), - [anon_sym_ByteArray] = ACTIONS(547), - [anon_sym_felt252] = ACTIONS(547), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_GT] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_SLASH] = ACTIONS(547), - [anon_sym_PERCENT] = ACTIONS(547), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(547), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_QMARK] = ACTIONS(545), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(547), - [anon_sym_default] = ACTIONS(547), - [anon_sym_if] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_loop] = ACTIONS(547), - [anon_sym_match] = ACTIONS(547), - [anon_sym_pub] = ACTIONS(547), - [anon_sym_return] = ACTIONS(547), - [anon_sym_while] = ACTIONS(547), - [sym_numeric_literal] = ACTIONS(547), - [aux_sym_string_literal_token1] = ACTIONS(545), - [sym_shortstring_literal] = ACTIONS(545), - [anon_sym_true] = ACTIONS(547), - [anon_sym_false] = ACTIONS(547), - [anon_sym_ref] = ACTIONS(547), - [sym_identifier] = ACTIONS(547), - [sym_super] = ACTIONS(547), + [ts_builtin_sym_end] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(554), + [anon_sym_type] = ACTIONS(554), + [anon_sym_const] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(552), + [anon_sym_RBRACK] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(554), + [anon_sym_struct] = ACTIONS(554), + [anon_sym_enum] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(554), + [anon_sym_let] = ACTIONS(554), + [anon_sym_use] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(552), + [anon_sym_STAR] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_RPAREN] = ACTIONS(552), + [anon_sym_u8] = ACTIONS(554), + [anon_sym_i8] = ACTIONS(554), + [anon_sym_u16] = ACTIONS(554), + [anon_sym_i16] = ACTIONS(554), + [anon_sym_u32] = ACTIONS(554), + [anon_sym_i32] = ACTIONS(554), + [anon_sym_u64] = ACTIONS(554), + [anon_sym_i64] = ACTIONS(554), + [anon_sym_u128] = ACTIONS(554), + [anon_sym_i128] = ACTIONS(554), + [anon_sym_usize] = ACTIONS(554), + [anon_sym_bool] = ACTIONS(554), + [anon_sym_ByteArray] = ACTIONS(554), + [anon_sym_felt252] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(554), + [anon_sym_DASH] = ACTIONS(554), + [anon_sym_SLASH] = ACTIONS(554), + [anon_sym_PERCENT] = ACTIONS(554), + [anon_sym_CARET] = ACTIONS(552), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(554), + [anon_sym_AMP_AMP] = ACTIONS(552), + [anon_sym_PIPE_PIPE] = ACTIONS(552), + [anon_sym_LT_LT] = ACTIONS(552), + [anon_sym_GT_GT] = ACTIONS(552), + [anon_sym_PLUS_EQ] = ACTIONS(552), + [anon_sym_DASH_EQ] = ACTIONS(552), + [anon_sym_STAR_EQ] = ACTIONS(552), + [anon_sym_SLASH_EQ] = ACTIONS(552), + [anon_sym_PERCENT_EQ] = ACTIONS(552), + [anon_sym_EQ_EQ] = ACTIONS(552), + [anon_sym_BANG_EQ] = ACTIONS(552), + [anon_sym_GT_EQ] = ACTIONS(552), + [anon_sym_LT_EQ] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(552), + [anon_sym_QMARK] = ACTIONS(552), + [anon_sym_break] = ACTIONS(554), + [anon_sym_continue] = ACTIONS(554), + [anon_sym_default] = ACTIONS(554), + [anon_sym_if] = ACTIONS(554), + [anon_sym_extern] = ACTIONS(554), + [anon_sym_loop] = ACTIONS(554), + [anon_sym_match] = ACTIONS(554), + [anon_sym_pub] = ACTIONS(554), + [anon_sym_return] = ACTIONS(554), + [anon_sym_while] = ACTIONS(554), + [anon_sym_for] = ACTIONS(554), + [sym_numeric_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(552), + [sym_shortstring_literal] = ACTIONS(552), + [anon_sym_true] = ACTIONS(554), + [anon_sym_false] = ACTIONS(554), + [anon_sym_ref] = ACTIONS(554), + [sym_identifier] = ACTIONS(554), + [sym_super] = ACTIONS(554), [sym_line_comment] = ACTIONS(3), }, [80] = { - [ts_builtin_sym_end] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_impl] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_trait] = ACTIONS(551), - [anon_sym_type] = ACTIONS(551), - [anon_sym_const] = ACTIONS(551), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_POUND] = ACTIONS(549), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_RBRACK] = ACTIONS(549), - [anon_sym_mod] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(549), - [anon_sym_fn] = ACTIONS(551), - [anon_sym_let] = ACTIONS(551), - [anon_sym_use] = ACTIONS(551), - [anon_sym_COLON_COLON] = ACTIONS(549), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_u8] = ACTIONS(551), - [anon_sym_i8] = ACTIONS(551), - [anon_sym_u16] = ACTIONS(551), - [anon_sym_i16] = ACTIONS(551), - [anon_sym_u32] = ACTIONS(551), - [anon_sym_i32] = ACTIONS(551), - [anon_sym_u64] = ACTIONS(551), - [anon_sym_i64] = ACTIONS(551), - [anon_sym_u128] = ACTIONS(551), - [anon_sym_i128] = ACTIONS(551), - [anon_sym_usize] = ACTIONS(551), - [anon_sym_bool] = ACTIONS(551), - [anon_sym_ByteArray] = ACTIONS(551), - [anon_sym_felt252] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_PERCENT] = ACTIONS(551), - [anon_sym_CARET] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(549), - [anon_sym_PIPE_PIPE] = ACTIONS(549), - [anon_sym_LT_LT] = ACTIONS(549), - [anon_sym_GT_GT] = ACTIONS(549), - [anon_sym_PLUS_EQ] = ACTIONS(549), - [anon_sym_DASH_EQ] = ACTIONS(549), - [anon_sym_STAR_EQ] = ACTIONS(549), - [anon_sym_SLASH_EQ] = ACTIONS(549), - [anon_sym_PERCENT_EQ] = ACTIONS(549), - [anon_sym_EQ_EQ] = ACTIONS(549), - [anon_sym_BANG_EQ] = ACTIONS(549), - [anon_sym_GT_EQ] = ACTIONS(549), - [anon_sym_LT_EQ] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(549), - [anon_sym_QMARK] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_default] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_extern] = ACTIONS(551), - [anon_sym_loop] = ACTIONS(551), - [anon_sym_match] = ACTIONS(551), - [anon_sym_pub] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [sym_numeric_literal] = ACTIONS(551), - [aux_sym_string_literal_token1] = ACTIONS(549), - [sym_shortstring_literal] = ACTIONS(549), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [anon_sym_ref] = ACTIONS(551), - [sym_identifier] = ACTIONS(551), - [sym_super] = ACTIONS(551), + [ts_builtin_sym_end] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_impl] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(556), + [anon_sym_trait] = ACTIONS(558), + [anon_sym_type] = ACTIONS(558), + [anon_sym_const] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_POUND] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(556), + [anon_sym_RBRACK] = ACTIONS(556), + [anon_sym_mod] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(558), + [anon_sym_enum] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(556), + [anon_sym_fn] = ACTIONS(558), + [anon_sym_let] = ACTIONS(558), + [anon_sym_use] = ACTIONS(558), + [anon_sym_COLON_COLON] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(556), + [anon_sym_u8] = ACTIONS(558), + [anon_sym_i8] = ACTIONS(558), + [anon_sym_u16] = ACTIONS(558), + [anon_sym_i16] = ACTIONS(558), + [anon_sym_u32] = ACTIONS(558), + [anon_sym_i32] = ACTIONS(558), + [anon_sym_u64] = ACTIONS(558), + [anon_sym_i64] = ACTIONS(558), + [anon_sym_u128] = ACTIONS(558), + [anon_sym_i128] = ACTIONS(558), + [anon_sym_usize] = ACTIONS(558), + [anon_sym_bool] = ACTIONS(558), + [anon_sym_ByteArray] = ACTIONS(558), + [anon_sym_felt252] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(558), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_AMP_AMP] = ACTIONS(556), + [anon_sym_PIPE_PIPE] = ACTIONS(556), + [anon_sym_LT_LT] = ACTIONS(556), + [anon_sym_GT_GT] = ACTIONS(556), + [anon_sym_PLUS_EQ] = ACTIONS(556), + [anon_sym_DASH_EQ] = ACTIONS(556), + [anon_sym_STAR_EQ] = ACTIONS(556), + [anon_sym_SLASH_EQ] = ACTIONS(556), + [anon_sym_PERCENT_EQ] = ACTIONS(556), + [anon_sym_EQ_EQ] = ACTIONS(556), + [anon_sym_BANG_EQ] = ACTIONS(556), + [anon_sym_GT_EQ] = ACTIONS(556), + [anon_sym_LT_EQ] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(556), + [anon_sym_DOT] = ACTIONS(556), + [anon_sym_QMARK] = ACTIONS(556), + [anon_sym_break] = ACTIONS(558), + [anon_sym_continue] = ACTIONS(558), + [anon_sym_default] = ACTIONS(558), + [anon_sym_if] = ACTIONS(558), + [anon_sym_extern] = ACTIONS(558), + [anon_sym_loop] = ACTIONS(558), + [anon_sym_match] = ACTIONS(558), + [anon_sym_pub] = ACTIONS(558), + [anon_sym_return] = ACTIONS(558), + [anon_sym_while] = ACTIONS(558), + [anon_sym_for] = ACTIONS(558), + [sym_numeric_literal] = ACTIONS(558), + [aux_sym_string_literal_token1] = ACTIONS(556), + [sym_shortstring_literal] = ACTIONS(556), + [anon_sym_true] = ACTIONS(558), + [anon_sym_false] = ACTIONS(558), + [anon_sym_ref] = ACTIONS(558), + [sym_identifier] = ACTIONS(558), + [sym_super] = ACTIONS(558), [sym_line_comment] = ACTIONS(3), }, [81] = { - [ts_builtin_sym_end] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_impl] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(553), - [anon_sym_trait] = ACTIONS(555), - [anon_sym_type] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(555), - [anon_sym_POUND] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(553), - [anon_sym_RBRACK] = ACTIONS(553), - [anon_sym_mod] = ACTIONS(555), - [anon_sym_struct] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(553), - [anon_sym_fn] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_use] = ACTIONS(555), - [anon_sym_COLON_COLON] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(553), - [anon_sym_RPAREN] = ACTIONS(553), - [anon_sym_u8] = ACTIONS(555), - [anon_sym_i8] = ACTIONS(555), - [anon_sym_u16] = ACTIONS(555), - [anon_sym_i16] = ACTIONS(555), - [anon_sym_u32] = ACTIONS(555), - [anon_sym_i32] = ACTIONS(555), - [anon_sym_u64] = ACTIONS(555), - [anon_sym_i64] = ACTIONS(555), - [anon_sym_u128] = ACTIONS(555), - [anon_sym_i128] = ACTIONS(555), - [anon_sym_usize] = ACTIONS(555), - [anon_sym_bool] = ACTIONS(555), - [anon_sym_ByteArray] = ACTIONS(555), - [anon_sym_felt252] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(553), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_AMP] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(553), - [anon_sym_PIPE_PIPE] = ACTIONS(553), - [anon_sym_LT_LT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(553), - [anon_sym_PLUS_EQ] = ACTIONS(553), - [anon_sym_DASH_EQ] = ACTIONS(553), - [anon_sym_STAR_EQ] = ACTIONS(553), - [anon_sym_SLASH_EQ] = ACTIONS(553), - [anon_sym_PERCENT_EQ] = ACTIONS(553), - [anon_sym_EQ_EQ] = ACTIONS(553), - [anon_sym_BANG_EQ] = ACTIONS(553), - [anon_sym_GT_EQ] = ACTIONS(553), - [anon_sym_LT_EQ] = ACTIONS(553), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(553), - [anon_sym_QMARK] = ACTIONS(553), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_default] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_extern] = ACTIONS(555), - [anon_sym_loop] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_while] = ACTIONS(555), - [sym_numeric_literal] = ACTIONS(555), - [aux_sym_string_literal_token1] = ACTIONS(553), - [sym_shortstring_literal] = ACTIONS(553), - [anon_sym_true] = ACTIONS(555), - [anon_sym_false] = ACTIONS(555), - [anon_sym_ref] = ACTIONS(555), - [sym_identifier] = ACTIONS(555), - [sym_super] = ACTIONS(555), + [ts_builtin_sym_end] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_impl] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_trait] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_const] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_POUND] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_RBRACK] = ACTIONS(560), + [anon_sym_mod] = ACTIONS(562), + [anon_sym_struct] = ACTIONS(562), + [anon_sym_enum] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(562), + [anon_sym_let] = ACTIONS(562), + [anon_sym_use] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(560), + [anon_sym_RPAREN] = ACTIONS(560), + [anon_sym_u8] = ACTIONS(562), + [anon_sym_i8] = ACTIONS(562), + [anon_sym_u16] = ACTIONS(562), + [anon_sym_i16] = ACTIONS(562), + [anon_sym_u32] = ACTIONS(562), + [anon_sym_i32] = ACTIONS(562), + [anon_sym_u64] = ACTIONS(562), + [anon_sym_i64] = ACTIONS(562), + [anon_sym_u128] = ACTIONS(562), + [anon_sym_i128] = ACTIONS(562), + [anon_sym_usize] = ACTIONS(562), + [anon_sym_bool] = ACTIONS(562), + [anon_sym_ByteArray] = ACTIONS(562), + [anon_sym_felt252] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(560), + [anon_sym_PIPE_PIPE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(560), + [anon_sym_DASH_EQ] = ACTIONS(560), + [anon_sym_STAR_EQ] = ACTIONS(560), + [anon_sym_SLASH_EQ] = ACTIONS(560), + [anon_sym_PERCENT_EQ] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(560), + [anon_sym_BANG_EQ] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(562), + [anon_sym_default] = ACTIONS(562), + [anon_sym_if] = ACTIONS(562), + [anon_sym_extern] = ACTIONS(562), + [anon_sym_loop] = ACTIONS(562), + [anon_sym_match] = ACTIONS(562), + [anon_sym_pub] = ACTIONS(562), + [anon_sym_return] = ACTIONS(562), + [anon_sym_while] = ACTIONS(562), + [anon_sym_for] = ACTIONS(562), + [sym_numeric_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(560), + [sym_shortstring_literal] = ACTIONS(560), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_ref] = ACTIONS(562), + [sym_identifier] = ACTIONS(562), + [sym_super] = ACTIONS(562), [sym_line_comment] = ACTIONS(3), }, [82] = { - [ts_builtin_sym_end] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(497), - [anon_sym_RBRACE] = ACTIONS(497), - [anon_sym_impl] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(497), - [anon_sym_trait] = ACTIONS(499), - [anon_sym_type] = ACTIONS(499), - [anon_sym_const] = ACTIONS(499), - [anon_sym_EQ] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_POUND] = ACTIONS(497), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_RBRACK] = ACTIONS(497), - [anon_sym_mod] = ACTIONS(499), - [anon_sym_struct] = ACTIONS(499), - [anon_sym_enum] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(497), - [anon_sym_fn] = ACTIONS(499), - [anon_sym_let] = ACTIONS(499), - [anon_sym_use] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_LPAREN] = ACTIONS(497), - [anon_sym_RPAREN] = ACTIONS(497), - [anon_sym_u8] = ACTIONS(499), - [anon_sym_i8] = ACTIONS(499), - [anon_sym_u16] = ACTIONS(499), - [anon_sym_i16] = ACTIONS(499), - [anon_sym_u32] = ACTIONS(499), - [anon_sym_i32] = ACTIONS(499), - [anon_sym_u64] = ACTIONS(499), - [anon_sym_i64] = ACTIONS(499), - [anon_sym_u128] = ACTIONS(499), - [anon_sym_i128] = ACTIONS(499), - [anon_sym_usize] = ACTIONS(499), - [anon_sym_bool] = ACTIONS(499), - [anon_sym_ByteArray] = ACTIONS(499), - [anon_sym_felt252] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_GT] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_SLASH] = ACTIONS(499), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(499), - [anon_sym_AMP_AMP] = ACTIONS(497), - [anon_sym_PIPE_PIPE] = ACTIONS(497), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_GT_GT] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(497), - [anon_sym_STAR_EQ] = ACTIONS(497), - [anon_sym_SLASH_EQ] = ACTIONS(497), - [anon_sym_PERCENT_EQ] = ACTIONS(497), - [anon_sym_EQ_EQ] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(497), - [anon_sym_GT_EQ] = ACTIONS(497), - [anon_sym_LT_EQ] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(497), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(497), - [anon_sym_break] = ACTIONS(499), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(499), - [anon_sym_if] = ACTIONS(499), - [anon_sym_extern] = ACTIONS(499), - [anon_sym_loop] = ACTIONS(499), - [anon_sym_match] = ACTIONS(499), - [anon_sym_pub] = ACTIONS(499), - [anon_sym_return] = ACTIONS(499), - [anon_sym_while] = ACTIONS(499), - [sym_numeric_literal] = ACTIONS(499), - [aux_sym_string_literal_token1] = ACTIONS(497), - [sym_shortstring_literal] = ACTIONS(497), - [anon_sym_true] = ACTIONS(499), - [anon_sym_false] = ACTIONS(499), - [anon_sym_ref] = ACTIONS(499), - [sym_identifier] = ACTIONS(499), - [sym_super] = ACTIONS(499), + [ts_builtin_sym_end] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(564), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_impl] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_trait] = ACTIONS(566), + [anon_sym_type] = ACTIONS(566), + [anon_sym_const] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_mod] = ACTIONS(566), + [anon_sym_struct] = ACTIONS(566), + [anon_sym_enum] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(566), + [anon_sym_let] = ACTIONS(566), + [anon_sym_use] = ACTIONS(566), + [anon_sym_COLON_COLON] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [anon_sym_u8] = ACTIONS(566), + [anon_sym_i8] = ACTIONS(566), + [anon_sym_u16] = ACTIONS(566), + [anon_sym_i16] = ACTIONS(566), + [anon_sym_u32] = ACTIONS(566), + [anon_sym_i32] = ACTIONS(566), + [anon_sym_u64] = ACTIONS(566), + [anon_sym_i64] = ACTIONS(566), + [anon_sym_u128] = ACTIONS(566), + [anon_sym_i128] = ACTIONS(566), + [anon_sym_usize] = ACTIONS(566), + [anon_sym_bool] = ACTIONS(566), + [anon_sym_ByteArray] = ACTIONS(566), + [anon_sym_felt252] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_AMP_AMP] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(564), + [anon_sym_DASH_EQ] = ACTIONS(564), + [anon_sym_STAR_EQ] = ACTIONS(564), + [anon_sym_SLASH_EQ] = ACTIONS(564), + [anon_sym_PERCENT_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(564), + [anon_sym_BANG_EQ] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_break] = ACTIONS(566), + [anon_sym_continue] = ACTIONS(566), + [anon_sym_default] = ACTIONS(566), + [anon_sym_if] = ACTIONS(566), + [anon_sym_extern] = ACTIONS(566), + [anon_sym_loop] = ACTIONS(566), + [anon_sym_match] = ACTIONS(566), + [anon_sym_pub] = ACTIONS(566), + [anon_sym_return] = ACTIONS(566), + [anon_sym_while] = ACTIONS(566), + [anon_sym_for] = ACTIONS(566), + [sym_numeric_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(564), + [sym_shortstring_literal] = ACTIONS(564), + [anon_sym_true] = ACTIONS(566), + [anon_sym_false] = ACTIONS(566), + [anon_sym_ref] = ACTIONS(566), + [sym_identifier] = ACTIONS(566), + [sym_super] = ACTIONS(566), [sym_line_comment] = ACTIONS(3), }, [83] = { - [sym_else_clause] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(557), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_impl] = ACTIONS(559), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_trait] = ACTIONS(559), - [anon_sym_type] = ACTIONS(559), - [anon_sym_const] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(559), - [anon_sym_BANG] = ACTIONS(559), - [anon_sym_POUND] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_mod] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(559), - [anon_sym_enum] = ACTIONS(559), - [anon_sym_fn] = ACTIONS(559), - [anon_sym_let] = ACTIONS(559), - [anon_sym_use] = ACTIONS(559), - [anon_sym_COLON_COLON] = ACTIONS(557), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_u8] = ACTIONS(559), - [anon_sym_i8] = ACTIONS(559), - [anon_sym_u16] = ACTIONS(559), - [anon_sym_i16] = ACTIONS(559), - [anon_sym_u32] = ACTIONS(559), - [anon_sym_i32] = ACTIONS(559), - [anon_sym_u64] = ACTIONS(559), - [anon_sym_i64] = ACTIONS(559), - [anon_sym_u128] = ACTIONS(559), - [anon_sym_i128] = ACTIONS(559), - [anon_sym_usize] = ACTIONS(559), - [anon_sym_bool] = ACTIONS(559), - [anon_sym_ByteArray] = ACTIONS(559), - [anon_sym_felt252] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_GT] = ACTIONS(559), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_SLASH] = ACTIONS(559), - [anon_sym_PERCENT] = ACTIONS(559), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(557), - [anon_sym_PLUS_EQ] = ACTIONS(557), - [anon_sym_DASH_EQ] = ACTIONS(557), - [anon_sym_STAR_EQ] = ACTIONS(557), - [anon_sym_SLASH_EQ] = ACTIONS(557), - [anon_sym_PERCENT_EQ] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(557), - [anon_sym_break] = ACTIONS(559), - [anon_sym_continue] = ACTIONS(559), - [anon_sym_default] = ACTIONS(559), - [anon_sym_if] = ACTIONS(559), - [anon_sym_extern] = ACTIONS(559), - [anon_sym_loop] = ACTIONS(559), - [anon_sym_match] = ACTIONS(559), - [anon_sym_pub] = ACTIONS(559), - [anon_sym_return] = ACTIONS(559), - [anon_sym_while] = ACTIONS(559), - [sym_numeric_literal] = ACTIONS(559), - [aux_sym_string_literal_token1] = ACTIONS(557), - [sym_shortstring_literal] = ACTIONS(557), - [anon_sym_true] = ACTIONS(559), - [anon_sym_false] = ACTIONS(559), - [anon_sym_else] = ACTIONS(561), - [anon_sym_ref] = ACTIONS(559), - [sym_identifier] = ACTIONS(559), - [sym_super] = ACTIONS(559), + [ts_builtin_sym_end] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_impl] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_trait] = ACTIONS(510), + [anon_sym_type] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(508), + [anon_sym_RBRACK] = ACTIONS(508), + [anon_sym_mod] = ACTIONS(510), + [anon_sym_struct] = ACTIONS(510), + [anon_sym_enum] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_fn] = ACTIONS(510), + [anon_sym_let] = ACTIONS(510), + [anon_sym_use] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(510), + [anon_sym_i8] = ACTIONS(510), + [anon_sym_u16] = ACTIONS(510), + [anon_sym_i16] = ACTIONS(510), + [anon_sym_u32] = ACTIONS(510), + [anon_sym_i32] = ACTIONS(510), + [anon_sym_u64] = ACTIONS(510), + [anon_sym_i64] = ACTIONS(510), + [anon_sym_u128] = ACTIONS(510), + [anon_sym_i128] = ACTIONS(510), + [anon_sym_usize] = ACTIONS(510), + [anon_sym_bool] = ACTIONS(510), + [anon_sym_ByteArray] = ACTIONS(510), + [anon_sym_felt252] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(508), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(508), + [anon_sym_PLUS_EQ] = ACTIONS(508), + [anon_sym_DASH_EQ] = ACTIONS(508), + [anon_sym_STAR_EQ] = ACTIONS(508), + [anon_sym_SLASH_EQ] = ACTIONS(508), + [anon_sym_PERCENT_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_break] = ACTIONS(510), + [anon_sym_continue] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_if] = ACTIONS(510), + [anon_sym_extern] = ACTIONS(510), + [anon_sym_loop] = ACTIONS(510), + [anon_sym_match] = ACTIONS(510), + [anon_sym_pub] = ACTIONS(510), + [anon_sym_return] = ACTIONS(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_for] = ACTIONS(510), + [sym_numeric_literal] = ACTIONS(510), + [aux_sym_string_literal_token1] = ACTIONS(508), + [sym_shortstring_literal] = ACTIONS(508), + [anon_sym_true] = ACTIONS(510), + [anon_sym_false] = ACTIONS(510), + [anon_sym_ref] = ACTIONS(510), + [sym_identifier] = ACTIONS(510), + [sym_super] = ACTIONS(510), [sym_line_comment] = ACTIONS(3), }, [84] = { - [ts_builtin_sym_end] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(533), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_impl] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(533), - [anon_sym_trait] = ACTIONS(535), - [anon_sym_type] = ACTIONS(535), - [anon_sym_const] = ACTIONS(535), - [anon_sym_EQ] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(535), - [anon_sym_POUND] = ACTIONS(533), - [anon_sym_LBRACK] = ACTIONS(533), - [anon_sym_mod] = ACTIONS(535), - [anon_sym_struct] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [anon_sym_fn] = ACTIONS(535), - [anon_sym_let] = ACTIONS(535), - [anon_sym_use] = ACTIONS(535), - [anon_sym_COLON_COLON] = ACTIONS(533), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_u8] = ACTIONS(535), - [anon_sym_i8] = ACTIONS(535), - [anon_sym_u16] = ACTIONS(535), - [anon_sym_i16] = ACTIONS(535), - [anon_sym_u32] = ACTIONS(535), - [anon_sym_i32] = ACTIONS(535), - [anon_sym_u64] = ACTIONS(535), - [anon_sym_i64] = ACTIONS(535), - [anon_sym_u128] = ACTIONS(535), - [anon_sym_i128] = ACTIONS(535), - [anon_sym_usize] = ACTIONS(535), - [anon_sym_bool] = ACTIONS(535), - [anon_sym_ByteArray] = ACTIONS(535), - [anon_sym_felt252] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(535), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(535), - [anon_sym_CARET] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_AMP_AMP] = ACTIONS(533), - [anon_sym_PIPE_PIPE] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(533), - [anon_sym_GT_GT] = ACTIONS(533), - [anon_sym_PLUS_EQ] = ACTIONS(533), - [anon_sym_DASH_EQ] = ACTIONS(533), - [anon_sym_STAR_EQ] = ACTIONS(533), - [anon_sym_SLASH_EQ] = ACTIONS(533), - [anon_sym_PERCENT_EQ] = ACTIONS(533), - [anon_sym_EQ_EQ] = ACTIONS(533), - [anon_sym_BANG_EQ] = ACTIONS(533), - [anon_sym_GT_EQ] = ACTIONS(533), - [anon_sym_LT_EQ] = ACTIONS(533), - [anon_sym_AT] = ACTIONS(533), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_QMARK] = ACTIONS(533), - [anon_sym_break] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_default] = ACTIONS(535), - [anon_sym_if] = ACTIONS(535), - [anon_sym_extern] = ACTIONS(535), - [anon_sym_loop] = ACTIONS(535), - [anon_sym_match] = ACTIONS(535), - [anon_sym_pub] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [sym_numeric_literal] = ACTIONS(535), - [aux_sym_string_literal_token1] = ACTIONS(533), - [sym_shortstring_literal] = ACTIONS(533), - [anon_sym_true] = ACTIONS(535), - [anon_sym_false] = ACTIONS(535), - [anon_sym_else] = ACTIONS(535), - [anon_sym_ref] = ACTIONS(535), - [sym_identifier] = ACTIONS(535), - [sym_super] = ACTIONS(535), + [sym_else_clause] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_impl] = ACTIONS(570), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_trait] = ACTIONS(570), + [anon_sym_type] = ACTIONS(570), + [anon_sym_const] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_POUND] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_mod] = ACTIONS(570), + [anon_sym_struct] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(570), + [anon_sym_fn] = ACTIONS(570), + [anon_sym_let] = ACTIONS(570), + [anon_sym_use] = ACTIONS(570), + [anon_sym_COLON_COLON] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_u8] = ACTIONS(570), + [anon_sym_i8] = ACTIONS(570), + [anon_sym_u16] = ACTIONS(570), + [anon_sym_i16] = ACTIONS(570), + [anon_sym_u32] = ACTIONS(570), + [anon_sym_i32] = ACTIONS(570), + [anon_sym_u64] = ACTIONS(570), + [anon_sym_i64] = ACTIONS(570), + [anon_sym_u128] = ACTIONS(570), + [anon_sym_i128] = ACTIONS(570), + [anon_sym_usize] = ACTIONS(570), + [anon_sym_bool] = ACTIONS(570), + [anon_sym_ByteArray] = ACTIONS(570), + [anon_sym_felt252] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_PERCENT] = ACTIONS(570), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_AT] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(568), + [anon_sym_break] = ACTIONS(570), + [anon_sym_continue] = ACTIONS(570), + [anon_sym_default] = ACTIONS(570), + [anon_sym_if] = ACTIONS(570), + [anon_sym_extern] = ACTIONS(570), + [anon_sym_loop] = ACTIONS(570), + [anon_sym_match] = ACTIONS(570), + [anon_sym_pub] = ACTIONS(570), + [anon_sym_return] = ACTIONS(570), + [anon_sym_while] = ACTIONS(570), + [anon_sym_for] = ACTIONS(570), + [sym_numeric_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(568), + [sym_shortstring_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(570), + [anon_sym_false] = ACTIONS(570), + [anon_sym_else] = ACTIONS(572), + [anon_sym_ref] = ACTIONS(570), + [sym_identifier] = ACTIONS(570), + [sym_super] = ACTIONS(570), [sym_line_comment] = ACTIONS(3), }, [85] = { - [ts_builtin_sym_end] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_RBRACE] = ACTIONS(505), - [anon_sym_impl] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_trait] = ACTIONS(507), - [anon_sym_type] = ACTIONS(507), - [anon_sym_const] = ACTIONS(507), - [anon_sym_EQ] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_POUND] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(505), - [anon_sym_mod] = ACTIONS(507), - [anon_sym_struct] = ACTIONS(507), - [anon_sym_enum] = ACTIONS(507), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_let] = ACTIONS(507), - [anon_sym_use] = ACTIONS(507), - [anon_sym_COLON_COLON] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(505), - [anon_sym_u8] = ACTIONS(507), - [anon_sym_i8] = ACTIONS(507), - [anon_sym_u16] = ACTIONS(507), - [anon_sym_i16] = ACTIONS(507), - [anon_sym_u32] = ACTIONS(507), - [anon_sym_i32] = ACTIONS(507), - [anon_sym_u64] = ACTIONS(507), - [anon_sym_i64] = ACTIONS(507), - [anon_sym_u128] = ACTIONS(507), - [anon_sym_i128] = ACTIONS(507), - [anon_sym_usize] = ACTIONS(507), - [anon_sym_bool] = ACTIONS(507), - [anon_sym_ByteArray] = ACTIONS(507), - [anon_sym_felt252] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_GT] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_AMP_AMP] = ACTIONS(505), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_LT_LT] = ACTIONS(505), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_PLUS_EQ] = ACTIONS(505), - [anon_sym_DASH_EQ] = ACTIONS(505), - [anon_sym_STAR_EQ] = ACTIONS(505), - [anon_sym_SLASH_EQ] = ACTIONS(505), - [anon_sym_PERCENT_EQ] = ACTIONS(505), - [anon_sym_EQ_EQ] = ACTIONS(505), - [anon_sym_BANG_EQ] = ACTIONS(505), - [anon_sym_GT_EQ] = ACTIONS(505), - [anon_sym_LT_EQ] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(505), - [anon_sym_DOT] = ACTIONS(505), - [anon_sym_QMARK] = ACTIONS(505), - [anon_sym_break] = ACTIONS(507), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(507), - [anon_sym_if] = ACTIONS(507), - [anon_sym_extern] = ACTIONS(507), - [anon_sym_loop] = ACTIONS(507), - [anon_sym_match] = ACTIONS(507), - [anon_sym_pub] = ACTIONS(507), - [anon_sym_return] = ACTIONS(507), - [anon_sym_while] = ACTIONS(507), - [sym_numeric_literal] = ACTIONS(507), - [aux_sym_string_literal_token1] = ACTIONS(505), - [sym_shortstring_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_else] = ACTIONS(507), - [anon_sym_ref] = ACTIONS(507), - [sym_identifier] = ACTIONS(507), - [sym_super] = ACTIONS(507), + [ts_builtin_sym_end] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_impl] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_trait] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_POUND] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_mod] = ACTIONS(538), + [anon_sym_struct] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_fn] = ACTIONS(538), + [anon_sym_let] = ACTIONS(538), + [anon_sym_use] = ACTIONS(538), + [anon_sym_COLON_COLON] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_ByteArray] = ACTIONS(538), + [anon_sym_felt252] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(536), + [anon_sym_TILDE] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_AMP_AMP] = ACTIONS(536), + [anon_sym_PIPE_PIPE] = ACTIONS(536), + [anon_sym_LT_LT] = ACTIONS(536), + [anon_sym_GT_GT] = ACTIONS(536), + [anon_sym_PLUS_EQ] = ACTIONS(536), + [anon_sym_DASH_EQ] = ACTIONS(536), + [anon_sym_STAR_EQ] = ACTIONS(536), + [anon_sym_SLASH_EQ] = ACTIONS(536), + [anon_sym_PERCENT_EQ] = ACTIONS(536), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(536), + [anon_sym_LT_EQ] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(536), + [anon_sym_QMARK] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_default] = ACTIONS(538), + [anon_sym_if] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_loop] = ACTIONS(538), + [anon_sym_match] = ACTIONS(538), + [anon_sym_pub] = ACTIONS(538), + [anon_sym_return] = ACTIONS(538), + [anon_sym_while] = ACTIONS(538), + [anon_sym_for] = ACTIONS(538), + [sym_numeric_literal] = ACTIONS(538), + [aux_sym_string_literal_token1] = ACTIONS(536), + [sym_shortstring_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [anon_sym_else] = ACTIONS(538), + [anon_sym_ref] = ACTIONS(538), + [sym_identifier] = ACTIONS(538), + [sym_super] = ACTIONS(538), [sym_line_comment] = ACTIONS(3), }, [86] = { - [ts_builtin_sym_end] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(525), - [anon_sym_RBRACE] = ACTIONS(525), - [anon_sym_impl] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(525), - [anon_sym_trait] = ACTIONS(527), - [anon_sym_type] = ACTIONS(527), - [anon_sym_const] = ACTIONS(527), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(525), - [anon_sym_mod] = ACTIONS(527), - [anon_sym_struct] = ACTIONS(527), - [anon_sym_enum] = ACTIONS(527), - [anon_sym_fn] = ACTIONS(527), - [anon_sym_let] = ACTIONS(527), - [anon_sym_use] = ACTIONS(527), - [anon_sym_COLON_COLON] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_u8] = ACTIONS(527), - [anon_sym_i8] = ACTIONS(527), - [anon_sym_u16] = ACTIONS(527), - [anon_sym_i16] = ACTIONS(527), - [anon_sym_u32] = ACTIONS(527), - [anon_sym_i32] = ACTIONS(527), - [anon_sym_u64] = ACTIONS(527), - [anon_sym_i64] = ACTIONS(527), - [anon_sym_u128] = ACTIONS(527), - [anon_sym_i128] = ACTIONS(527), - [anon_sym_usize] = ACTIONS(527), - [anon_sym_bool] = ACTIONS(527), - [anon_sym_ByteArray] = ACTIONS(527), - [anon_sym_felt252] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(525), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_AMP_AMP] = ACTIONS(525), - [anon_sym_PIPE_PIPE] = ACTIONS(525), - [anon_sym_LT_LT] = ACTIONS(525), - [anon_sym_GT_GT] = ACTIONS(525), - [anon_sym_PLUS_EQ] = ACTIONS(525), - [anon_sym_DASH_EQ] = ACTIONS(525), - [anon_sym_STAR_EQ] = ACTIONS(525), - [anon_sym_SLASH_EQ] = ACTIONS(525), - [anon_sym_PERCENT_EQ] = ACTIONS(525), - [anon_sym_EQ_EQ] = ACTIONS(525), - [anon_sym_BANG_EQ] = ACTIONS(525), - [anon_sym_GT_EQ] = ACTIONS(525), - [anon_sym_LT_EQ] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(525), - [anon_sym_DOT] = ACTIONS(525), - [anon_sym_QMARK] = ACTIONS(525), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(527), - [anon_sym_default] = ACTIONS(527), - [anon_sym_if] = ACTIONS(527), - [anon_sym_extern] = ACTIONS(527), - [anon_sym_loop] = ACTIONS(527), - [anon_sym_match] = ACTIONS(527), - [anon_sym_pub] = ACTIONS(527), - [anon_sym_return] = ACTIONS(527), - [anon_sym_while] = ACTIONS(527), - [sym_numeric_literal] = ACTIONS(527), - [aux_sym_string_literal_token1] = ACTIONS(525), - [sym_shortstring_literal] = ACTIONS(525), - [anon_sym_true] = ACTIONS(527), - [anon_sym_false] = ACTIONS(527), - [anon_sym_else] = ACTIONS(527), - [anon_sym_ref] = ACTIONS(527), - [sym_identifier] = ACTIONS(527), - [sym_super] = ACTIONS(527), + [ts_builtin_sym_end] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_impl] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_trait] = ACTIONS(542), + [anon_sym_type] = ACTIONS(542), + [anon_sym_const] = ACTIONS(542), + [anon_sym_EQ] = ACTIONS(542), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_POUND] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_mod] = ACTIONS(542), + [anon_sym_struct] = ACTIONS(542), + [anon_sym_enum] = ACTIONS(542), + [anon_sym_fn] = ACTIONS(542), + [anon_sym_let] = ACTIONS(542), + [anon_sym_use] = ACTIONS(542), + [anon_sym_COLON_COLON] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(542), + [anon_sym_LPAREN] = ACTIONS(540), + [anon_sym_u8] = ACTIONS(542), + [anon_sym_i8] = ACTIONS(542), + [anon_sym_u16] = ACTIONS(542), + [anon_sym_i16] = ACTIONS(542), + [anon_sym_u32] = ACTIONS(542), + [anon_sym_i32] = ACTIONS(542), + [anon_sym_u64] = ACTIONS(542), + [anon_sym_i64] = ACTIONS(542), + [anon_sym_u128] = ACTIONS(542), + [anon_sym_i128] = ACTIONS(542), + [anon_sym_usize] = ACTIONS(542), + [anon_sym_bool] = ACTIONS(542), + [anon_sym_ByteArray] = ACTIONS(542), + [anon_sym_felt252] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(542), + [anon_sym_GT] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(542), + [anon_sym_DASH] = ACTIONS(542), + [anon_sym_SLASH] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(542), + [anon_sym_CARET] = ACTIONS(540), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(542), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(540), + [anon_sym_PIPE_PIPE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(540), + [anon_sym_GT_GT] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(540), + [anon_sym_DASH_EQ] = ACTIONS(540), + [anon_sym_STAR_EQ] = ACTIONS(540), + [anon_sym_SLASH_EQ] = ACTIONS(540), + [anon_sym_PERCENT_EQ] = ACTIONS(540), + [anon_sym_EQ_EQ] = ACTIONS(540), + [anon_sym_BANG_EQ] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(540), + [anon_sym_LT_EQ] = ACTIONS(540), + [anon_sym_AT] = ACTIONS(540), + [anon_sym_DOT] = ACTIONS(540), + [anon_sym_QMARK] = ACTIONS(540), + [anon_sym_break] = ACTIONS(542), + [anon_sym_continue] = ACTIONS(542), + [anon_sym_default] = ACTIONS(542), + [anon_sym_if] = ACTIONS(542), + [anon_sym_extern] = ACTIONS(542), + [anon_sym_loop] = ACTIONS(542), + [anon_sym_match] = ACTIONS(542), + [anon_sym_pub] = ACTIONS(542), + [anon_sym_return] = ACTIONS(542), + [anon_sym_while] = ACTIONS(542), + [anon_sym_for] = ACTIONS(542), + [sym_numeric_literal] = ACTIONS(542), + [aux_sym_string_literal_token1] = ACTIONS(540), + [sym_shortstring_literal] = ACTIONS(540), + [anon_sym_true] = ACTIONS(542), + [anon_sym_false] = ACTIONS(542), + [anon_sym_else] = ACTIONS(542), + [anon_sym_ref] = ACTIONS(542), + [sym_identifier] = ACTIONS(542), + [sym_super] = ACTIONS(542), [sym_line_comment] = ACTIONS(3), }, [87] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(103), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(584), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1291), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_impl] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_trait] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_const] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_POUND] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_mod] = ACTIONS(562), + [anon_sym_struct] = ACTIONS(562), + [anon_sym_enum] = ACTIONS(562), + [anon_sym_fn] = ACTIONS(562), + [anon_sym_let] = ACTIONS(562), + [anon_sym_use] = ACTIONS(562), + [anon_sym_COLON_COLON] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(560), + [anon_sym_u8] = ACTIONS(562), + [anon_sym_i8] = ACTIONS(562), + [anon_sym_u16] = ACTIONS(562), + [anon_sym_i16] = ACTIONS(562), + [anon_sym_u32] = ACTIONS(562), + [anon_sym_i32] = ACTIONS(562), + [anon_sym_u64] = ACTIONS(562), + [anon_sym_i64] = ACTIONS(562), + [anon_sym_u128] = ACTIONS(562), + [anon_sym_i128] = ACTIONS(562), + [anon_sym_usize] = ACTIONS(562), + [anon_sym_bool] = ACTIONS(562), + [anon_sym_ByteArray] = ACTIONS(562), + [anon_sym_felt252] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(562), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(560), + [anon_sym_PIPE_PIPE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(560), + [anon_sym_DASH_EQ] = ACTIONS(560), + [anon_sym_STAR_EQ] = ACTIONS(560), + [anon_sym_SLASH_EQ] = ACTIONS(560), + [anon_sym_PERCENT_EQ] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(560), + [anon_sym_BANG_EQ] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(562), + [anon_sym_default] = ACTIONS(562), + [anon_sym_if] = ACTIONS(562), + [anon_sym_extern] = ACTIONS(562), + [anon_sym_loop] = ACTIONS(562), + [anon_sym_match] = ACTIONS(562), + [anon_sym_pub] = ACTIONS(562), + [anon_sym_return] = ACTIONS(562), + [anon_sym_while] = ACTIONS(562), + [anon_sym_for] = ACTIONS(562), + [sym_numeric_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(560), + [sym_shortstring_literal] = ACTIONS(560), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_else] = ACTIONS(562), + [anon_sym_ref] = ACTIONS(562), + [sym_identifier] = ACTIONS(562), + [sym_super] = ACTIONS(562), + [sym_line_comment] = ACTIONS(3), + }, + [88] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(105), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(600), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1298), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(105), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(578), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(580), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18414,150 +18701,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [88] = { - [ts_builtin_sym_end] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_RBRACE] = ACTIONS(573), - [anon_sym_impl] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(573), - [anon_sym_trait] = ACTIONS(575), - [anon_sym_type] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_POUND] = ACTIONS(573), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_mod] = ACTIONS(575), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_fn] = ACTIONS(575), - [anon_sym_let] = ACTIONS(575), - [anon_sym_use] = ACTIONS(575), - [anon_sym_COLON_COLON] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_u8] = ACTIONS(575), - [anon_sym_i8] = ACTIONS(575), - [anon_sym_u16] = ACTIONS(575), - [anon_sym_i16] = ACTIONS(575), - [anon_sym_u32] = ACTIONS(575), - [anon_sym_i32] = ACTIONS(575), - [anon_sym_u64] = ACTIONS(575), - [anon_sym_i64] = ACTIONS(575), - [anon_sym_u128] = ACTIONS(575), - [anon_sym_i128] = ACTIONS(575), - [anon_sym_usize] = ACTIONS(575), - [anon_sym_bool] = ACTIONS(575), - [anon_sym_ByteArray] = ACTIONS(575), - [anon_sym_felt252] = ACTIONS(575), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_PLUS_EQ] = ACTIONS(579), - [anon_sym_DASH_EQ] = ACTIONS(579), - [anon_sym_STAR_EQ] = ACTIONS(579), - [anon_sym_SLASH_EQ] = ACTIONS(579), - [anon_sym_PERCENT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(579), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_default] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_extern] = ACTIONS(575), - [anon_sym_loop] = ACTIONS(575), - [anon_sym_match] = ACTIONS(575), - [anon_sym_pub] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [sym_numeric_literal] = ACTIONS(575), - [aux_sym_string_literal_token1] = ACTIONS(573), - [sym_shortstring_literal] = ACTIONS(573), - [anon_sym_true] = ACTIONS(575), - [anon_sym_false] = ACTIONS(575), - [anon_sym_ref] = ACTIONS(575), - [sym_identifier] = ACTIONS(575), - [sym_super] = ACTIONS(575), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [89] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(98), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(576), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1285), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(98), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(101), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(592), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1342), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(101), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(584), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_RPAREN] = ACTIONS(586), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18578,230 +18785,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [90] = { - [ts_builtin_sym_end] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(579), - [anon_sym_impl] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_trait] = ACTIONS(587), - [anon_sym_type] = ACTIONS(587), - [anon_sym_const] = ACTIONS(587), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_mod] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(587), - [anon_sym_enum] = ACTIONS(587), - [anon_sym_fn] = ACTIONS(587), - [anon_sym_let] = ACTIONS(587), - [anon_sym_use] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_u8] = ACTIONS(587), - [anon_sym_i8] = ACTIONS(587), - [anon_sym_u16] = ACTIONS(587), - [anon_sym_i16] = ACTIONS(587), - [anon_sym_u32] = ACTIONS(587), - [anon_sym_i32] = ACTIONS(587), - [anon_sym_u64] = ACTIONS(587), - [anon_sym_i64] = ACTIONS(587), - [anon_sym_u128] = ACTIONS(587), - [anon_sym_i128] = ACTIONS(587), - [anon_sym_usize] = ACTIONS(587), - [anon_sym_bool] = ACTIONS(587), - [anon_sym_ByteArray] = ACTIONS(587), - [anon_sym_felt252] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_PLUS_EQ] = ACTIONS(579), - [anon_sym_DASH_EQ] = ACTIONS(579), - [anon_sym_STAR_EQ] = ACTIONS(579), - [anon_sym_SLASH_EQ] = ACTIONS(579), - [anon_sym_PERCENT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(579), - [anon_sym_break] = ACTIONS(587), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_default] = ACTIONS(587), - [anon_sym_if] = ACTIONS(587), - [anon_sym_extern] = ACTIONS(587), - [anon_sym_loop] = ACTIONS(587), - [anon_sym_match] = ACTIONS(587), - [anon_sym_pub] = ACTIONS(587), - [anon_sym_return] = ACTIONS(587), - [anon_sym_while] = ACTIONS(587), - [sym_numeric_literal] = ACTIONS(587), - [aux_sym_string_literal_token1] = ACTIONS(585), - [sym_shortstring_literal] = ACTIONS(585), - [anon_sym_true] = ACTIONS(587), - [anon_sym_false] = ACTIONS(587), - [anon_sym_ref] = ACTIONS(587), - [sym_identifier] = ACTIONS(587), - [sym_super] = ACTIONS(587), + [ts_builtin_sym_end] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_impl] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(588), + [anon_sym_trait] = ACTIONS(590), + [anon_sym_type] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_POUND] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(588), + [anon_sym_mod] = ACTIONS(590), + [anon_sym_struct] = ACTIONS(590), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_fn] = ACTIONS(590), + [anon_sym_let] = ACTIONS(590), + [anon_sym_use] = ACTIONS(590), + [anon_sym_COLON_COLON] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_u8] = ACTIONS(590), + [anon_sym_i8] = ACTIONS(590), + [anon_sym_u16] = ACTIONS(590), + [anon_sym_i16] = ACTIONS(590), + [anon_sym_u32] = ACTIONS(590), + [anon_sym_i32] = ACTIONS(590), + [anon_sym_u64] = ACTIONS(590), + [anon_sym_i64] = ACTIONS(590), + [anon_sym_u128] = ACTIONS(590), + [anon_sym_i128] = ACTIONS(590), + [anon_sym_usize] = ACTIONS(590), + [anon_sym_bool] = ACTIONS(590), + [anon_sym_ByteArray] = ACTIONS(590), + [anon_sym_felt252] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_break] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_default] = ACTIONS(590), + [anon_sym_if] = ACTIONS(590), + [anon_sym_extern] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(590), + [anon_sym_match] = ACTIONS(590), + [anon_sym_pub] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [sym_numeric_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_shortstring_literal] = ACTIONS(588), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [anon_sym_ref] = ACTIONS(590), + [sym_identifier] = ACTIONS(590), + [sym_super] = ACTIONS(590), [sym_line_comment] = ACTIONS(3), }, [91] = { - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_impl] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_trait] = ACTIONS(587), - [anon_sym_type] = ACTIONS(587), - [anon_sym_const] = ACTIONS(587), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(579), - [anon_sym_mod] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(587), - [anon_sym_enum] = ACTIONS(587), - [anon_sym_fn] = ACTIONS(587), - [anon_sym_let] = ACTIONS(587), - [anon_sym_use] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_u8] = ACTIONS(587), - [anon_sym_i8] = ACTIONS(587), - [anon_sym_u16] = ACTIONS(587), - [anon_sym_i16] = ACTIONS(587), - [anon_sym_u32] = ACTIONS(587), - [anon_sym_i32] = ACTIONS(587), - [anon_sym_u64] = ACTIONS(587), - [anon_sym_i64] = ACTIONS(587), - [anon_sym_u128] = ACTIONS(587), - [anon_sym_i128] = ACTIONS(587), - [anon_sym_usize] = ACTIONS(587), - [anon_sym_bool] = ACTIONS(587), - [anon_sym_ByteArray] = ACTIONS(587), - [anon_sym_felt252] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_LT_LT] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_PLUS_EQ] = ACTIONS(579), - [anon_sym_DASH_EQ] = ACTIONS(579), - [anon_sym_STAR_EQ] = ACTIONS(579), - [anon_sym_SLASH_EQ] = ACTIONS(579), - [anon_sym_PERCENT_EQ] = ACTIONS(579), - [anon_sym_EQ_EQ] = ACTIONS(579), - [anon_sym_BANG_EQ] = ACTIONS(579), - [anon_sym_GT_EQ] = ACTIONS(579), - [anon_sym_LT_EQ] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_QMARK] = ACTIONS(579), - [anon_sym_break] = ACTIONS(587), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_default] = ACTIONS(587), - [anon_sym_if] = ACTIONS(587), - [anon_sym_extern] = ACTIONS(587), - [anon_sym_loop] = ACTIONS(587), - [anon_sym_match] = ACTIONS(587), - [anon_sym_pub] = ACTIONS(587), - [anon_sym_return] = ACTIONS(587), - [anon_sym_while] = ACTIONS(587), - [sym_numeric_literal] = ACTIONS(587), - [aux_sym_string_literal_token1] = ACTIONS(585), - [sym_shortstring_literal] = ACTIONS(585), - [anon_sym_true] = ACTIONS(587), - [anon_sym_false] = ACTIONS(587), - [anon_sym_ref] = ACTIONS(587), - [sym_identifier] = ACTIONS(587), - [sym_super] = ACTIONS(587), - [sym_line_comment] = ACTIONS(3), - }, - [92] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(101), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(638), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1413), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(101), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(596), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18822,67 +18951,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [93] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(101), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(638), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1413), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(101), + [92] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(598), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18903,67 +19034,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [94] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(101), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(638), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1413), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(101), + [93] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_RPAREN] = ACTIONS(600), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -18984,67 +19117,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [95] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(101), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(638), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1413), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(101), + [94] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(602), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -19065,67 +19200,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [95] = { + [ts_builtin_sym_end] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_impl] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_trait] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_mod] = ACTIONS(606), + [anon_sym_struct] = ACTIONS(606), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(606), + [anon_sym_let] = ACTIONS(606), + [anon_sym_use] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_ByteArray] = ACTIONS(606), + [anon_sym_felt252] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_break] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_extern] = ACTIONS(606), + [anon_sym_loop] = ACTIONS(606), + [anon_sym_match] = ACTIONS(606), + [anon_sym_pub] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [sym_numeric_literal] = ACTIONS(606), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_shortstring_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [anon_sym_ref] = ACTIONS(606), + [sym_identifier] = ACTIONS(606), + [sym_super] = ACTIONS(606), [sym_line_comment] = ACTIONS(3), }, [96] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(101), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(638), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1413), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(101), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(608), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -19146,67 +19366,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [97] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(101), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(638), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1413), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(101), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(610), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -19227,62 +19449,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [98] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(380), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(588), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1242), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(380), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(104), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(639), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1425), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -19307,63 +19531,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [99] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(105), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(103), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), [sym_expression] = STATE(499), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(105), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(103), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(614), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19387,63 +19613,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [100] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(101), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(638), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1413), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(101), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(106), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(551), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(618), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19467,62 +19695,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [101] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(380), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(620), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1387), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(380), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(597), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1240), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -19547,142 +19777,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [102] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(380), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(586), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(380), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(622), - [anon_sym_u8] = ACTIONS(625), - [anon_sym_i8] = ACTIONS(625), - [anon_sym_u16] = ACTIONS(625), - [anon_sym_i16] = ACTIONS(625), - [anon_sym_u32] = ACTIONS(625), - [anon_sym_i32] = ACTIONS(625), - [anon_sym_u64] = ACTIONS(625), - [anon_sym_i64] = ACTIONS(625), - [anon_sym_u128] = ACTIONS(625), - [anon_sym_i128] = ACTIONS(625), - [anon_sym_usize] = ACTIONS(625), - [anon_sym_bool] = ACTIONS(625), - [anon_sym_ByteArray] = ACTIONS(625), - [anon_sym_felt252] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(628), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_AT] = ACTIONS(608), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(637), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(643), - [anon_sym_match] = ACTIONS(646), - [anon_sym_return] = ACTIONS(649), - [anon_sym_while] = ACTIONS(652), - [sym_numeric_literal] = ACTIONS(655), - [aux_sym_string_literal_token1] = ACTIONS(658), - [sym_shortstring_literal] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_ref] = ACTIONS(667), - [sym_identifier] = ACTIONS(670), - [sym_super] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_impl] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_trait] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_mod] = ACTIONS(606), + [anon_sym_struct] = ACTIONS(606), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(606), + [anon_sym_let] = ACTIONS(606), + [anon_sym_use] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_ByteArray] = ACTIONS(606), + [anon_sym_felt252] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(594), + [anon_sym_PIPE_PIPE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(594), + [anon_sym_DASH_EQ] = ACTIONS(594), + [anon_sym_STAR_EQ] = ACTIONS(594), + [anon_sym_SLASH_EQ] = ACTIONS(594), + [anon_sym_PERCENT_EQ] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_GT_EQ] = ACTIONS(594), + [anon_sym_LT_EQ] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(594), + [anon_sym_break] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_extern] = ACTIONS(606), + [anon_sym_loop] = ACTIONS(606), + [anon_sym_match] = ACTIONS(606), + [anon_sym_pub] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [sym_numeric_literal] = ACTIONS(606), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_shortstring_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [anon_sym_ref] = ACTIONS(606), + [sym_identifier] = ACTIONS(606), + [sym_super] = ACTIONS(606), [sym_line_comment] = ACTIONS(3), }, [103] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(380), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(577), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_named_argument] = STATE(1324), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(380), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(598), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(632), + [anon_sym_COMMA] = ACTIONS(632), + [anon_sym_COLON_COLON] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_u8] = ACTIONS(640), + [anon_sym_i8] = ACTIONS(640), + [anon_sym_u16] = ACTIONS(640), + [anon_sym_i16] = ACTIONS(640), + [anon_sym_u32] = ACTIONS(640), + [anon_sym_i32] = ACTIONS(640), + [anon_sym_u64] = ACTIONS(640), + [anon_sym_i64] = ACTIONS(640), + [anon_sym_u128] = ACTIONS(640), + [anon_sym_i128] = ACTIONS(640), + [anon_sym_usize] = ACTIONS(640), + [anon_sym_bool] = ACTIONS(640), + [anon_sym_ByteArray] = ACTIONS(640), + [anon_sym_felt252] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_break] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(649), + [anon_sym_default] = ACTIONS(652), + [anon_sym_if] = ACTIONS(655), + [anon_sym_loop] = ACTIONS(658), + [anon_sym_match] = ACTIONS(661), + [anon_sym_return] = ACTIONS(664), + [anon_sym_while] = ACTIONS(667), + [anon_sym_for] = ACTIONS(670), + [sym_numeric_literal] = ACTIONS(673), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_shortstring_literal] = ACTIONS(679), + [anon_sym_true] = ACTIONS(682), + [anon_sym_false] = ACTIONS(682), + [anon_sym_ref] = ACTIONS(685), + [sym_identifier] = ACTIONS(688), + [sym_super] = ACTIONS(691), + [sym_line_comment] = ACTIONS(3), + }, + [104] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(659), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1418), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -19707,143 +20023,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(571), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [104] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(380), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(583), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(380), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(622), - [anon_sym_u8] = ACTIONS(625), - [anon_sym_i8] = ACTIONS(625), - [anon_sym_u16] = ACTIONS(625), - [anon_sym_i16] = ACTIONS(625), - [anon_sym_u32] = ACTIONS(625), - [anon_sym_i32] = ACTIONS(625), - [anon_sym_u64] = ACTIONS(625), - [anon_sym_i64] = ACTIONS(625), - [anon_sym_u128] = ACTIONS(625), - [anon_sym_i128] = ACTIONS(625), - [anon_sym_usize] = ACTIONS(625), - [anon_sym_bool] = ACTIONS(625), - [anon_sym_ByteArray] = ACTIONS(625), - [anon_sym_felt252] = ACTIONS(625), - [anon_sym_DASH] = ACTIONS(628), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_AT] = ACTIONS(608), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(637), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(643), - [anon_sym_match] = ACTIONS(646), - [anon_sym_return] = ACTIONS(649), - [anon_sym_while] = ACTIONS(652), - [sym_numeric_literal] = ACTIONS(655), - [aux_sym_string_literal_token1] = ACTIONS(658), - [sym_shortstring_literal] = ACTIONS(661), - [anon_sym_true] = ACTIONS(664), - [anon_sym_false] = ACTIONS(664), - [anon_sym_ref] = ACTIONS(667), - [sym_identifier] = ACTIONS(670), - [sym_super] = ACTIONS(673), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [105] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(102), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(549), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(102), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(587), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_named_argument] = STATE(1346), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(678), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19867,63 +20105,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(582), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [106] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(107), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(518), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(107), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(591), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(632), + [anon_sym_COMMA] = ACTIONS(632), + [anon_sym_COLON_COLON] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_u8] = ACTIONS(640), + [anon_sym_i8] = ACTIONS(640), + [anon_sym_u16] = ACTIONS(640), + [anon_sym_i16] = ACTIONS(640), + [anon_sym_u32] = ACTIONS(640), + [anon_sym_i32] = ACTIONS(640), + [anon_sym_u64] = ACTIONS(640), + [anon_sym_i64] = ACTIONS(640), + [anon_sym_u128] = ACTIONS(640), + [anon_sym_i128] = ACTIONS(640), + [anon_sym_usize] = ACTIONS(640), + [anon_sym_bool] = ACTIONS(640), + [anon_sym_ByteArray] = ACTIONS(640), + [anon_sym_felt252] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_break] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(649), + [anon_sym_default] = ACTIONS(652), + [anon_sym_if] = ACTIONS(655), + [anon_sym_loop] = ACTIONS(658), + [anon_sym_match] = ACTIONS(661), + [anon_sym_return] = ACTIONS(664), + [anon_sym_while] = ACTIONS(667), + [anon_sym_for] = ACTIONS(670), + [sym_numeric_literal] = ACTIONS(673), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_shortstring_literal] = ACTIONS(679), + [anon_sym_true] = ACTIONS(682), + [anon_sym_false] = ACTIONS(682), + [anon_sym_ref] = ACTIONS(685), + [sym_identifier] = ACTIONS(688), + [sym_super] = ACTIONS(691), + [sym_line_comment] = ACTIONS(3), + }, + [107] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(100), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(542), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(100), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(696), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -19947,63 +20269,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [107] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(104), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(502), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(104), + [108] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(99), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(544), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(99), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(700), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20027,62 +20351,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [108] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(122), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(655), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(122), + [109] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(688), + [anon_sym_RBRACK] = ACTIONS(702), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20106,62 +20432,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [109] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(122), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(655), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(122), + [110] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_RBRACK] = ACTIONS(704), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20185,62 +20513,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [110] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(122), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(655), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(122), + [111] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(692), + [anon_sym_RBRACK] = ACTIONS(706), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20264,65 +20594,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [111] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(125), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(682), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(125), + [112] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_RBRACK] = ACTIONS(708), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(694), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20343,62 +20675,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [112] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(122), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(655), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(122), + [113] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(696), + [anon_sym_RBRACK] = ACTIONS(710), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20422,62 +20756,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [113] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(122), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(655), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(122), + [114] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(712), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20501,65 +20837,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [114] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(120), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(688), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(120), + [115] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(119), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(699), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(119), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(714), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20580,65 +20918,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [115] = { - [sym_macro_invocation] = STATE(457), + [116] = { + [sym_macro_invocation] = STATE(485), [sym_attribute_item] = STATE(122), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(655), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(635), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [aux_sym_enum_variant_list_repeat1] = STATE(122), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(702), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -20659,62 +20999,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [116] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(122), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(655), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(122), + [117] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(718), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20738,62 +21080,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [117] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(122), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(655), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(122), + [118] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_RBRACK] = ACTIONS(720), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), @@ -20817,60 +21161,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [118] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(122), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(655), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(122), + [119] = { + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(765), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -20895,138 +21241,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [119] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(721), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym__condition] = STATE(1421), - [sym_let_condition] = STATE(1421), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [120] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(380), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(737), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(380), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(129), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(631), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -21051,138 +21321,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [121] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(721), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym__condition] = STATE(1422), - [sym_let_condition] = STATE(1422), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1466), + [sym_let_condition] = STATE(1466), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [122] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(380), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(640), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(380), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(778), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), @@ -21207,609 +21481,546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [123] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(721), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym__condition] = STATE(1458), - [sym_let_condition] = STATE(1458), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1441), + [sym_let_condition] = STATE(1441), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [124] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(721), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym__condition] = STATE(1424), - [sym_let_condition] = STATE(1424), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1467), + [sym_let_condition] = STATE(1467), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [125] = { - [sym_macro_invocation] = STATE(457), - [sym_attribute_item] = STATE(380), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(757), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_enum_variant_list_repeat1] = STATE(380), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1432), + [sym_let_condition] = STATE(1432), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_POUND] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [126] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(721), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym__condition] = STATE(1426), - [sym_let_condition] = STATE(1426), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(756), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym__condition] = STATE(1542), + [sym_let_condition] = STATE(1542), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_let] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [127] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(721), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym__condition] = STATE(1427), - [sym_let_condition] = STATE(1427), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1438), + [sym_let_condition] = STATE(1438), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [128] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(721), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), [sym__condition] = STATE(1430), [sym_let_condition] = STATE(1430), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_let] = ACTIONS(708), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [129] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(743), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym__condition] = STATE(1565), - [sym_let_condition] = STATE(1565), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_let] = ACTIONS(712), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - }, - [130] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(665), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_tuple_expression_repeat1] = STATE(137), + [sym_macro_invocation] = STATE(485), + [sym_attribute_item] = STATE(373), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(674), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_enum_variant_list_repeat1] = STATE(373), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21830,63 +22041,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [130] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(749), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym__condition] = STATE(1464), + [sym_let_condition] = STATE(1464), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_let] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [131] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(654), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_tuple_expression_repeat1] = STATE(135), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(684), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(136), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(730), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21907,63 +22200,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [132] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(671), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_tuple_expression_repeat1] = STATE(134), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(677), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(136), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(732), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -21984,55 +22279,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [133] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(694), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(691), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [aux_sym_tuple_expression_repeat1] = STATE(138), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), @@ -22040,7 +22337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_RPAREN] = ACTIONS(734), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22061,63 +22358,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [134] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(694), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_tuple_expression_repeat1] = STATE(135), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(687), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(139), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_RPAREN] = ACTIONS(736), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22138,140 +22437,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [135] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(738), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_tuple_expression_repeat1] = STATE(135), - [anon_sym_LBRACE] = ACTIONS(724), - [anon_sym_BANG] = ACTIONS(727), - [anon_sym_LBRACK] = ACTIONS(730), - [anon_sym_COLON_COLON] = ACTIONS(733), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_u8] = ACTIONS(741), - [anon_sym_i8] = ACTIONS(741), - [anon_sym_u16] = ACTIONS(741), - [anon_sym_i16] = ACTIONS(741), - [anon_sym_u32] = ACTIONS(741), - [anon_sym_i32] = ACTIONS(741), - [anon_sym_u64] = ACTIONS(741), - [anon_sym_i64] = ACTIONS(741), - [anon_sym_u128] = ACTIONS(741), - [anon_sym_i128] = ACTIONS(741), - [anon_sym_usize] = ACTIONS(741), - [anon_sym_bool] = ACTIONS(741), - [anon_sym_ByteArray] = ACTIONS(741), - [anon_sym_felt252] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_AT] = ACTIONS(727), - [anon_sym_break] = ACTIONS(747), - [anon_sym_continue] = ACTIONS(750), - [anon_sym_default] = ACTIONS(753), - [anon_sym_if] = ACTIONS(756), - [anon_sym_loop] = ACTIONS(759), - [anon_sym_match] = ACTIONS(762), - [anon_sym_return] = ACTIONS(765), - [anon_sym_while] = ACTIONS(768), - [sym_numeric_literal] = ACTIONS(771), - [aux_sym_string_literal_token1] = ACTIONS(774), - [sym_shortstring_literal] = ACTIONS(777), - [anon_sym_true] = ACTIONS(780), - [anon_sym_false] = ACTIONS(780), - [anon_sym_ref] = ACTIONS(783), - [sym_identifier] = ACTIONS(786), - [sym_super] = ACTIONS(789), - [sym_line_comment] = ACTIONS(3), - }, - [136] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(612), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_tuple_expression_repeat1] = STATE(131), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(608), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(738), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22292,63 +22516,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [136] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(743), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(136), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_COLON_COLON] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_u8] = ACTIONS(757), + [anon_sym_i8] = ACTIONS(757), + [anon_sym_u16] = ACTIONS(757), + [anon_sym_i16] = ACTIONS(757), + [anon_sym_u32] = ACTIONS(757), + [anon_sym_i32] = ACTIONS(757), + [anon_sym_u64] = ACTIONS(757), + [anon_sym_i64] = ACTIONS(757), + [anon_sym_u128] = ACTIONS(757), + [anon_sym_i128] = ACTIONS(757), + [anon_sym_usize] = ACTIONS(757), + [anon_sym_bool] = ACTIONS(757), + [anon_sym_ByteArray] = ACTIONS(757), + [anon_sym_felt252] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_break] = ACTIONS(763), + [anon_sym_continue] = ACTIONS(766), + [anon_sym_default] = ACTIONS(769), + [anon_sym_if] = ACTIONS(772), + [anon_sym_loop] = ACTIONS(775), + [anon_sym_match] = ACTIONS(778), + [anon_sym_return] = ACTIONS(781), + [anon_sym_while] = ACTIONS(784), + [anon_sym_for] = ACTIONS(787), + [sym_numeric_literal] = ACTIONS(790), + [aux_sym_string_literal_token1] = ACTIONS(793), + [sym_shortstring_literal] = ACTIONS(796), + [anon_sym_true] = ACTIONS(799), + [anon_sym_false] = ACTIONS(799), + [anon_sym_ref] = ACTIONS(802), + [sym_identifier] = ACTIONS(805), + [sym_super] = ACTIONS(808), [sym_line_comment] = ACTIONS(3), }, [137] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(612), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_tuple_expression_repeat1] = STATE(135), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(611), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(131), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(811), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22369,63 +22674,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [138] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(698), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [aux_sym_tuple_expression_repeat1] = STATE(135), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(608), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(136), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(738), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22446,61 +22753,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [139] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(426), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(611), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [aux_sym_tuple_expression_repeat1] = STATE(136), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_RPAREN] = ACTIONS(811), [anon_sym_u8] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), [anon_sym_u16] = ACTIONS(41), @@ -22521,358 +22832,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_mutable_specifier] = ACTIONS(796), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [140] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(747), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_mutable_specifier] = ACTIONS(798), - [sym_super] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - }, - [141] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(426), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_mutable_specifier] = ACTIONS(800), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [142] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(754), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(446), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_mutable_specifier] = ACTIONS(813), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [143] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(724), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [141] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(764), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_mutable_specifier] = ACTIONS(815), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, - [144] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(732), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [142] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(446), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -22899,55 +23065,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_mutable_specifier] = ACTIONS(817), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [145] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(486), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [143] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(722), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [144] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(637), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -22974,55 +23220,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [146] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(705), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [145] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(475), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23049,55 +23297,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [147] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(731), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [146] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(471), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23124,55 +23374,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [148] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(634), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [147] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(453), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23199,55 +23451,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [149] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(484), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [148] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(782), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23274,56 +23528,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [149] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(710), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [150] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(709), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(255), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(255), - [sym_if_expression] = STATE(255), - [sym_match_expression] = STATE(255), - [sym_while_expression] = STATE(255), - [sym_loop_expression] = STATE(255), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(802), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(769), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -23349,55 +23682,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [151] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(487), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(729), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(819), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [152] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(432), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23424,205 +23836,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [152] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(437), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [153] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(679), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [154] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(472), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(742), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23649,55 +23913,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [155] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(771), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [154] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(478), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23724,55 +23990,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [156] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(476), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [155] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(479), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23799,55 +24067,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [156] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(711), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, [157] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(477), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(480), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23874,55 +24221,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [158] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(478), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(481), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -23949,55 +24298,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [159] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(440), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(482), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24024,355 +24375,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [160] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(641), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [161] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(707), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - }, - [162] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(768), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - }, - [163] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(726), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - }, - [164] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(437), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(436), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24399,55 +24452,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(812), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [165] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(474), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [161] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(738), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24474,55 +24529,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [166] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(717), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [162] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(492), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24549,205 +24606,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [167] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(648), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(255), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(255), - [sym_if_expression] = STATE(255), - [sym_match_expression] = STATE(255), - [sym_while_expression] = STATE(255), - [sym_loop_expression] = STATE(255), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [168] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(437), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [163] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(678), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(812), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [169] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(636), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [164] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(733), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24774,55 +24760,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [170] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(622), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [165] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(777), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24849,55 +24837,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [171] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(427), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [166] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(748), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -24924,280 +24914,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [172] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(752), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [167] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(715), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [173] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(744), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [168] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(709), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [174] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(769), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [169] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(714), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [175] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(469), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [170] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(698), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25224,131 +25222,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [176] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(740), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [177] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(621), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), + [171] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(730), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(339), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(339), + [sym_if_expression] = STATE(339), + [sym_match_expression] = STATE(339), + [sym_while_expression] = STATE(339), + [sym_for_expression] = STATE(339), + [sym_loop_expression] = STATE(339), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(821), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -25374,130 +25299,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), + [anon_sym_if] = ACTIONS(823), + [anon_sym_loop] = ACTIONS(825), + [anon_sym_match] = ACTIONS(827), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [178] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(700), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_while] = ACTIONS(829), + [anon_sym_for] = ACTIONS(831), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [179] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(763), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [172] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(751), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25524,130 +25376,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [180] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(767), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [181] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(723), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [173] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(750), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25674,205 +25453,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [182] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(766), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [183] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(733), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [184] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(629), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [174] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(661), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -25899,130 +25530,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [185] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(765), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - }, - [186] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(770), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [175] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(665), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26049,55 +25607,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [187] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(706), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [176] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(432), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26124,55 +25684,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(833), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [188] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(628), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [177] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(695), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26199,430 +25761,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [189] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(730), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [178] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(716), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [190] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(739), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [191] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(708), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [179] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(619), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u128] = ACTIONS(41), - [anon_sym_i128] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_ByteArray] = ACTIONS(41), - [anon_sym_felt252] = ACTIONS(41), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_TILDE] = ACTIONS(19), - [anon_sym_AT] = ACTIONS(19), - [anon_sym_break] = ACTIONS(45), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(61), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [192] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(762), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [193] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(729), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [180] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(669), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [194] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(745), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [181] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(444), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -26649,131 +26069,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [195] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(728), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [182] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(740), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), - [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - }, - [196] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(713), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(252), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(252), - [sym_if_expression] = STATE(252), - [sym_match_expression] = STATE(252), - [sym_while_expression] = STATE(252), - [sym_loop_expression] = STATE(252), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -26799,205 +26146,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), - [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [197] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(727), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [198] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(427), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [183] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(432), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [199] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(644), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [184] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(770), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27024,130 +26300,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [200] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(760), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [201] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(701), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [185] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(726), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27174,205 +26377,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), - [sym_line_comment] = ACTIONS(3), - }, - [202] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(750), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - }, - [203] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(758), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [204] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(421), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [186] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(739), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27399,55 +26454,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [205] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(764), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [187] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(683), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(316), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(316), + [sym_if_expression] = STATE(316), + [sym_match_expression] = STATE(316), + [sym_while_expression] = STATE(316), + [sym_for_expression] = STATE(316), + [sym_loop_expression] = STATE(316), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(823), + [anon_sym_loop] = ACTIONS(825), + [anon_sym_match] = ACTIONS(827), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(829), + [anon_sym_for] = ACTIONS(831), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [188] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(432), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(833), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [189] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(717), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [190] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(718), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [191] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(771), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [192] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(477), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27474,55 +26916,673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [206] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(761), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [193] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(734), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(316), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(316), + [sym_if_expression] = STATE(316), + [sym_match_expression] = STATE(316), + [sym_while_expression] = STATE(316), + [sym_for_expression] = STATE(316), + [sym_loop_expression] = STATE(316), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(823), + [anon_sym_loop] = ACTIONS(825), + [anon_sym_match] = ACTIONS(827), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(829), + [anon_sym_for] = ACTIONS(831), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [194] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(616), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [195] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(752), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [196] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(753), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [197] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(759), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [198] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(762), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [199] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(719), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [200] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(720), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [201] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(772), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27549,280 +27609,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [207] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(681), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [202] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(667), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [208] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1272), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(659), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(421), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [203] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(763), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [204] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(444), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(443), [anon_sym_LBRACK] = ACTIONS(23), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_ByteArray] = ACTIONS(434), - [anon_sym_felt252] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_break] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), [anon_sym_continue] = ACTIONS(47), - [anon_sym_default] = ACTIONS(440), - [anon_sym_if] = ACTIONS(229), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), - [anon_sym_return] = ACTIONS(442), + [anon_sym_return] = ACTIONS(449), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [sym_super] = ACTIONS(448), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), [sym_line_comment] = ACTIONS(3), }, - [209] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(756), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [205] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(727), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, - [210] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(699), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [206] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(773), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27849,55 +27994,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [211] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(725), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [207] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(754), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27924,55 +28071,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [212] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(753), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [208] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(768), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [209] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(774), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [210] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(629), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -27999,55 +28302,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [213] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(718), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [211] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(630), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28074,280 +28379,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [212] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(723), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [213] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(776), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [214] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(739), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(814), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(767), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, [215] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(710), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(729), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [216] = { - [sym_macro_invocation] = STATE(816), - [sym_generic_type_with_turbofish] = STATE(1212), - [sym__literal] = STATE(817), - [sym_negative_literal] = STATE(801), - [sym_string_literal] = STATE(801), - [sym_boolean_literal] = STATE(801), - [sym_scoped_identifier] = STATE(658), - [sym_scoped_type_identifier_in_expression_position] = STATE(1444), - [sym_expression] = STATE(751), - [sym_generic_function] = STATE(817), - [sym_tuple_expression] = STATE(817), - [sym_return_expression] = STATE(817), - [sym_struct_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_break_expression] = STATE(817), - [sym_continue_expression] = STATE(817), - [sym_index_expression] = STATE(817), - [sym_array_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_unit_expression] = STATE(817), - [sym_compound_assignment_expr] = STATE(817), - [sym__expression_ending_with_block] = STATE(817), - [sym_unary_expression] = STATE(817), - [sym_try_expression] = STATE(817), - [sym_field_expression] = STATE(722), - [sym_block] = STATE(817), - [sym_if_expression] = STATE(817), - [sym_match_expression] = STATE(817), - [sym_while_expression] = STATE(817), - [sym_loop_expression] = STATE(817), - [sym_binary_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_reference_expression] = STATE(817), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_COLON_COLON] = ACTIONS(390), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_ByteArray] = ACTIONS(394), - [anon_sym_felt252] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(714), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(410), - [anon_sym_return] = ACTIONS(412), - [anon_sym_while] = ACTIONS(414), - [sym_numeric_literal] = ACTIONS(416), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_shortstring_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [sym_super] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - }, - [217] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(437), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(779), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28374,55 +28764,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [217] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(766), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), [sym_line_comment] = ACTIONS(3), }, [218] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(734), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(671), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(339), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(339), + [sym_if_expression] = STATE(339), + [sym_match_expression] = STATE(339), + [sym_while_expression] = STATE(339), + [sym_for_expression] = STATE(339), + [sym_loop_expression] = STATE(339), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u128] = ACTIONS(41), + [anon_sym_i128] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_ByteArray] = ACTIONS(41), + [anon_sym_felt252] = ACTIONS(41), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_TILDE] = ACTIONS(19), + [anon_sym_AT] = ACTIONS(19), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_if] = ACTIONS(823), + [anon_sym_loop] = ACTIONS(825), + [anon_sym_match] = ACTIONS(827), + [anon_sym_return] = ACTIONS(61), + [anon_sym_while] = ACTIONS(829), + [anon_sym_for] = ACTIONS(831), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), + [sym_line_comment] = ACTIONS(3), + }, + [219] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(436), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [220] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(780), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28449,55 +29072,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [219] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(736), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(449), - [sym_if_expression] = STATE(449), - [sym_match_expression] = STATE(449), - [sym_while_expression] = STATE(449), - [sym_loop_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), + [221] = { + [sym_macro_invocation] = STATE(797), + [sym_generic_type_with_turbofish] = STATE(1219), + [sym__literal] = STATE(813), + [sym_negative_literal] = STATE(827), + [sym_string_literal] = STATE(827), + [sym_boolean_literal] = STATE(827), + [sym_scoped_identifier] = STATE(693), + [sym_scoped_type_identifier_in_expression_position] = STATE(1433), + [sym_expression] = STATE(758), + [sym_generic_function] = STATE(813), + [sym_tuple_expression] = STATE(813), + [sym_return_expression] = STATE(813), + [sym_struct_expression] = STATE(813), + [sym_assignment_expression] = STATE(813), + [sym_break_expression] = STATE(813), + [sym_continue_expression] = STATE(813), + [sym_index_expression] = STATE(813), + [sym_array_expression] = STATE(813), + [sym_parenthesized_expression] = STATE(813), + [sym_unit_expression] = STATE(813), + [sym_compound_assignment_expr] = STATE(813), + [sym__expression_ending_with_block] = STATE(813), + [sym_unary_expression] = STATE(813), + [sym_try_expression] = STATE(813), + [sym_field_expression] = STATE(732), + [sym_block] = STATE(813), + [sym_if_expression] = STATE(813), + [sym_match_expression] = STATE(813), + [sym_while_expression] = STATE(813), + [sym_for_expression] = STATE(813), + [sym_loop_expression] = STATE(813), + [sym_binary_expression] = STATE(813), + [sym_call_expression] = STATE(813), + [sym_reference_expression] = STATE(813), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_ByteArray] = ACTIONS(399), + [anon_sym_felt252] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_break] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_if] = ACTIONS(411), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [sym_numeric_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(425), + [sym_shortstring_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [anon_sym_ref] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [sym_super] = ACTIONS(435), + [sym_line_comment] = ACTIONS(3), + }, + [222] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1222), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(701), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(713), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_ByteArray] = ACTIONS(441), + [anon_sym_felt252] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_AT] = ACTIONS(443), + [anon_sym_break] = ACTIONS(445), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(447), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), + [anon_sym_return] = ACTIONS(449), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(451), + [sym_identifier] = ACTIONS(453), + [sym_super] = ACTIONS(455), + [sym_line_comment] = ACTIONS(3), + }, + [223] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(781), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), @@ -28524,56 +29303,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(229), + [anon_sym_if] = ACTIONS(236), [anon_sym_loop] = ACTIONS(55), [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), [anon_sym_while] = ACTIONS(63), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, - [220] = { - [sym_macro_invocation] = STATE(457), - [sym_generic_type_with_turbofish] = STATE(1277), - [sym__literal] = STATE(449), - [sym_negative_literal] = STATE(441), - [sym_string_literal] = STATE(441), - [sym_boolean_literal] = STATE(441), - [sym_scoped_identifier] = STATE(430), - [sym_scoped_type_identifier_in_expression_position] = STATE(1375), - [sym_expression] = STATE(680), - [sym_generic_function] = STATE(449), - [sym_tuple_expression] = STATE(449), - [sym_return_expression] = STATE(449), - [sym_struct_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_break_expression] = STATE(449), - [sym_continue_expression] = STATE(449), - [sym_index_expression] = STATE(449), - [sym_array_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_unit_expression] = STATE(449), - [sym_compound_assignment_expr] = STATE(449), - [sym__expression_ending_with_block] = STATE(252), - [sym_unary_expression] = STATE(449), - [sym_try_expression] = STATE(449), - [sym_field_expression] = STATE(434), - [sym_block] = STATE(252), - [sym_if_expression] = STATE(252), - [sym_match_expression] = STATE(252), - [sym_while_expression] = STATE(252), - [sym_loop_expression] = STATE(252), - [sym_binary_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_reference_expression] = STATE(449), - [anon_sym_LBRACE] = ACTIONS(802), + [224] = { + [sym_macro_invocation] = STATE(485), + [sym_generic_type_with_turbofish] = STATE(1173), + [sym__literal] = STATE(490), + [sym_negative_literal] = STATE(494), + [sym_string_literal] = STATE(494), + [sym_boolean_literal] = STATE(494), + [sym_scoped_identifier] = STATE(434), + [sym_scoped_type_identifier_in_expression_position] = STATE(1384), + [sym_expression] = STATE(737), + [sym_generic_function] = STATE(490), + [sym_tuple_expression] = STATE(490), + [sym_return_expression] = STATE(490), + [sym_struct_expression] = STATE(490), + [sym_assignment_expression] = STATE(490), + [sym_break_expression] = STATE(490), + [sym_continue_expression] = STATE(490), + [sym_index_expression] = STATE(490), + [sym_array_expression] = STATE(490), + [sym_parenthesized_expression] = STATE(490), + [sym_unit_expression] = STATE(490), + [sym_compound_assignment_expr] = STATE(490), + [sym__expression_ending_with_block] = STATE(490), + [sym_unary_expression] = STATE(490), + [sym_try_expression] = STATE(490), + [sym_field_expression] = STATE(429), + [sym_block] = STATE(490), + [sym_if_expression] = STATE(490), + [sym_match_expression] = STATE(490), + [sym_while_expression] = STATE(490), + [sym_for_expression] = STATE(490), + [sym_loop_expression] = STATE(490), + [sym_binary_expression] = STATE(490), + [sym_call_expression] = STATE(490), + [sym_reference_expression] = STATE(490), + [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(23), [anon_sym_COLON_COLON] = ACTIONS(37), @@ -28599,19 +29380,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_default] = ACTIONS(49), - [anon_sym_if] = ACTIONS(804), - [anon_sym_loop] = ACTIONS(806), - [anon_sym_match] = ACTIONS(808), + [anon_sym_if] = ACTIONS(236), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_match] = ACTIONS(57), [anon_sym_return] = ACTIONS(61), - [anon_sym_while] = ACTIONS(810), - [sym_numeric_literal] = ACTIONS(65), - [aux_sym_string_literal_token1] = ACTIONS(67), - [sym_shortstring_literal] = ACTIONS(69), - [anon_sym_true] = ACTIONS(71), - [anon_sym_false] = ACTIONS(71), - [anon_sym_ref] = ACTIONS(73), - [sym_identifier] = ACTIONS(75), - [sym_super] = ACTIONS(77), + [anon_sym_while] = ACTIONS(63), + [anon_sym_for] = ACTIONS(65), + [sym_numeric_literal] = ACTIONS(67), + [aux_sym_string_literal_token1] = ACTIONS(69), + [sym_shortstring_literal] = ACTIONS(71), + [anon_sym_true] = ACTIONS(73), + [anon_sym_false] = ACTIONS(73), + [anon_sym_ref] = ACTIONS(75), + [sym_identifier] = ACTIONS(77), + [sym_super] = ACTIONS(79), [sym_line_comment] = ACTIONS(3), }, }; @@ -28620,7 +29402,7 @@ static const uint16_t ts_small_parse_table[] = { [0] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(525), 23, + ACTIONS(544), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28644,7 +29426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(527), 39, + ACTIONS(546), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28687,7 +29469,7 @@ static const uint16_t ts_small_parse_table[] = { [70] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(537), 23, + ACTIONS(489), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28711,7 +29493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(539), 39, + ACTIONS(491), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28754,7 +29536,7 @@ static const uint16_t ts_small_parse_table[] = { [140] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(549), 23, + ACTIONS(508), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28778,7 +29560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(551), 39, + ACTIONS(510), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28821,7 +29603,7 @@ static const uint16_t ts_small_parse_table[] = { [210] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(501), 23, + ACTIONS(540), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28845,7 +29627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(503), 39, + ACTIONS(542), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28888,7 +29670,7 @@ static const uint16_t ts_small_parse_table[] = { [280] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(505), 23, + ACTIONS(560), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28912,7 +29694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(507), 39, + ACTIONS(562), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -28955,7 +29737,7 @@ static const uint16_t ts_small_parse_table[] = { [350] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(533), 23, + ACTIONS(524), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -28979,7 +29761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(535), 39, + ACTIONS(526), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -29022,7 +29804,7 @@ static const uint16_t ts_small_parse_table[] = { [420] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(497), 23, + ACTIONS(536), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, @@ -29046,7 +29828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(499), 39, + ACTIONS(538), 39, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -29095,49 +29877,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(59), 1, anon_sym_pub, - ACTIONS(816), 1, + ACTIONS(835), 1, anon_sym_RBRACE, - ACTIONS(818), 1, + ACTIONS(837), 1, anon_sym_impl, - ACTIONS(820), 1, + ACTIONS(839), 1, anon_sym_SEMI, - ACTIONS(822), 1, + ACTIONS(841), 1, anon_sym_trait, - ACTIONS(824), 1, + ACTIONS(843), 1, anon_sym_type, - ACTIONS(826), 1, + ACTIONS(845), 1, anon_sym_const, - ACTIONS(828), 1, + ACTIONS(847), 1, anon_sym_POUND, - ACTIONS(830), 1, + ACTIONS(849), 1, anon_sym_mod, - ACTIONS(832), 1, + ACTIONS(851), 1, anon_sym_struct, - ACTIONS(834), 1, + ACTIONS(853), 1, anon_sym_enum, - ACTIONS(836), 1, + ACTIONS(855), 1, anon_sym_let, - ACTIONS(838), 1, + ACTIONS(857), 1, anon_sym_use, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(844), 1, + ACTIONS(863), 1, anon_sym_default, - ACTIONS(846), 1, + ACTIONS(865), 1, sym_identifier, - STATE(543), 1, + STATE(518), 1, sym_extern_type, - STATE(861), 1, + STATE(876), 1, sym_visibility_modifier, - STATE(1211), 1, - sym_function, - STATE(1275), 1, + STATE(1217), 1, sym_extern, - STATE(1379), 1, + STATE(1218), 1, + sym_function, + STATE(1434), 1, sym_scoped_identifier, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(842), 15, + ACTIONS(861), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29153,7 +29935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(231), 19, + STATE(240), 19, sym_impl_item, sym_trait_item, sym_associated_type, @@ -29182,49 +29964,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(59), 1, anon_sym_pub, - ACTIONS(818), 1, + ACTIONS(837), 1, anon_sym_impl, - ACTIONS(820), 1, + ACTIONS(839), 1, anon_sym_SEMI, - ACTIONS(822), 1, + ACTIONS(841), 1, anon_sym_trait, - ACTIONS(824), 1, + ACTIONS(843), 1, anon_sym_type, - ACTIONS(826), 1, + ACTIONS(845), 1, anon_sym_const, - ACTIONS(828), 1, + ACTIONS(847), 1, anon_sym_POUND, - ACTIONS(830), 1, + ACTIONS(849), 1, anon_sym_mod, - ACTIONS(832), 1, + ACTIONS(851), 1, anon_sym_struct, - ACTIONS(834), 1, + ACTIONS(853), 1, anon_sym_enum, - ACTIONS(836), 1, + ACTIONS(855), 1, anon_sym_let, - ACTIONS(838), 1, + ACTIONS(857), 1, anon_sym_use, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(844), 1, + ACTIONS(863), 1, anon_sym_default, - ACTIONS(846), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(848), 1, + ACTIONS(867), 1, anon_sym_RBRACE, - STATE(543), 1, + STATE(518), 1, sym_extern_type, - STATE(861), 1, + STATE(876), 1, sym_visibility_modifier, - STATE(1211), 1, - sym_function, - STATE(1275), 1, + STATE(1217), 1, sym_extern, - STATE(1379), 1, + STATE(1218), 1, + sym_function, + STATE(1434), 1, sym_scoped_identifier, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(842), 15, + ACTIONS(861), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29240,7 +30022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(231), 19, + STATE(240), 19, sym_impl_item, sym_trait_item, sym_associated_type, @@ -29260,42 +30042,38 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [718] = 5, + [718] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(850), 1, - anon_sym_else, - STATE(248), 1, - sym_else_clause, - ACTIONS(557), 24, + ACTIONS(560), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, + anon_sym_GT, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(559), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(562), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29310,73 +30088,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_break, + anon_sym_continue, anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [788] = 27, + [784] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(852), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(31), 1, + anon_sym_fn, + ACTIONS(53), 1, + anon_sym_extern, + ACTIONS(59), 1, + anon_sym_pub, + ACTIONS(837), 1, anon_sym_impl, - ACTIONS(857), 1, + ACTIONS(839), 1, anon_sym_SEMI, - ACTIONS(860), 1, + ACTIONS(841), 1, anon_sym_trait, - ACTIONS(863), 1, + ACTIONS(843), 1, anon_sym_type, - ACTIONS(866), 1, + ACTIONS(845), 1, anon_sym_const, - ACTIONS(869), 1, + ACTIONS(847), 1, anon_sym_POUND, - ACTIONS(872), 1, + ACTIONS(849), 1, anon_sym_mod, - ACTIONS(875), 1, + ACTIONS(851), 1, anon_sym_struct, - ACTIONS(878), 1, + ACTIONS(853), 1, anon_sym_enum, - ACTIONS(881), 1, - anon_sym_fn, - ACTIONS(884), 1, + ACTIONS(855), 1, anon_sym_let, - ACTIONS(887), 1, + ACTIONS(857), 1, anon_sym_use, - ACTIONS(890), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(896), 1, + ACTIONS(863), 1, anon_sym_default, - ACTIONS(899), 1, - anon_sym_extern, - ACTIONS(902), 1, - anon_sym_pub, - ACTIONS(905), 1, + ACTIONS(865), 1, sym_identifier, - STATE(543), 1, + ACTIONS(869), 1, + anon_sym_RBRACE, + STATE(518), 1, sym_extern_type, - STATE(861), 1, + STATE(876), 1, sym_visibility_modifier, - STATE(1211), 1, - sym_function, - STATE(1275), 1, + STATE(1217), 1, sym_extern, - STATE(1379), 1, + STATE(1218), 1, + sym_function, + STATE(1434), 1, sym_scoped_identifier, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(893), 15, + ACTIONS(861), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29392,7 +30172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(231), 19, + STATE(232), 19, sym_impl_item, sym_trait_item, sym_associated_type, @@ -29412,78 +30192,141 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [902] = 34, + [898] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(908), 1, + ACTIONS(536), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, - ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(912), 1, anon_sym_COMMA, - ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(916), 1, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(918), 1, + anon_sym_GT, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(538), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [964] = 34, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(871), 1, + anon_sym_POUND, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(875), 1, + anon_sym_COMMA, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(879), 1, + anon_sym_LPAREN, + ACTIONS(881), 1, anon_sym__, - ACTIONS(920), 1, + ACTIONS(883), 1, anon_sym_RPAREN, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(930), 1, + ACTIONS(893), 1, anon_sym_default, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(940), 1, + ACTIONS(903), 1, anon_sym_ref, - ACTIONS(942), 1, + ACTIONS(905), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(907), 1, sym_mutable_specifier, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - STATE(341), 1, + STATE(343), 1, sym_attribute_item, - STATE(393), 1, + STATE(383), 1, sym_ref_specifier, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(974), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(1047), 1, + STATE(1038), 1, sym_scoped_identifier, - STATE(1117), 1, - sym_macro_invocation, - STATE(1118), 1, + STATE(1152), 1, sym_generic_type_with_turbofish, - STATE(1446), 1, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, sym__pattern, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1214), 2, + STATE(1183), 2, sym_parameter, sym__type, - STATE(895), 4, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(956), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -29491,7 +30334,53 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(922), 14, + ACTIONS(885), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [1092] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(540), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(542), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29506,7 +30395,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [1030] = 27, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [1158] = 27, ACTIONS(3), 1, sym_line_comment, ACTIONS(31), 1, @@ -29515,49 +30421,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(59), 1, anon_sym_pub, - ACTIONS(818), 1, + ACTIONS(837), 1, anon_sym_impl, - ACTIONS(820), 1, + ACTIONS(839), 1, anon_sym_SEMI, - ACTIONS(822), 1, + ACTIONS(841), 1, anon_sym_trait, - ACTIONS(824), 1, + ACTIONS(843), 1, anon_sym_type, - ACTIONS(826), 1, + ACTIONS(845), 1, anon_sym_const, - ACTIONS(828), 1, + ACTIONS(847), 1, anon_sym_POUND, - ACTIONS(830), 1, + ACTIONS(849), 1, anon_sym_mod, - ACTIONS(832), 1, + ACTIONS(851), 1, anon_sym_struct, - ACTIONS(834), 1, + ACTIONS(853), 1, anon_sym_enum, - ACTIONS(836), 1, + ACTIONS(855), 1, anon_sym_let, - ACTIONS(838), 1, + ACTIONS(857), 1, anon_sym_use, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(844), 1, + ACTIONS(863), 1, anon_sym_default, - ACTIONS(846), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(948), 1, + ACTIONS(911), 1, anon_sym_RBRACE, - STATE(543), 1, + STATE(518), 1, sym_extern_type, - STATE(861), 1, + STATE(876), 1, sym_visibility_modifier, - STATE(1211), 1, - sym_function, - STATE(1275), 1, + STATE(1217), 1, sym_extern, - STATE(1379), 1, + STATE(1218), 1, + sym_function, + STATE(1434), 1, sym_scoped_identifier, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(842), 15, + ACTIONS(861), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29573,7 +30479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(228), 19, + STATE(233), 19, sym_impl_item, sym_trait_item, sym_associated_type, @@ -29593,58 +30499,58 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [1144] = 27, + [1272] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(31), 1, - anon_sym_fn, - ACTIONS(53), 1, - anon_sym_extern, - ACTIONS(59), 1, - anon_sym_pub, - ACTIONS(818), 1, + ACTIONS(913), 1, + anon_sym_RBRACE, + ACTIONS(915), 1, anon_sym_impl, - ACTIONS(820), 1, + ACTIONS(918), 1, anon_sym_SEMI, - ACTIONS(822), 1, + ACTIONS(921), 1, anon_sym_trait, - ACTIONS(824), 1, + ACTIONS(924), 1, anon_sym_type, - ACTIONS(826), 1, + ACTIONS(927), 1, anon_sym_const, - ACTIONS(828), 1, + ACTIONS(930), 1, anon_sym_POUND, - ACTIONS(830), 1, + ACTIONS(933), 1, anon_sym_mod, - ACTIONS(832), 1, + ACTIONS(936), 1, anon_sym_struct, - ACTIONS(834), 1, + ACTIONS(939), 1, anon_sym_enum, - ACTIONS(836), 1, + ACTIONS(942), 1, + anon_sym_fn, + ACTIONS(945), 1, anon_sym_let, - ACTIONS(838), 1, + ACTIONS(948), 1, anon_sym_use, - ACTIONS(840), 1, + ACTIONS(951), 1, anon_sym_COLON_COLON, - ACTIONS(844), 1, + ACTIONS(957), 1, anon_sym_default, - ACTIONS(846), 1, + ACTIONS(960), 1, + anon_sym_extern, + ACTIONS(963), 1, + anon_sym_pub, + ACTIONS(966), 1, sym_identifier, - ACTIONS(950), 1, - anon_sym_RBRACE, - STATE(543), 1, + STATE(518), 1, sym_extern_type, - STATE(861), 1, + STATE(876), 1, sym_visibility_modifier, - STATE(1211), 1, - sym_function, - STATE(1275), 1, + STATE(1217), 1, sym_extern, - STATE(1379), 1, + STATE(1218), 1, + sym_function, + STATE(1434), 1, sym_scoped_identifier, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(842), 15, + ACTIONS(954), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29660,7 +30566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - STATE(229), 19, + STATE(240), 19, sym_impl_item, sym_trait_item, sym_associated_type, @@ -29680,38 +30586,42 @@ static const uint16_t ts_small_parse_table[] = { sym_let_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [1258] = 3, + [1386] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(505), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(969), 1, + anon_sym_else, + STATE(254), 1, + sym_else_clause, + ACTIONS(568), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(507), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(570), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29726,54 +30636,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [1323] = 3, + [1456] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(533), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(536), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_GT, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(535), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(538), 33, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -29788,210 +30697,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [1388] = 33, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(908), 1, - anon_sym_POUND, - ACTIONS(910), 1, - anon_sym_LBRACK, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(916), 1, - anon_sym_LPAREN, - ACTIONS(924), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(926), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(930), 1, anon_sym_default, - ACTIONS(932), 1, sym_numeric_literal, - ACTIONS(934), 1, - aux_sym_string_literal_token1, - ACTIONS(936), 1, - sym_shortstring_literal, - ACTIONS(940), 1, - anon_sym_ref, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - sym_mutable_specifier, - ACTIONS(946), 1, - sym_super, - ACTIONS(952), 1, - anon_sym__, - ACTIONS(954), 1, - anon_sym_RPAREN, - STATE(339), 1, - sym_attribute_item, - STATE(393), 1, - sym_ref_specifier, - STATE(871), 1, - sym_generic_type, - STATE(935), 1, - sym_negative_literal, - STATE(974), 1, - sym_scoped_type_identifier, - STATE(1047), 1, - sym_scoped_identifier, - STATE(1117), 1, - sym_macro_invocation, - STATE(1118), 1, - sym_generic_type_with_turbofish, - STATE(1446), 1, - sym__pattern, - ACTIONS(938), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1405), 2, - sym_parameter, - sym__type, - STATE(895), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(956), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(922), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [1513] = 33, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(908), 1, - anon_sym_POUND, - ACTIONS(910), 1, - anon_sym_LBRACK, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(916), 1, - anon_sym_LPAREN, - ACTIONS(924), 1, - anon_sym_DASH, - ACTIONS(926), 1, - anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(930), 1, - anon_sym_default, - ACTIONS(932), 1, - sym_numeric_literal, - ACTIONS(934), 1, - aux_sym_string_literal_token1, - ACTIONS(936), 1, - sym_shortstring_literal, - ACTIONS(940), 1, - anon_sym_ref, - ACTIONS(942), 1, + anon_sym_else, sym_identifier, - ACTIONS(944), 1, sym_mutable_specifier, - ACTIONS(946), 1, sym_super, - ACTIONS(952), 1, - anon_sym__, - ACTIONS(956), 1, - anon_sym_RPAREN, - STATE(339), 1, - sym_attribute_item, - STATE(393), 1, - sym_ref_specifier, - STATE(871), 1, - sym_generic_type, - STATE(935), 1, - sym_negative_literal, - STATE(974), 1, - sym_scoped_type_identifier, - STATE(1047), 1, - sym_scoped_identifier, - STATE(1117), 1, - sym_macro_invocation, - STATE(1118), 1, - sym_generic_type_with_turbofish, - STATE(1446), 1, - sym__pattern, - ACTIONS(938), 2, - anon_sym_true, - anon_sym_false, - STATE(951), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1405), 2, - sym_parameter, - sym__type, - STATE(895), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(956), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(922), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [1638] = 3, + [1521] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(525), 24, + ACTIONS(560), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30016,7 +30741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(527), 33, + ACTIONS(562), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30050,10 +30775,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [1703] = 3, + [1586] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(505), 24, + ACTIONS(540), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30078,7 +30803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(507), 33, + ACTIONS(542), 33, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30112,38 +30837,84 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [1768] = 3, + [1651] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(525), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, + ACTIONS(871), 1, anon_sym_POUND, + ACTIONS(873), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(877), 1, anon_sym_COLON_COLON, - anon_sym_STAR, + ACTIONS(879), 1, anon_sym_LPAREN, - anon_sym_GT, + ACTIONS(887), 1, anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(891), 1, anon_sym_AT, + ACTIONS(893), 1, + anon_sym_default, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, aux_sym_string_literal_token1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(527), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(903), 1, + anon_sym_ref, + ACTIONS(905), 1, + sym_identifier, + ACTIONS(907), 1, + sym_mutable_specifier, + ACTIONS(909), 1, + sym_super, + ACTIONS(971), 1, + anon_sym__, + ACTIONS(973), 1, + anon_sym_RPAREN, + STATE(345), 1, + sym_attribute_item, + STATE(383), 1, + sym_ref_specifier, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, + sym_negative_literal, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(1038), 1, + sym_scoped_identifier, + STATE(1152), 1, + sym_generic_type_with_turbofish, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, + sym__pattern, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(925), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1482), 2, + sym_parameter, + sym__type, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(885), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30158,54 +30929,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [1833] = 3, + [1776] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(533), 24, - anon_sym_RBRACE, + ACTIONS(871), 1, anon_sym_POUND, + ACTIONS(873), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(877), 1, anon_sym_COLON_COLON, + ACTIONS(879), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(893), 1, + anon_sym_default, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, aux_sym_string_literal_token1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(535), 33, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(903), 1, + anon_sym_ref, + ACTIONS(905), 1, + sym_identifier, + ACTIONS(907), 1, + sym_mutable_specifier, + ACTIONS(909), 1, + sym_super, + ACTIONS(971), 1, anon_sym__, + ACTIONS(975), 1, + anon_sym_RPAREN, + STATE(345), 1, + sym_attribute_item, + STATE(383), 1, + sym_ref_specifier, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, + sym_negative_literal, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(1038), 1, + sym_scoped_identifier, + STATE(1152), 1, + sym_generic_type_with_turbofish, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, + sym__pattern, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(925), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1482), 2, + sym_parameter, + sym__type, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(885), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30220,92 +31021,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_else, - sym_identifier, - sym_mutable_specifier, - sym_super, - [1898] = 33, + [1901] = 33, ACTIONS(3), 1, sym_line_comment, - ACTIONS(908), 1, + ACTIONS(871), 1, anon_sym_POUND, - ACTIONS(910), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(916), 1, + ACTIONS(879), 1, anon_sym_LPAREN, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(930), 1, + ACTIONS(893), 1, anon_sym_default, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(940), 1, + ACTIONS(903), 1, anon_sym_ref, - ACTIONS(942), 1, + ACTIONS(905), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(907), 1, sym_mutable_specifier, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(952), 1, + ACTIONS(971), 1, anon_sym__, - ACTIONS(958), 1, + ACTIONS(977), 1, anon_sym_RPAREN, - STATE(339), 1, + STATE(345), 1, sym_attribute_item, - STATE(393), 1, + STATE(383), 1, sym_ref_specifier, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(974), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(1047), 1, + STATE(1038), 1, sym_scoped_identifier, - STATE(1117), 1, - sym_macro_invocation, - STATE(1118), 1, + STATE(1152), 1, sym_generic_type_with_turbofish, - STATE(1446), 1, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, sym__pattern, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1405), 2, + STATE(1482), 2, sym_parameter, sym__type, - STATE(895), 4, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(956), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -30313,7 +31098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(922), 14, + ACTIONS(885), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30328,38 +31113,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [2023] = 3, + [2026] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(553), 24, + ACTIONS(979), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(555), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(981), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30374,53 +31157,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_break, + anon_sym_continue, anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2087] = 3, + [2090] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(521), 24, + ACTIONS(983), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(523), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(985), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30435,53 +31218,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_break, + anon_sym_continue, anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2151] = 3, + [2154] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(513), 24, + ACTIONS(987), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(515), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(989), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30496,53 +31279,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_break, + anon_sym_continue, anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2215] = 3, + [2218] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(533), 24, + ACTIONS(991), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(535), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(993), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30557,53 +31340,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_break, + anon_sym_continue, anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2279] = 3, + [2282] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(529), 24, + ACTIONS(995), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(531), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(997), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30618,53 +31401,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_break, + anon_sym_continue, anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2343] = 3, + [2346] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(509), 24, + ACTIONS(999), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(511), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(1001), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30679,25 +31462,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_break, + anon_sym_continue, anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2407] = 3, + [2410] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(545), 24, + ACTIONS(564), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30722,7 +31507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(547), 32, + ACTIONS(566), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30755,10 +31540,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2471] = 3, + [2474] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(541), 24, + ACTIONS(556), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30783,7 +31568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(543), 32, + ACTIONS(558), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30816,46 +31601,36 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2535] = 5, + [2538] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(960), 6, + ACTIONS(1003), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(577), 8, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - ACTIONS(579), 18, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(962), 24, - anon_sym__, + ACTIONS(1005), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -30870,19 +31645,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_DASH, - anon_sym_PIPE, + anon_sym_break, + anon_sym_continue, anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2603] = 3, + [2602] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(517), 24, + ACTIONS(520), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30907,7 +31690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(519), 32, + ACTIONS(522), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -30940,10 +31723,10 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2667] = 3, + [2666] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(505), 24, + ACTIONS(528), 24, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -30968,7 +31751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(507), 32, + ACTIONS(530), 32, anon_sym_EQ, anon_sym_STAR, anon_sym__, @@ -31001,191 +31784,36 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [2731] = 5, + [2730] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(964), 6, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(577), 8, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - ACTIONS(579), 18, + ACTIONS(1007), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(966), 24, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [2799] = 32, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(908), 1, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, - ACTIONS(910), 1, anon_sym_LBRACK, - ACTIONS(914), 1, anon_sym_COLON_COLON, - ACTIONS(916), 1, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(926), 1, - anon_sym_PIPE, - ACTIONS(928), 1, + anon_sym_TILDE, anon_sym_AT, - ACTIONS(930), 1, - anon_sym_default, - ACTIONS(932), 1, - sym_numeric_literal, - ACTIONS(934), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(940), 1, - anon_sym_ref, - ACTIONS(942), 1, - sym_identifier, - ACTIONS(944), 1, - sym_mutable_specifier, - ACTIONS(946), 1, - sym_super, - ACTIONS(952), 1, - anon_sym__, - STATE(339), 1, - sym_attribute_item, - STATE(393), 1, - sym_ref_specifier, - STATE(871), 1, - sym_generic_type, - STATE(935), 1, - sym_negative_literal, - STATE(974), 1, - sym_scoped_type_identifier, - STATE(1047), 1, - sym_scoped_identifier, - STATE(1117), 1, - sym_macro_invocation, - STATE(1118), 1, - sym_generic_type_with_turbofish, - STATE(1446), 1, - sym__pattern, - ACTIONS(938), 2, - anon_sym_true, - anon_sym_false, - STATE(951), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1405), 2, - sym_parameter, - sym__type, - STATE(895), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(956), 7, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(922), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [2921] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(525), 24, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(527), 32, - anon_sym_EQ, - anon_sym_STAR, - anon_sym__, + ACTIONS(1009), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -31200,25 +31828,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_break, + anon_sym_continue, anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, + anon_sym_ref, sym_identifier, - sym_mutable_specifier, sym_super, - [2985] = 3, + [2794] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(968), 15, + ACTIONS(1011), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31234,7 +31864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(970), 40, + ACTIONS(1013), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31269,16 +31899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3048] = 3, + [2858] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(972), 15, + ACTIONS(1015), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31294,7 +31925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(974), 40, + ACTIONS(1017), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31329,16 +31960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3111] = 3, + [2922] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(976), 15, + ACTIONS(1019), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31354,7 +31986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(978), 40, + ACTIONS(1021), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31389,42 +32021,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3174] = 3, + [2986] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(980), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(516), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(518), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [3050] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(552), 24, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(982), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(554), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -31439,26 +32135,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [3237] = 3, + [3114] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(984), 15, + ACTIONS(1023), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31474,7 +32169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(986), 40, + ACTIONS(1025), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31509,16 +32204,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3300] = 3, + [3178] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(988), 15, + ACTIONS(1027), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31534,7 +32230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(990), 40, + ACTIONS(1029), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31569,16 +32265,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3363] = 3, + [3242] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(992), 15, + ACTIONS(1031), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31594,7 +32291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(994), 40, + ACTIONS(1033), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31629,16 +32326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3426] = 3, + [3306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(996), 15, + ACTIONS(1035), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31654,7 +32352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(998), 40, + ACTIONS(1037), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31689,16 +32387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3489] = 3, + [3370] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1000), 15, + ACTIONS(1039), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31714,7 +32413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1002), 40, + ACTIONS(1041), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31749,16 +32448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3552] = 3, + [3434] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1004), 15, + ACTIONS(1043), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31774,7 +32474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1006), 40, + ACTIONS(1045), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31809,16 +32509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3615] = 3, + [3498] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1008), 15, + ACTIONS(1047), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31834,7 +32535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1010), 40, + ACTIONS(1049), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31869,16 +32570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3678] = 3, + [3562] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1012), 15, + ACTIONS(1051), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31894,7 +32596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1014), 40, + ACTIONS(1053), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31929,16 +32631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3741] = 3, + [3626] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1016), 15, + ACTIONS(1055), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31954,7 +32657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1018), 40, + ACTIONS(1057), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -31989,16 +32692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3804] = 3, + [3690] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1020), 15, + ACTIONS(1059), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32014,7 +32718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1022), 40, + ACTIONS(1061), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32049,16 +32753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3867] = 3, + [3754] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1024), 15, + ACTIONS(1063), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32074,7 +32779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1026), 40, + ACTIONS(1065), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32109,16 +32814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3930] = 3, + [3818] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1028), 15, + ACTIONS(1067), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32134,7 +32840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1030), 40, + ACTIONS(1069), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32169,16 +32875,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [3993] = 3, + [3882] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1032), 15, + ACTIONS(1071), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32194,7 +32901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1034), 40, + ACTIONS(1073), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32229,16 +32936,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4056] = 3, + [3946] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1036), 15, + ACTIONS(1075), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32254,7 +32962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1038), 40, + ACTIONS(1077), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32289,16 +32997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4119] = 3, + [4010] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1040), 15, + ACTIONS(1079), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32314,7 +33023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1042), 40, + ACTIONS(1081), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32349,16 +33058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4182] = 3, + [4074] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1044), 15, + ACTIONS(1083), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32374,7 +33084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1046), 40, + ACTIONS(1085), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32409,16 +33119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4245] = 3, + [4138] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1048), 15, + ACTIONS(1087), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32434,7 +33145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1050), 40, + ACTIONS(1089), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32469,16 +33180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4308] = 3, + [4202] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1052), 15, + ACTIONS(1091), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32494,7 +33206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1054), 40, + ACTIONS(1093), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32529,16 +33241,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4371] = 3, + [4266] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1056), 15, + ACTIONS(1095), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32554,7 +33267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1058), 40, + ACTIONS(1097), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32589,16 +33302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4434] = 3, + [4330] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1060), 15, + ACTIONS(1099), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32614,7 +33328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1062), 40, + ACTIONS(1101), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32649,16 +33363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4497] = 3, + [4394] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1064), 15, + ACTIONS(1103), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32674,7 +33389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1066), 40, + ACTIONS(1105), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32709,102 +33424,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4560] = 3, + [4458] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1068), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(512), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1070), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [4623] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1072), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(514), 32, + anon_sym_EQ, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1074), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -32819,86 +33477,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [4686] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1076), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1078), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [4749] = 3, + [4522] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1080), 15, + ACTIONS(1107), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32914,7 +33511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1082), 40, + ACTIONS(1109), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -32949,16 +33546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4812] = 3, + [4586] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1084), 15, + ACTIONS(1111), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32974,7 +33572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1086), 40, + ACTIONS(1113), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33009,16 +33607,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4875] = 3, + [4650] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1088), 15, + ACTIONS(1115), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33034,7 +33633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1090), 40, + ACTIONS(1117), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33069,16 +33668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [4938] = 3, + [4714] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1092), 15, + ACTIONS(1119), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33094,7 +33694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1094), 40, + ACTIONS(1121), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33129,16 +33729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5001] = 3, + [4778] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1096), 15, + ACTIONS(1123), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33154,7 +33755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1098), 40, + ACTIONS(1125), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33189,16 +33790,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5064] = 3, + [4842] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1100), 15, + ACTIONS(1127), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33214,7 +33816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1102), 40, + ACTIONS(1129), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33249,16 +33851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5127] = 3, + [4906] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1104), 15, + ACTIONS(1131), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33274,7 +33877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1106), 40, + ACTIONS(1133), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33309,102 +33912,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5190] = 3, + [4970] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1108), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(532), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1110), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [5253] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1112), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(534), 32, + anon_sym_EQ, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1114), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -33419,26 +33965,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [5316] = 3, + [5034] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1116), 15, + ACTIONS(1135), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33454,7 +33999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1118), 40, + ACTIONS(1137), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33489,16 +34034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5379] = 3, + [5098] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1120), 15, + ACTIONS(1139), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33514,7 +34060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1122), 40, + ACTIONS(1141), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33549,102 +34095,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5442] = 3, + [5162] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1124), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(548), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1126), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [5505] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1128), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(550), 32, + anon_sym_EQ, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1130), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -33659,52 +34148,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [5568] = 3, + [5226] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1132), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(540), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1134), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(542), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -33719,26 +34209,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [5631] = 3, + [5290] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1136), 15, + ACTIONS(1143), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33754,7 +34243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1138), 40, + ACTIONS(1145), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33789,16 +34278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5694] = 3, + [5354] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1140), 15, + ACTIONS(1147), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33814,7 +34304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1142), 40, + ACTIONS(1149), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33849,16 +34339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5757] = 3, + [5418] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1144), 15, + ACTIONS(1151), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33874,7 +34365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1146), 40, + ACTIONS(1153), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33909,16 +34400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5820] = 3, + [5482] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1148), 15, + ACTIONS(1155), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33934,7 +34426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1150), 40, + ACTIONS(1157), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -33969,16 +34461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5883] = 3, + [5546] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1152), 15, + ACTIONS(1159), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33994,7 +34487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1154), 40, + ACTIONS(1161), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34029,42 +34522,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [5946] = 3, + [5610] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1156), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(560), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1158), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(562), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -34079,52 +34575,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [6009] = 3, + [5674] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1160), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(536), 24, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1162), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(538), 32, + anon_sym_EQ, + anon_sym_STAR, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -34139,26 +34636,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [6072] = 3, + [5738] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1164), 15, + ACTIONS(1163), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34174,7 +34670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1166), 40, + ACTIONS(1165), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34209,16 +34705,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6135] = 3, + [5802] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1168), 15, + ACTIONS(1167), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34234,7 +34731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1170), 40, + ACTIONS(1169), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34269,16 +34766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6198] = 3, + [5866] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1172), 15, + ACTIONS(1171), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34294,7 +34792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1174), 40, + ACTIONS(1173), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34329,16 +34827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6261] = 3, + [5930] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1176), 15, + ACTIONS(1175), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34354,7 +34853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1178), 40, + ACTIONS(1177), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34389,16 +34888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6324] = 3, + [5994] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1180), 15, + ACTIONS(1179), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34414,7 +34914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1182), 40, + ACTIONS(1181), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34449,16 +34949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6387] = 3, + [6058] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1184), 15, + ACTIONS(1183), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34474,7 +34975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1186), 40, + ACTIONS(1185), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34509,16 +35010,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6450] = 3, + [6122] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1188), 15, + ACTIONS(1187), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34534,7 +35036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1190), 40, + ACTIONS(1189), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34569,16 +35071,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6513] = 3, + [6186] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1192), 15, + ACTIONS(1191), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34594,7 +35097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1194), 40, + ACTIONS(1193), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34629,16 +35132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6576] = 3, + [6250] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 15, + ACTIONS(1195), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34654,7 +35158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1198), 40, + ACTIONS(1197), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34689,16 +35193,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6639] = 3, + [6314] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1200), 15, + ACTIONS(1199), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34714,7 +35219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1202), 40, + ACTIONS(1201), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34749,42 +35254,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6702] = 3, + [6378] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1204), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, + ACTIONS(1203), 6, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, - anon_sym_STAR, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1206), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(592), 8, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + ACTIONS(594), 18, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1205), 24, + anon_sym__, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -34799,26 +35315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, sym_numeric_literal, anon_sym_true, anon_sym_false, - anon_sym_ref, sym_identifier, + sym_mutable_specifier, sym_super, - [6765] = 3, + [6446] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1208), 15, + ACTIONS(1207), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34834,7 +35343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1210), 40, + ACTIONS(1209), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34869,16 +35378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6828] = 3, + [6510] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 15, + ACTIONS(1211), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34894,7 +35404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1214), 40, + ACTIONS(1213), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34929,16 +35439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6891] = 3, + [6574] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 15, + ACTIONS(1215), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34954,7 +35465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1218), 40, + ACTIONS(1217), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -34989,222 +35500,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [6954] = 3, + [6638] = 32, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1220), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, + ACTIONS(871), 1, anon_sym_POUND, + ACTIONS(873), 1, anon_sym_LBRACK, + ACTIONS(877), 1, anon_sym_COLON_COLON, - anon_sym_STAR, + ACTIONS(879), 1, anon_sym_LPAREN, + ACTIONS(887), 1, anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(891), 1, anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1222), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, + ACTIONS(893), 1, anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, + ACTIONS(895), 1, sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [7017] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1224), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, + ACTIONS(897), 1, aux_sym_string_literal_token1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1226), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, + ACTIONS(903), 1, anon_sym_ref, + ACTIONS(905), 1, sym_identifier, + ACTIONS(907), 1, + sym_mutable_specifier, + ACTIONS(909), 1, sym_super, - [7080] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1228), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1230), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, + ACTIONS(971), 1, + anon_sym__, + STATE(345), 1, + sym_attribute_item, + STATE(383), 1, + sym_ref_specifier, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, + sym_negative_literal, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(1038), 1, + sym_scoped_identifier, + STATE(1152), 1, + sym_generic_type_with_turbofish, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, + sym__pattern, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [7143] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1232), 15, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1234), 40, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + STATE(925), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1482), 2, + sym_parameter, + sym__type, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(885), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -35219,26 +35597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_extern, - anon_sym_loop, - anon_sym_match, - anon_sym_pub, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [7206] = 3, + [6760] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1236), 15, + ACTIONS(1219), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35254,7 +35616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1238), 40, + ACTIONS(1221), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35289,16 +35651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7269] = 3, + [6824] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1240), 15, + ACTIONS(1223), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35314,7 +35677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1242), 40, + ACTIONS(1225), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35349,16 +35712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7332] = 3, + [6888] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1244), 15, + ACTIONS(1227), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35374,7 +35738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1246), 40, + ACTIONS(1229), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35409,16 +35773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7395] = 3, + [6952] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1248), 15, + ACTIONS(1231), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35434,7 +35799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1250), 40, + ACTIONS(1233), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35469,16 +35834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7458] = 3, + [7016] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 15, + ACTIONS(1235), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35494,7 +35860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1254), 40, + ACTIONS(1237), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35529,16 +35895,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7521] = 3, + [7080] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 15, + ACTIONS(1239), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35554,7 +35921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1258), 40, + ACTIONS(1241), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35589,16 +35956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7584] = 3, + [7144] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1260), 15, + ACTIONS(1243), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35614,7 +35982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1262), 40, + ACTIONS(1245), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35649,16 +36017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7647] = 3, + [7208] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1264), 15, + ACTIONS(1247), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35674,7 +36043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1266), 40, + ACTIONS(1249), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35709,16 +36078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7710] = 3, + [7272] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1268), 15, + ACTIONS(1251), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35734,7 +36104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1270), 40, + ACTIONS(1253), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35769,16 +36139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7773] = 3, + [7336] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1272), 15, + ACTIONS(1255), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35794,7 +36165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1274), 40, + ACTIONS(1257), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35829,16 +36200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7836] = 3, + [7400] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1276), 15, + ACTIONS(1259), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35854,7 +36226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1278), 40, + ACTIONS(1261), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35889,16 +36261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7899] = 3, + [7464] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1280), 15, + ACTIONS(1263), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35914,7 +36287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1282), 40, + ACTIONS(1265), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -35949,16 +36322,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [7962] = 3, + [7528] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1284), 15, + ACTIONS(1267), 15, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35974,7 +36348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1286), 40, + ACTIONS(1269), 41, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -36009,75 +36383,713 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [8025] = 30, + [7592] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1288), 1, + ACTIONS(1271), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1273), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7656] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1275), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1277), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7720] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1279), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(1290), 1, + anon_sym_SEMI, + anon_sym_BANG, anon_sym_POUND, - ACTIONS(1292), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, anon_sym_COLON_COLON, - ACTIONS(1296), 1, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(1298), 1, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1281), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7784] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1283), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1285), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7848] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1287), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1289), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [7912] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1291), 6, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(592), 8, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + ACTIONS(594), 18, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1293), 24, anon_sym__, - ACTIONS(1302), 1, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, anon_sym_DASH, - ACTIONS(1304), 1, anon_sym_PIPE, - ACTIONS(1306), 1, anon_sym_default, - ACTIONS(1308), 1, sym_numeric_literal, - ACTIONS(1310), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [7980] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1295), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1297), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [8044] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1299), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, - ACTIONS(1312), 1, sym_shortstring_literal, - ACTIONS(1316), 1, + ACTIONS(1301), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, sym_identifier, - ACTIONS(1318), 1, + sym_super, + [8108] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1303), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_TILDE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1305), 41, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_extern, + anon_sym_loop, + anon_sym_match, + anon_sym_pub, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [8172] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(879), 1, + anon_sym_LPAREN, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(893), 1, + anon_sym_default, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(903), 1, + anon_sym_ref, + ACTIONS(905), 1, + sym_identifier, + ACTIONS(907), 1, sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(909), 1, sym_super, - STATE(981), 1, + ACTIONS(1307), 1, + anon_sym__, + STATE(383), 1, + sym_ref_specifier, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, + sym_negative_literal, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(1038), 1, sym_scoped_identifier, - STATE(1160), 1, + STATE(1152), 1, + sym_generic_type_with_turbofish, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, sym__pattern, - STATE(1259), 1, - sym_scoped_type_identifier, - STATE(1332), 1, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(925), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1333), 2, + sym_parameter, + sym__type, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(885), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8288] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1309), 1, + anon_sym_RBRACE, + ACTIONS(1311), 1, + anon_sym_POUND, + ACTIONS(1313), 1, + anon_sym_LBRACK, + ACTIONS(1315), 1, + anon_sym_COLON_COLON, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, + anon_sym_DASH, + ACTIONS(1325), 1, + anon_sym_PIPE, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, + sym_numeric_literal, + ACTIONS(1331), 1, + aux_sym_string_literal_token1, + ACTIONS(1333), 1, + sym_shortstring_literal, + ACTIONS(1337), 1, + sym_identifier, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, + sym_super, + STATE(992), 1, + sym_scoped_identifier, + STATE(1179), 1, sym_negative_literal, - STATE(1412), 1, + STATE(1192), 1, + sym__pattern, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1475), 1, + STATE(1561), 1, sym_match_pattern, - STATE(1498), 1, - sym_last_match_arm, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1314), 2, + STATE(1569), 1, + sym_last_match_arm, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(348), 2, + STATE(351), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1288), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(352), 3, + STATE(356), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1294), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36086,7 +37098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36101,70 +37113,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8141] = 30, + [8404] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(910), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(916), 1, + ACTIONS(879), 1, anon_sym_LPAREN, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(930), 1, + ACTIONS(893), 1, anon_sym_default, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(940), 1, + ACTIONS(903), 1, anon_sym_ref, - ACTIONS(942), 1, + ACTIONS(905), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(907), 1, sym_mutable_specifier, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1322), 1, + ACTIONS(1343), 1, anon_sym__, - STATE(393), 1, + STATE(383), 1, sym_ref_specifier, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(974), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(1047), 1, + STATE(1038), 1, sym_scoped_identifier, - STATE(1117), 1, - sym_macro_invocation, - STATE(1118), 1, + STATE(1152), 1, sym_generic_type_with_turbofish, - STATE(1446), 1, + STATE(1153), 1, + sym_macro_invocation, + STATE(1388), 1, sym__pattern, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1376), 2, + STATE(1395), 2, sym_parameter, sym__type, - STATE(895), 4, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(956), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36172,7 +37184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(922), 14, + ACTIONS(885), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36187,69 +37199,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8257] = 30, + [8520] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(1311), 1, anon_sym_POUND, - ACTIONS(1292), 1, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1296), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1298), 1, + ACTIONS(1319), 1, anon_sym__, - ACTIONS(1302), 1, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(1304), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(1306), 1, + ACTIONS(1327), 1, anon_sym_default, - ACTIONS(1308), 1, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(1310), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(1312), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1316), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1318), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(1341), 1, sym_super, - ACTIONS(1324), 1, + ACTIONS(1345), 1, anon_sym_RBRACE, - STATE(981), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(1160), 1, + STATE(1179), 1, + sym_negative_literal, + STATE(1192), 1, sym__pattern, - STATE(1259), 1, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(1332), 1, - sym_negative_literal, - STATE(1412), 1, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1475), 1, + STATE(1561), 1, sym_match_pattern, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - STATE(1599), 1, + STATE(1641), 1, sym_last_match_arm, - ACTIONS(1314), 2, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(345), 2, + STATE(352), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1288), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(352), 3, + STATE(356), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1294), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36258,7 +37270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36273,70 +37285,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8373] = 30, + [8636] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(910), 1, + ACTIONS(1311), 1, + anon_sym_POUND, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(914), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(916), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(924), 1, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(930), 1, + ACTIONS(1327), 1, anon_sym_default, - ACTIONS(932), 1, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(940), 1, - anon_sym_ref, - ACTIONS(942), 1, + ACTIONS(1337), 1, + sym_identifier, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, + sym_super, + ACTIONS(1347), 1, + anon_sym_RBRACE, + STATE(992), 1, + sym_scoped_identifier, + STATE(1179), 1, + sym_negative_literal, + STATE(1192), 1, + sym__pattern, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, + sym_generic_type_with_turbofish, + STATE(1510), 1, + sym_last_match_arm, + STATE(1561), 1, + sym_match_pattern, + STATE(1567), 1, + sym_generic_type, + ACTIONS(1335), 2, + anon_sym_true, + anon_sym_false, + STATE(348), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1177), 2, + sym_string_literal, + sym_boolean_literal, + STATE(356), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1174), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1321), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8752] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1311), 1, + anon_sym_POUND, + ACTIONS(1313), 1, + anon_sym_LBRACK, + ACTIONS(1315), 1, + anon_sym_COLON_COLON, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, + anon_sym_DASH, + ACTIONS(1325), 1, + anon_sym_PIPE, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, + sym_numeric_literal, + ACTIONS(1331), 1, + aux_sym_string_literal_token1, + ACTIONS(1333), 1, + sym_shortstring_literal, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(944), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(946), 1, + ACTIONS(1341), 1, sym_super, - ACTIONS(1326), 1, + STATE(992), 1, + sym_scoped_identifier, + STATE(1179), 1, + sym_negative_literal, + STATE(1192), 1, + sym__pattern, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, + sym_generic_type_with_turbofish, + STATE(1507), 1, + sym_last_match_arm, + STATE(1561), 1, + sym_match_pattern, + STATE(1567), 1, + sym_generic_type, + ACTIONS(1335), 2, + anon_sym_true, + anon_sym_false, + STATE(355), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1177), 2, + sym_string_literal, + sym_boolean_literal, + STATE(356), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1174), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1321), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8865] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(1349), 1, + anon_sym_COMMA, + ACTIONS(1351), 1, + anon_sym_COLON_COLON, + ACTIONS(1353), 1, + anon_sym_LPAREN, + ACTIONS(1355), 1, anon_sym__, - STATE(393), 1, - sym_ref_specifier, - STATE(871), 1, + ACTIONS(1357), 1, + anon_sym_RPAREN, + ACTIONS(1361), 1, + anon_sym_default, + ACTIONS(1363), 1, + sym_identifier, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1367), 1, + sym_super, + STATE(881), 1, sym_generic_type, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(974), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(1047), 1, + STATE(1004), 1, sym_scoped_identifier, - STATE(1117), 1, - sym_macro_invocation, - STATE(1118), 1, + STATE(1086), 1, sym_generic_type_with_turbofish, - STATE(1446), 1, + STATE(1104), 1, sym__pattern, - ACTIONS(938), 2, + STATE(1184), 1, + sym_macro_invocation, + STATE(1269), 1, + sym__type, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1228), 2, - sym_parameter, + STATE(892), 4, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + STATE(921), 7, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1359), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [8980] = 30, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1369), 1, + anon_sym_RBRACK, + ACTIONS(1371), 1, + anon_sym_COMMA, + ACTIONS(1373), 1, + anon_sym_COLON_COLON, + ACTIONS(1375), 1, + anon_sym_LPAREN, + ACTIONS(1379), 1, + anon_sym_default, + ACTIONS(1381), 1, + sym_identifier, + ACTIONS(1383), 1, + sym_super, + STATE(881), 1, + sym_generic_type, + STATE(927), 1, + sym_negative_literal, + STATE(973), 1, + sym_scoped_type_identifier, + STATE(988), 1, + sym_scoped_identifier, + STATE(1107), 1, + sym__pattern, + STATE(1114), 1, + sym_macro_invocation, + STATE(1147), 1, + sym_generic_type_with_turbofish, + STATE(1445), 1, sym__type, - STATE(895), 4, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(925), 2, + sym_string_literal, + sym_boolean_literal, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(956), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36344,7 +37610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(922), 14, + ACTIONS(1377), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36359,69 +37625,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8489] = 30, + [9095] = 29, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(1311), 1, anon_sym_POUND, - ACTIONS(1292), 1, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1296), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1298), 1, + ACTIONS(1319), 1, anon_sym__, - ACTIONS(1302), 1, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(1304), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(1306), 1, + ACTIONS(1327), 1, anon_sym_default, - ACTIONS(1308), 1, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(1310), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(1312), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1316), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1318), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(1341), 1, sym_super, - ACTIONS(1328), 1, - anon_sym_RBRACE, - STATE(981), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(1160), 1, + STATE(1179), 1, + sym_negative_literal, + STATE(1192), 1, sym__pattern, - STATE(1259), 1, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(1332), 1, + STATE(1428), 1, + sym_generic_type_with_turbofish, + STATE(1556), 1, + sym_last_match_arm, + STATE(1561), 1, + sym_match_pattern, + STATE(1567), 1, + sym_generic_type, + ACTIONS(1335), 2, + anon_sym_true, + anon_sym_false, + STATE(355), 2, + sym_match_arm, + aux_sym_match_block_repeat1, + STATE(1177), 2, + sym_string_literal, + sym_boolean_literal, + STATE(356), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1174), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1321), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [9208] = 29, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1311), 1, + anon_sym_POUND, + ACTIONS(1313), 1, + anon_sym_LBRACK, + ACTIONS(1315), 1, + anon_sym_COLON_COLON, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, + anon_sym_DASH, + ACTIONS(1325), 1, + anon_sym_PIPE, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, + sym_numeric_literal, + ACTIONS(1331), 1, + aux_sym_string_literal_token1, + ACTIONS(1333), 1, + sym_shortstring_literal, + ACTIONS(1337), 1, + sym_identifier, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, + sym_super, + STATE(992), 1, + sym_scoped_identifier, + STATE(1179), 1, sym_negative_literal, - STATE(1412), 1, + STATE(1192), 1, + sym__pattern, + STATE(1215), 1, + sym_scoped_type_identifier, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1475), 1, + STATE(1561), 1, sym_match_pattern, - STATE(1477), 1, - sym_last_match_arm, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1314), 2, + STATE(1592), 1, + sym_last_match_arm, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(349), 2, + STATE(355), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1288), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(352), 3, + STATE(356), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1294), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36430,7 +37778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36445,69 +37793,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8605] = 30, + [9321] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(910), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1330), 1, + ACTIONS(1349), 1, anon_sym_COMMA, - ACTIONS(1332), 1, + ACTIONS(1351), 1, anon_sym_COLON_COLON, - ACTIONS(1334), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1338), 1, - anon_sym_RPAREN, - ACTIONS(1342), 1, + ACTIONS(1361), 1, anon_sym_default, - ACTIONS(1344), 1, + ACTIONS(1363), 1, sym_identifier, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1348), 1, + ACTIONS(1367), 1, sym_super, - STATE(871), 1, + ACTIONS(1385), 1, + anon_sym_RPAREN, + STATE(881), 1, sym_generic_type, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(974), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(984), 1, + STATE(1004), 1, sym_scoped_identifier, - STATE(1065), 1, + STATE(1086), 1, sym_generic_type_with_turbofish, - STATE(1128), 1, + STATE(1104), 1, sym__pattern, - STATE(1169), 1, - sym__type, - STATE(1258), 1, + STATE(1184), 1, sym_macro_invocation, - ACTIONS(938), 2, + STATE(1269), 1, + sym__type, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(895), 4, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(956), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36515,7 +37863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1340), 14, + ACTIONS(1359), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36530,69 +37878,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8720] = 30, + [9436] = 30, ACTIONS(3), 1, sym_line_comment, - ACTIONS(910), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1330), 1, + ACTIONS(1349), 1, anon_sym_COMMA, - ACTIONS(1332), 1, + ACTIONS(1351), 1, anon_sym_COLON_COLON, - ACTIONS(1334), 1, + ACTIONS(1353), 1, anon_sym_LPAREN, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1342), 1, + ACTIONS(1361), 1, anon_sym_default, - ACTIONS(1344), 1, + ACTIONS(1363), 1, sym_identifier, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1348), 1, + ACTIONS(1367), 1, sym_super, - ACTIONS(1350), 1, + ACTIONS(1387), 1, anon_sym_RPAREN, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(974), 1, + STATE(973), 1, sym_scoped_type_identifier, - STATE(984), 1, + STATE(1004), 1, sym_scoped_identifier, - STATE(1065), 1, + STATE(1086), 1, sym_generic_type_with_turbofish, - STATE(1128), 1, + STATE(1104), 1, sym__pattern, - STATE(1169), 1, - sym__type, - STATE(1258), 1, + STATE(1184), 1, sym_macro_invocation, - ACTIONS(938), 2, + STATE(1269), 1, + sym__type, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(895), 4, + STATE(892), 4, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - STATE(956), 7, + STATE(921), 7, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36600,7 +37948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1340), 14, + ACTIONS(1359), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36615,67 +37963,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8835] = 29, + [9551] = 28, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, + ACTIONS(1389), 1, anon_sym_POUND, - ACTIONS(1292), 1, + ACTIONS(1392), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, + ACTIONS(1395), 1, anon_sym_COLON_COLON, - ACTIONS(1296), 1, + ACTIONS(1398), 1, anon_sym_LPAREN, - ACTIONS(1298), 1, + ACTIONS(1401), 1, anon_sym__, - ACTIONS(1302), 1, + ACTIONS(1407), 1, anon_sym_DASH, - ACTIONS(1304), 1, + ACTIONS(1410), 1, anon_sym_PIPE, - ACTIONS(1306), 1, + ACTIONS(1413), 1, anon_sym_default, - ACTIONS(1308), 1, + ACTIONS(1416), 1, sym_numeric_literal, - ACTIONS(1310), 1, + ACTIONS(1419), 1, aux_sym_string_literal_token1, - ACTIONS(1312), 1, + ACTIONS(1422), 1, sym_shortstring_literal, - ACTIONS(1316), 1, + ACTIONS(1428), 1, sym_identifier, - ACTIONS(1318), 1, + ACTIONS(1431), 1, sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(1434), 1, sym_super, - STATE(981), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(1160), 1, + STATE(1179), 1, + sym_negative_literal, + STATE(1192), 1, sym__pattern, - STATE(1259), 1, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(1332), 1, - sym_negative_literal, - STATE(1412), 1, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1475), 1, + STATE(1545), 1, sym_match_pattern, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - STATE(1574), 1, - sym_last_match_arm, - ACTIONS(1314), 2, + ACTIONS(1425), 2, anon_sym_true, anon_sym_false, - STATE(350), 2, + STATE(355), 2, sym_match_arm, aux_sym_match_block_repeat1, - STATE(1288), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(352), 3, + STATE(357), 3, sym_attribute_item, sym_inner_attribute_item, aux_sym_match_arm_repeat1, - STATE(1294), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36684,7 +38030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1404), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36699,69 +38045,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [8948] = 30, + [9661] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(910), 1, + ACTIONS(1311), 1, + anon_sym_POUND, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(924), 1, + ACTIONS(1315), 1, + anon_sym_COLON_COLON, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(932), 1, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1330), 1, - anon_sym_COMMA, - ACTIONS(1332), 1, - anon_sym_COLON_COLON, - ACTIONS(1334), 1, - anon_sym_LPAREN, - ACTIONS(1336), 1, - anon_sym__, - ACTIONS(1342), 1, - anon_sym_default, - ACTIONS(1344), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1346), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(1348), 1, + ACTIONS(1341), 1, sym_super, - ACTIONS(1352), 1, - anon_sym_RPAREN, - STATE(871), 1, - sym_generic_type, - STATE(935), 1, + STATE(992), 1, + sym_scoped_identifier, + STATE(1179), 1, sym_negative_literal, - STATE(974), 1, + STATE(1192), 1, + sym__pattern, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(984), 1, - sym_scoped_identifier, - STATE(1065), 1, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1128), 1, - sym__pattern, - STATE(1169), 1, - sym__type, - STATE(1258), 1, - sym_macro_invocation, - ACTIONS(938), 2, + STATE(1549), 1, + sym_match_pattern, + STATE(1567), 1, + sym_generic_type, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(895), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(956), 7, + STATE(578), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1174), 8, + sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36769,7 +38109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1340), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36784,69 +38124,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9063] = 30, + [9767] = 27, ACTIONS(3), 1, sym_line_comment, - ACTIONS(910), 1, + ACTIONS(1311), 1, + anon_sym_POUND, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(924), 1, + ACTIONS(1315), 1, + anon_sym_COLON_COLON, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(932), 1, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1336), 1, - anon_sym__, - ACTIONS(1346), 1, - sym_mutable_specifier, - ACTIONS(1354), 1, - anon_sym_RBRACK, - ACTIONS(1356), 1, - anon_sym_COMMA, - ACTIONS(1358), 1, - anon_sym_COLON_COLON, - ACTIONS(1360), 1, - anon_sym_LPAREN, - ACTIONS(1364), 1, - anon_sym_default, - ACTIONS(1366), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1368), 1, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, sym_super, - STATE(871), 1, - sym_generic_type, - STATE(935), 1, + STATE(992), 1, + sym_scoped_identifier, + STATE(1179), 1, sym_negative_literal, - STATE(974), 1, + STATE(1192), 1, + sym__pattern, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(994), 1, - sym_scoped_identifier, - STATE(1126), 1, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1127), 1, - sym_macro_invocation, - STATE(1129), 1, - sym__pattern, - STATE(1459), 1, - sym__type, - ACTIONS(938), 2, + STATE(1509), 1, + sym_match_pattern, + STATE(1567), 1, + sym_generic_type, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(895), 4, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - STATE(956), 7, + STATE(578), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + STATE(1174), 8, + sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, sym_struct_pattern, @@ -36854,7 +38188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1362), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36869,67 +38203,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9178] = 29, + [9873] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_POUND, - ACTIONS(1292), 1, - anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_COLON_COLON, - ACTIONS(1296), 1, - anon_sym_LPAREN, - ACTIONS(1298), 1, - anon_sym__, - ACTIONS(1302), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1304), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1306), 1, - anon_sym_default, - ACTIONS(1308), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1310), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1312), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1316), 1, - sym_identifier, - ACTIONS(1318), 1, + ACTIONS(1349), 1, + anon_sym_COMMA, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(1437), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, + anon_sym_LPAREN, + ACTIONS(1443), 1, + anon_sym_RPAREN, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1451), 1, sym_super, - STATE(981), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(1160), 1, + STATE(927), 1, + sym_negative_literal, + STATE(1104), 1, sym__pattern, - STATE(1259), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1332), 1, - sym_negative_literal, - STATE(1412), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1475), 1, - sym_match_pattern, - STATE(1496), 1, - sym_last_match_arm, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1314), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(350), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1288), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(352), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1294), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -36938,7 +38263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -36953,67 +38278,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9291] = 29, + [9974] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_POUND, - ACTIONS(1292), 1, - anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_COLON_COLON, - ACTIONS(1296), 1, - anon_sym_LPAREN, - ACTIONS(1298), 1, - anon_sym__, - ACTIONS(1302), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1304), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1306), 1, - anon_sym_default, - ACTIONS(1308), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1310), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1312), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1316), 1, - sym_identifier, - ACTIONS(1318), 1, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(1437), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, + anon_sym_LPAREN, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1451), 1, sym_super, - STATE(981), 1, + ACTIONS(1453), 1, + anon_sym_COMMA, + ACTIONS(1455), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(1160), 1, + STATE(927), 1, + sym_negative_literal, + STATE(1136), 1, sym__pattern, - STATE(1259), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1332), 1, - sym_negative_literal, - STATE(1412), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1475), 1, - sym_match_pattern, - STATE(1528), 1, - sym_last_match_arm, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1314), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(350), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1288), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(352), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1294), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37022,7 +38338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37037,65 +38353,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9404] = 28, + [10075] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1370), 1, - anon_sym_POUND, - ACTIONS(1373), 1, - anon_sym_LBRACK, - ACTIONS(1376), 1, - anon_sym_COLON_COLON, - ACTIONS(1379), 1, - anon_sym_LPAREN, - ACTIONS(1382), 1, - anon_sym__, - ACTIONS(1388), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1391), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1394), 1, - anon_sym_default, - ACTIONS(1397), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1400), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1403), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1409), 1, - sym_identifier, - ACTIONS(1412), 1, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1415), 1, + ACTIONS(1437), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, + anon_sym_LPAREN, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1451), 1, sym_super, - STATE(981), 1, + ACTIONS(1457), 1, + anon_sym_RBRACK, + ACTIONS(1459), 1, + anon_sym_COMMA, + STATE(874), 1, sym_scoped_identifier, - STATE(1160), 1, + STATE(927), 1, + sym_negative_literal, + STATE(1096), 1, sym__pattern, - STATE(1259), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1332), 1, - sym_negative_literal, - STATE(1412), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, - sym_generic_type, STATE(1567), 1, - sym_match_pattern, - ACTIONS(1406), 2, + sym_generic_type, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(350), 2, - sym_match_arm, - aux_sym_match_block_repeat1, - STATE(1288), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(351), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1294), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37104,7 +38413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1385), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37119,62 +38428,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9514] = 27, + [10176] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_POUND, - ACTIONS(1292), 1, - anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_COLON_COLON, - ACTIONS(1296), 1, - anon_sym_LPAREN, - ACTIONS(1298), 1, - anon_sym__, - ACTIONS(1302), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1304), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1306), 1, - anon_sym_default, - ACTIONS(1308), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1310), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1312), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1316), 1, - sym_identifier, - ACTIONS(1318), 1, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(1437), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, + anon_sym_LPAREN, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1451), 1, sym_super, - STATE(981), 1, + ACTIONS(1461), 1, + anon_sym_COMMA, + ACTIONS(1463), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(1160), 1, + STATE(927), 1, + sym_negative_literal, + STATE(1095), 1, sym__pattern, - STATE(1259), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1332), 1, - sym_negative_literal, - STATE(1412), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - STATE(1590), 1, - sym_match_pattern, - ACTIONS(1314), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1288), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(494), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1294), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37183,7 +38488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37198,62 +38503,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9620] = 27, + [10277] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1290), 1, - anon_sym_POUND, - ACTIONS(1292), 1, - anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_COLON_COLON, - ACTIONS(1296), 1, - anon_sym_LPAREN, - ACTIONS(1298), 1, - anon_sym__, - ACTIONS(1302), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1304), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1306), 1, - anon_sym_default, - ACTIONS(1308), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1310), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1312), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1316), 1, - sym_identifier, - ACTIONS(1318), 1, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(1369), 1, + anon_sym_RBRACK, + ACTIONS(1371), 1, + anon_sym_COMMA, + ACTIONS(1437), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, + anon_sym_LPAREN, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1451), 1, sym_super, - STATE(981), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(1160), 1, + STATE(927), 1, + sym_negative_literal, + STATE(1107), 1, sym__pattern, - STATE(1259), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1332), 1, - sym_negative_literal, - STATE(1412), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1530), 1, - sym_match_pattern, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1314), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1288), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(494), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - STATE(1294), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37262,7 +38563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37277,58 +38578,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9726] = 26, + [10378] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1420), 1, - anon_sym_COMMA, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1426), 1, - anon_sym_RPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + ACTIONS(1465), 1, + anon_sym_COMMA, + ACTIONS(1467), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, STATE(1132), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37337,7 +38638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37352,58 +38653,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9827] = 26, + [10479] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1436), 1, + ACTIONS(1469), 1, anon_sym_COMMA, - ACTIONS(1438), 1, + ACTIONS(1471), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1130), 1, + STATE(1065), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37412,7 +38713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37427,58 +38728,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [9928] = 26, + [10580] = 26, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1440), 1, - anon_sym_RBRACK, - ACTIONS(1442), 1, + ACTIONS(1473), 1, anon_sym_COMMA, - STATE(864), 1, + ACTIONS(1475), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1075), 1, + STATE(1066), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37487,7 +38788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37502,58 +38803,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10029] = 26, + [10681] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1444), 1, - anon_sym_COMMA, - ACTIONS(1446), 1, - anon_sym_RPAREN, - STATE(864), 1, + ACTIONS(1477), 1, + anon_sym_RBRACK, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1050), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37562,7 +38861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37577,58 +38876,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10130] = 26, + [10779] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1448), 1, - anon_sym_COMMA, - ACTIONS(1450), 1, + ACTIONS(1479), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1052), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37637,7 +38934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37652,58 +38949,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10231] = 26, + [10877] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1452), 1, - anon_sym_COMMA, - ACTIONS(1454), 1, + ACTIONS(1481), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1053), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37712,7 +39007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37727,58 +39022,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10332] = 26, + [10975] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1330), 1, - anon_sym_COMMA, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1456), 1, + ACTIONS(1483), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1128), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37787,7 +39080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37802,58 +39095,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10433] = 26, + [11073] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1354), 1, - anon_sym_RBRACK, - ACTIONS(1356), 1, - anon_sym_COMMA, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + ACTIONS(1485), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1129), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37862,7 +39153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37877,56 +39168,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10534] = 25, + [11171] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1458), 1, + ACTIONS(1487), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -37935,7 +39226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -37950,56 +39241,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10632] = 25, + [11269] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1460), 1, - anon_sym_RPAREN, - STATE(864), 1, + ACTIONS(1489), 1, + anon_sym_RBRACK, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38008,7 +39299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38023,138 +39314,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10730] = 25, + [11367] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, - anon_sym_DASH, - ACTIONS(926), 1, - anon_sym_PIPE, - ACTIONS(932), 1, - sym_numeric_literal, - ACTIONS(934), 1, - aux_sym_string_literal_token1, - ACTIONS(936), 1, - sym_shortstring_literal, - ACTIONS(1336), 1, - anon_sym__, - ACTIONS(1346), 1, - sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(626), 1, + anon_sym_POUND, + STATE(373), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(632), 13, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LBRACK, - ACTIONS(1422), 1, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(1430), 1, - anon_sym_default, - ACTIONS(1432), 1, - sym_identifier, - ACTIONS(1434), 1, - sym_super, - ACTIONS(1462), 1, - anon_sym_RPAREN, - STATE(864), 1, - sym_scoped_identifier, - STATE(935), 1, - sym_negative_literal, - STATE(1095), 1, - sym__pattern, - STATE(1183), 1, - sym_scoped_type_identifier, - STATE(1393), 1, - sym_generic_type_with_turbofish, - STATE(1559), 1, - sym_generic_type, - ACTIONS(938), 2, - anon_sym_true, - anon_sym_false, - STATE(951), 2, - sym_string_literal, - sym_boolean_literal, - STATE(956), 8, - sym_macro_invocation, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(1428), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [10828] = 25, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(924), 1, anon_sym_DASH, - ACTIONS(926), 1, - anon_sym_PIPE, - ACTIONS(932), 1, - sym_numeric_literal, - ACTIONS(934), 1, + anon_sym_TILDE, + anon_sym_AT, aux_sym_string_literal_token1, - ACTIONS(936), 1, sym_shortstring_literal, - ACTIONS(1336), 1, - anon_sym__, - ACTIONS(1346), 1, - sym_mutable_specifier, - ACTIONS(1418), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_COLON_COLON, - ACTIONS(1424), 1, - anon_sym_LPAREN, - ACTIONS(1430), 1, - anon_sym_default, - ACTIONS(1432), 1, - sym_identifier, - ACTIONS(1434), 1, - sym_super, - ACTIONS(1464), 1, - anon_sym_RBRACK, - STATE(864), 1, - sym_scoped_identifier, - STATE(935), 1, - sym_negative_literal, - STATE(1095), 1, - sym__pattern, - STATE(1183), 1, - sym_scoped_type_identifier, - STATE(1393), 1, - sym_generic_type_with_turbofish, - STATE(1559), 1, - sym_generic_type, - ACTIONS(938), 2, - anon_sym_true, - anon_sym_false, - STATE(951), 2, - sym_string_literal, - sym_boolean_literal, - STATE(956), 8, - sym_macro_invocation, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1491), 30, + anon_sym_COLON, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38169,56 +39352,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [10926] = 25, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [11425] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1466), 1, + ACTIONS(1493), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38227,7 +39425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38242,56 +39440,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11024] = 25, + [11523] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1468), 1, - anon_sym_RBRACK, - STATE(864), 1, + ACTIONS(1495), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38300,7 +39498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38315,56 +39513,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11122] = 25, + [11621] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1470), 1, - anon_sym_RPAREN, - STATE(864), 1, + ACTIONS(1497), 1, + anon_sym_RBRACK, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38373,7 +39571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38388,56 +39586,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11220] = 25, + [11719] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1472), 1, - anon_sym_RBRACK, - STATE(864), 1, + ACTIONS(1499), 1, + anon_sym_RPAREN, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38446,7 +39644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38461,56 +39659,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11318] = 25, + [11817] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1474), 1, + ACTIONS(1501), 1, anon_sym_RBRACK, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38519,7 +39717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38534,56 +39732,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11416] = 25, + [11915] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1476), 1, + ACTIONS(1503), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38592,7 +39790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38607,56 +39805,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11514] = 25, + [12013] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1478), 1, + ACTIONS(1505), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38665,7 +39863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38680,56 +39878,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11612] = 25, + [12111] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1480), 1, + ACTIONS(1507), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38738,7 +39936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38753,56 +39951,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11710] = 25, + [12209] = 25, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1482), 1, + ACTIONS(1509), 1, anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38811,7 +40009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38826,56 +40024,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11808] = 25, + [12307] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1484), 1, - anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, - sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1368), 1, + sym__pattern, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38884,7 +40080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38899,56 +40095,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [11906] = 25, + [12402] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(1313), 1, + anon_sym_LBRACK, + ACTIONS(1315), 1, + anon_sym_COLON_COLON, + ACTIONS(1317), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1336), 1, - anon_sym__, - ACTIONS(1346), 1, - sym_mutable_specifier, - ACTIONS(1418), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_COLON_COLON, - ACTIONS(1424), 1, - anon_sym_LPAREN, - ACTIONS(1430), 1, - anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, sym_super, - ACTIONS(1486), 1, - anon_sym_RPAREN, - STATE(864), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(1179), 1, sym_negative_literal, - STATE(1095), 1, - sym__pattern, - STATE(1183), 1, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1259), 1, + sym__pattern, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -38957,7 +40151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -38972,56 +40166,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12004] = 25, + [12497] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1488), 1, - anon_sym_RPAREN, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1095), 1, - sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1356), 1, + sym__pattern, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39030,7 +40222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39045,54 +40237,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12102] = 24, + [12592] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1292), 1, + ACTIONS(1313), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1296), 1, + ACTIONS(1317), 1, anon_sym_LPAREN, - ACTIONS(1298), 1, + ACTIONS(1319), 1, anon_sym__, - ACTIONS(1302), 1, + ACTIONS(1323), 1, anon_sym_DASH, - ACTIONS(1304), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(1306), 1, + ACTIONS(1327), 1, anon_sym_default, - ACTIONS(1308), 1, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(1310), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(1312), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1316), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1318), 1, + ACTIONS(1339), 1, sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(1341), 1, sym_super, - STATE(981), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(1259), 1, + STATE(1179), 1, + sym_negative_literal, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(1300), 1, + STATE(1221), 1, sym__pattern, - STATE(1332), 1, - sym_negative_literal, - STATE(1412), 1, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1314), 2, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(1288), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(1294), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39101,7 +40293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39116,125 +40308,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12197] = 24, + [12687] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(945), 1, - sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, - sym_generic_type_with_turbofish, - STATE(1559), 1, - sym_generic_type, - ACTIONS(938), 2, - anon_sym_true, - anon_sym_false, - STATE(951), 2, - sym_string_literal, - sym_boolean_literal, - STATE(956), 8, - sym_macro_invocation, - sym_tuple_pattern, - sym_slice_pattern, - sym_struct_pattern, - sym_mut_pattern, - sym_or_pattern, - sym__literal_pattern, - sym_tuple_enum_pattern, - ACTIONS(1428), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [12292] = 24, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(924), 1, - anon_sym_DASH, - ACTIONS(926), 1, - anon_sym_PIPE, - ACTIONS(932), 1, - sym_numeric_literal, - ACTIONS(934), 1, - aux_sym_string_literal_token1, - ACTIONS(936), 1, - sym_shortstring_literal, - ACTIONS(1336), 1, - anon_sym__, - ACTIONS(1346), 1, - sym_mutable_specifier, - ACTIONS(1418), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_COLON_COLON, - ACTIONS(1424), 1, - anon_sym_LPAREN, - ACTIONS(1430), 1, - anon_sym_default, - ACTIONS(1432), 1, - sym_identifier, - ACTIONS(1434), 1, - sym_super, - STATE(864), 1, - sym_scoped_identifier, - STATE(935), 1, - sym_negative_literal, - STATE(1095), 1, + STATE(1224), 1, sym__pattern, - STATE(1183), 1, - sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39243,7 +40364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39258,106 +40379,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12387] = 5, + [12782] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(611), 1, - anon_sym_POUND, - STATE(380), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(617), 13, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(1313), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - anon_sym_STAR, + ACTIONS(1317), 1, anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym__, + ACTIONS(1323), 1, anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1490), 29, - anon_sym_COLON, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [12444] = 24, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(924), 1, - anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(1325), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(1327), 1, + anon_sym_default, + ACTIONS(1329), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(1331), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(1333), 1, sym_shortstring_literal, - ACTIONS(1336), 1, - anon_sym__, - ACTIONS(1346), 1, - sym_mutable_specifier, - ACTIONS(1418), 1, - anon_sym_LBRACK, - ACTIONS(1422), 1, - anon_sym_COLON_COLON, - ACTIONS(1424), 1, - anon_sym_LPAREN, - ACTIONS(1430), 1, - anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1337), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1339), 1, + sym_mutable_specifier, + ACTIONS(1341), 1, sym_super, - STATE(864), 1, + STATE(992), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(1179), 1, sym_negative_literal, - STATE(941), 1, + STATE(1213), 1, sym__pattern, - STATE(1183), 1, + STATE(1215), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1428), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(1335), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(1177), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(1174), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39366,7 +40435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1321), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39381,54 +40450,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12539] = 24, + [12877] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1070), 1, + STATE(1188), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39437,7 +40506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39452,54 +40521,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12634] = 24, + [12972] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(928), 1, - sym__pattern, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1444), 1, + sym__pattern, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39508,7 +40577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39523,54 +40592,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12729] = 24, + [13067] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1108), 1, - sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1375), 1, + sym__pattern, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39579,7 +40648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39594,54 +40663,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12824] = 24, + [13162] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1263), 1, - sym__pattern, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1468), 1, + sym__pattern, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39650,7 +40719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39665,54 +40734,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [12919] = 24, + [13257] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, - sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + ACTIONS(1511), 1, + sym_mutable_specifier, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1161), 1, + STATE(1110), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39721,7 +40790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39736,54 +40805,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13014] = 24, + [13352] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1292), 1, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(889), 1, + anon_sym_PIPE, + ACTIONS(895), 1, + sym_numeric_literal, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(899), 1, + sym_shortstring_literal, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1296), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1298), 1, - anon_sym__, - ACTIONS(1302), 1, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1451), 1, + sym_super, + STATE(874), 1, + sym_scoped_identifier, + STATE(927), 1, + sym_negative_literal, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1362), 1, + sym__pattern, + STATE(1414), 1, + sym_generic_type_with_turbofish, + STATE(1567), 1, + sym_generic_type, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(925), 2, + sym_string_literal, + sym_boolean_literal, + STATE(921), 8, + sym_macro_invocation, + sym_tuple_pattern, + sym_slice_pattern, + sym_struct_pattern, + sym_mut_pattern, + sym_or_pattern, + sym__literal_pattern, + sym_tuple_enum_pattern, + ACTIONS(1445), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [13447] = 24, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1304), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1306), 1, - anon_sym_default, - ACTIONS(1308), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1310), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1312), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1316), 1, - sym_identifier, - ACTIONS(1318), 1, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(1437), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, + anon_sym_LPAREN, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, + sym_identifier, + ACTIONS(1451), 1, sym_super, - STATE(981), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(1179), 1, + STATE(927), 1, + sym_negative_literal, + STATE(957), 1, sym__pattern, - STATE(1259), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1332), 1, - sym_negative_literal, - STATE(1412), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1314), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1288), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1294), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39792,7 +40932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39807,54 +40947,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13109] = 24, + [13542] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1292), 1, - anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_COLON_COLON, - ACTIONS(1296), 1, - anon_sym_LPAREN, - ACTIONS(1298), 1, - anon_sym__, - ACTIONS(1302), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(1304), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(1306), 1, - anon_sym_default, - ACTIONS(1308), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(1310), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(1312), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1316), 1, + ACTIONS(1355), 1, + anon_sym__, + ACTIONS(1437), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_COLON_COLON, + ACTIONS(1441), 1, + anon_sym_LPAREN, + ACTIONS(1447), 1, + anon_sym_default, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1318), 1, - sym_mutable_specifier, - ACTIONS(1320), 1, + ACTIONS(1451), 1, sym_super, - STATE(981), 1, + ACTIONS(1513), 1, + sym_mutable_specifier, + STATE(874), 1, sym_scoped_identifier, - STATE(1193), 1, + STATE(927), 1, + sym_negative_literal, + STATE(1145), 1, sym__pattern, - STATE(1259), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1332), 1, - sym_negative_literal, - STATE(1412), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(1314), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1288), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(1294), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39863,7 +41003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1300), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39878,54 +41018,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13204] = 24, + [13637] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1418), 1, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1492), 1, - sym_mutable_specifier, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1146), 1, + STATE(954), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -39934,7 +41074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -39949,54 +41089,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13299] = 24, + [13732] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1418), 1, + ACTIONS(1365), 1, + sym_mutable_specifier, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - ACTIONS(1494), 1, - sym_mutable_specifier, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1103), 1, + STATE(1063), 1, sym__pattern, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40005,7 +41145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40020,54 +41160,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13394] = 24, + [13827] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1183), 1, + STATE(937), 1, + sym__pattern, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1440), 1, - sym__pattern, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40076,7 +41216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40091,54 +41231,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13489] = 24, + [13922] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1183), 1, + STATE(1143), 1, + sym__pattern, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1400), 1, - sym__pattern, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40147,7 +41287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40162,54 +41302,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13584] = 24, + [14017] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1183), 1, + STATE(1206), 1, sym_scoped_type_identifier, - STATE(1393), 1, - sym_generic_type_with_turbofish, - STATE(1437), 1, + STATE(1401), 1, sym__pattern, - STATE(1559), 1, + STATE(1414), 1, + sym_generic_type_with_turbofish, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40218,7 +41358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40233,54 +41373,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13679] = 24, + [14112] = 24, ACTIONS(3), 1, sym_line_comment, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(926), 1, + ACTIONS(889), 1, anon_sym_PIPE, - ACTIONS(932), 1, + ACTIONS(895), 1, sym_numeric_literal, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(936), 1, + ACTIONS(899), 1, sym_shortstring_literal, - ACTIONS(1336), 1, + ACTIONS(1355), 1, anon_sym__, - ACTIONS(1346), 1, + ACTIONS(1365), 1, sym_mutable_specifier, - ACTIONS(1418), 1, + ACTIONS(1437), 1, anon_sym_LBRACK, - ACTIONS(1422), 1, + ACTIONS(1439), 1, anon_sym_COLON_COLON, - ACTIONS(1424), 1, + ACTIONS(1441), 1, anon_sym_LPAREN, - ACTIONS(1430), 1, + ACTIONS(1447), 1, anon_sym_default, - ACTIONS(1432), 1, + ACTIONS(1449), 1, sym_identifier, - ACTIONS(1434), 1, + ACTIONS(1451), 1, sym_super, - STATE(864), 1, + STATE(874), 1, sym_scoped_identifier, - STATE(935), 1, + STATE(927), 1, sym_negative_literal, - STATE(1183), 1, - sym_scoped_type_identifier, - STATE(1390), 1, + STATE(1089), 1, sym__pattern, - STATE(1393), 1, + STATE(1206), 1, + sym_scoped_type_identifier, + STATE(1414), 1, sym_generic_type_with_turbofish, - STATE(1559), 1, + STATE(1567), 1, sym_generic_type, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(951), 2, + STATE(925), 2, sym_string_literal, sym_boolean_literal, - STATE(956), 8, + STATE(921), 8, sym_macro_invocation, sym_tuple_pattern, sym_slice_pattern, @@ -40289,7 +41429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_or_pattern, sym__literal_pattern, sym_tuple_enum_pattern, - ACTIONS(1428), 14, + ACTIONS(1445), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40304,61 +41444,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13774] = 23, + [14207] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1496), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1504), 1, + ACTIONS(1523), 1, anon_sym_GT, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1512), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1396), 3, + STATE(1379), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + STATE(1449), 3, sym__type, sym__literal, sym_block, - STATE(1411), 3, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [14299] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(887), 1, + anon_sym_DASH, + ACTIONS(897), 1, + aux_sym_string_literal_token1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1515), 1, + anon_sym_LBRACE, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1529), 1, + sym_numeric_literal, + ACTIONS(1531), 1, + sym_shortstring_literal, + ACTIONS(1533), 1, + sym_identifier, + ACTIONS(1535), 1, + anon_sym_GT, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + ACTIONS(901), 2, + anon_sym_true, + anon_sym_false, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(895), 5, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40373,61 +41582,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13866] = 23, + [14391] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1496), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1512), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - ACTIONS(1516), 1, + ACTIONS(1537), 1, anon_sym_GT, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1396), 3, - sym__type, - sym__literal, - sym_block, - STATE(1411), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(895), 5, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40442,61 +41651,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [13958] = 23, + [14483] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1496), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1512), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - ACTIONS(1518), 1, + ACTIONS(1539), 1, anon_sym_GT, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1396), 3, - sym__type, - sym__literal, - sym_block, - STATE(1411), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(895), 5, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40511,61 +41720,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14050] = 23, + [14575] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1496), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1512), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - ACTIONS(1520), 1, + ACTIONS(1541), 1, anon_sym_GT, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1396), 3, - sym__type, - sym__literal, - sym_block, - STATE(1411), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(895), 5, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40580,61 +41789,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14142] = 23, + [14667] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1496), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1512), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1543), 1, anon_sym_GT, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1396), 3, - sym__type, - sym__literal, - sym_block, - STATE(1411), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(895), 5, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40649,61 +41858,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14234] = 23, + [14759] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(924), 1, - anon_sym_DASH, - ACTIONS(934), 1, - aux_sym_string_literal_token1, - ACTIONS(946), 1, - sym_super, - ACTIONS(1496), 1, + ACTIONS(1243), 14, anon_sym_LBRACE, - ACTIONS(1498), 1, + anon_sym_BANG, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(1500), 1, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(1506), 1, + anon_sym_DASH, + anon_sym_TILDE, anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_default, - ACTIONS(1510), 1, - sym_numeric_literal, - ACTIONS(1512), 1, + aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1514), 1, - sym_identifier, - ACTIONS(1524), 1, - anon_sym_GT, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(995), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_scoped_identifier, - ACTIONS(938), 2, - anon_sym_true, - anon_sym_false, - STATE(1396), 3, - sym__type, - sym__literal, - sym_block, - STATE(1411), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1245), 30, + anon_sym_COLON, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40718,59 +41892,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14326] = 22, + anon_sym_break, + anon_sym_continue, + anon_sym_default, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_while, + anon_sym_for, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_super, + [14811] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1496), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1512), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1198), 3, + STATE(1165), 3, sym__type, sym__literal, sym_block, - STATE(1411), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40785,59 +41974,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14415] = 22, + [14900] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1496), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1512), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1396), 3, + STATE(1254), 3, sym__type, sym__literal, sym_block, - STATE(1411), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40852,93 +42041,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14504] = 22, + [14989] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1496), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1512), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1213), 3, + STATE(1328), 3, sym__type, sym__literal, sym_block, - STATE(1411), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [14593] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1252), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_TILDE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1254), 29, - anon_sym_COLON, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -40953,73 +42108,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_break, - anon_sym_continue, - anon_sym_default, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_while, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_super, - [14644] = 22, + [15078] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(924), 1, + ACTIONS(887), 1, anon_sym_DASH, - ACTIONS(934), 1, + ACTIONS(897), 1, aux_sym_string_literal_token1, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1496), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1510), 1, + ACTIONS(1529), 1, sym_numeric_literal, - ACTIONS(1512), 1, + ACTIONS(1531), 1, sym_shortstring_literal, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - ACTIONS(938), 2, + ACTIONS(901), 2, anon_sym_true, anon_sym_false, - STATE(1321), 3, - sym__type, - sym__literal, - sym_block, - STATE(1411), 3, + STATE(1379), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - STATE(895), 5, + STATE(1449), 3, + sym__type, + sym__literal, + sym_block, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41034,10 +42175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [14733] = 3, + [15167] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(739), 12, + ACTIONS(755), 12, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, @@ -41050,7 +42191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1526), 28, + ACTIONS(1545), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41073,18 +42214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_return, anon_sym_while, + anon_sym_for, sym_numeric_literal, anon_sym_true, anon_sym_false, anon_sym_ref, sym_identifier, sym_super, - [14781] = 3, + [15216] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 11, + ACTIONS(1549), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41094,15 +42235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1528), 26, + ACTIONS(1547), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_implicits, anon_sym_COLON_COLON, - anon_sym_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41121,12 +42262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14826] = 3, + anon_sym_nopanic, + [15261] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 11, + ACTIONS(1553), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41136,15 +42277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1532), 26, + ACTIONS(1551), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_implicits, anon_sym_COLON_COLON, - anon_sym_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41163,10 +42304,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [14871] = 3, + anon_sym_nopanic, + [15306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1538), 10, + ACTIONS(1557), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41177,7 +42319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1536), 27, + ACTIONS(1555), 27, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41205,11 +42347,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_nopanic, - [14916] = 3, + [15351] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1542), 10, + ACTIONS(1561), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41219,15 +42362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1540), 27, + ACTIONS(1559), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, anon_sym_COLON_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41246,20 +42389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_nopanic, - [14961] = 7, + [15396] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, - anon_sym_LBRACE, - ACTIONS(1546), 1, - anon_sym_BANG, - ACTIONS(1548), 1, - anon_sym_COLON_COLON, - STATE(445), 1, - sym_field_initializer_list, - ACTIONS(577), 10, + ACTIONS(1565), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41269,12 +42404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 23, + ACTIONS(1563), 26, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41293,10 +42431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15014] = 3, + [15441] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1552), 10, + ACTIONS(1567), 1, + anon_sym_LBRACE, + ACTIONS(1569), 1, + anon_sym_BANG, + ACTIONS(1571), 1, + anon_sym_COLON_COLON, + STATE(449), 1, + sym_field_initializer_list, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41307,15 +42453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1550), 27, - anon_sym_LBRACE, + ACTIONS(594), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41334,11 +42477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_nopanic, - [15059] = 3, + [15494] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 11, + ACTIONS(1575), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41350,7 +42492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1554), 26, + ACTIONS(1573), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41377,10 +42519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15104] = 3, + [15539] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1560), 11, + ACTIONS(1579), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41392,7 +42534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1558), 26, + ACTIONS(1577), 26, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41419,14 +42561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15149] = 4, + [15584] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1562), 1, - anon_sym_LBRACE, - ACTIONS(1556), 11, + ACTIONS(1581), 1, + anon_sym_else, + STATE(82), 1, + sym_else_clause, + ACTIONS(570), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41436,55 +42579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1554), 24, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [15195] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1564), 1, + ACTIONS(568), 24, anon_sym_LBRACE, - ACTIONS(1560), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1558), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41503,15 +42604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15241] = 5, + [15632] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1566), 1, - anon_sym_else, - STATE(75), 1, - sym_else_clause, - ACTIONS(559), 10, + ACTIONS(1583), 1, + anon_sym_LBRACE, + ACTIONS(1565), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41521,13 +42621,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(557), 24, - anon_sym_LBRACE, + ACTIONS(1563), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41546,12 +42646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15289] = 4, + [15678] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1568), 1, + ACTIONS(1585), 1, anon_sym_LBRACE, - ACTIONS(1534), 11, + ACTIONS(1561), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41563,7 +42663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1532), 24, + ACTIONS(1559), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41588,12 +42688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15335] = 4, + [15724] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1570), 1, + ACTIONS(1587), 1, anon_sym_LBRACE, - ACTIONS(1530), 11, + ACTIONS(1575), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -41605,7 +42705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1528), 24, + ACTIONS(1573), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41630,14 +42730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15381] = 4, + [15770] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1572), 2, + ACTIONS(1589), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1576), 10, + ACTIONS(1579), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41647,12 +42747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1574), 23, + ACTIONS(1577), 24, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -41671,147 +42772,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15426] = 8, + [15816] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - STATE(467), 1, - sym_arguments, - ACTIONS(1580), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1578), 20, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [15479] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1592), 1, + ACTIONS(1593), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1596), 1, + ACTIONS(1597), 1, anon_sym_nopanic, - ACTIONS(1598), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, - sym_scoped_type_identifier, - STATE(982), 1, - sym__type, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1433), 1, - sym_nopanic, - ACTIONS(1590), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [15552] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1592), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_default, - ACTIONS(1596), 1, - anon_sym_nopanic, - ACTIONS(1598), 1, - sym_identifier, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(993), 1, + STATE(995), 1, sym__type, - STATE(1364), 1, + STATE(1371), 1, sym_nopanic, - STATE(1366), 1, + STATE(1385), 1, sym_scoped_identifier, - ACTIONS(1600), 2, + ACTIONS(1591), 2, anon_sym_LBRACE, anon_sym_SEMI, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41826,13 +42827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15625] = 4, + [15889] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 2, - anon_sym_LBRACE, + ACTIONS(1601), 1, anon_sym_COLON_COLON, - ACTIONS(1576), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41843,7 +42843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1574), 23, + ACTIONS(594), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -41867,47 +42868,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15670] = 18, + [15934] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1592), 1, + ACTIONS(1593), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1596), 1, + ACTIONS(1597), 1, anon_sym_nopanic, - ACTIONS(1598), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(991), 1, + STATE(1003), 1, sym__type, - STATE(1366), 1, - sym_scoped_identifier, - STATE(1372), 1, + STATE(1364), 1, sym_nopanic, - ACTIONS(1604), 2, + STATE(1385), 1, + sym_scoped_identifier, + ACTIONS(1603), 2, anon_sym_LBRACE, anon_sym_SEMI, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -41922,20 +42923,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [15743] = 8, + [16007] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(538), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(536), 25, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_else, + [16050] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1608), 10, + ACTIONS(1607), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41946,7 +42987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1606), 20, + ACTIONS(1605), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -41967,20 +43008,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [15796] = 8, + [16103] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1617), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1621), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1619), 23, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1584), 1, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1586), 1, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(1588), 1, anon_sym_QMARK, - STATE(467), 1, - sym_arguments, - ACTIONS(1612), 10, + [16148] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1569), 1, + anon_sym_BANG, + ACTIONS(1623), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -41991,12 +43067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 20, - anon_sym_LBRACE, + ACTIONS(594), 23, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -42012,20 +43089,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [15849] = 8, + anon_sym_DOT, + anon_sym_QMARK, + [16195] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, + ACTIONS(1567), 1, anon_sym_LBRACE, - ACTIONS(1546), 1, + ACTIONS(1569), 1, anon_sym_BANG, - ACTIONS(1548), 1, + ACTIONS(1571), 1, anon_sym_COLON_COLON, - ACTIONS(1614), 1, + ACTIONS(1625), 1, anon_sym_COLON, - STATE(445), 1, + STATE(449), 1, sym_field_initializer_list, - ACTIONS(577), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42036,7 +43115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 20, + ACTIONS(594), 20, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -42057,14 +43136,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15902] = 5, + [16248] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1620), 1, - anon_sym_BANG, - ACTIONS(1622), 1, - anon_sym_COLON_COLON, - ACTIONS(1618), 10, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1629), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1627), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [16301] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(542), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42075,7 +43195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1616), 23, + ACTIONS(540), 25, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -42099,14 +43220,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15949] = 5, + anon_sym_else, + [16344] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1546), 1, - anon_sym_BANG, - ACTIONS(1624), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(577), 10, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1593), 1, + anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_default, + ACTIONS(1597), 1, + anon_sym_nopanic, + ACTIONS(1599), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1000), 1, + sym__type, + STATE(1385), 1, + sym_scoped_identifier, + STATE(1393), 1, + sym_nopanic, + ACTIONS(1631), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [16417] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1635), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42117,12 +43290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 23, + ACTIONS(1633), 25, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -42141,47 +43316,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [15996] = 18, + [16460] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1592), 1, + ACTIONS(1593), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1596), 1, + ACTIONS(1597), 1, anon_sym_nopanic, - ACTIONS(1598), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(990), 1, + STATE(994), 1, sym__type, - STATE(1366), 1, + STATE(1385), 1, sym_scoped_identifier, - STATE(1398), 1, + STATE(1450), 1, sym_nopanic, - ACTIONS(1626), 2, + ACTIONS(1637), 2, anon_sym_LBRACE, anon_sym_SEMI, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -42196,10 +43371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [16069] = 3, + [16533] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1630), 10, + ACTIONS(1639), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1621), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42210,14 +43388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1628), 25, - anon_sym_LBRACE, + ACTIONS(1619), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -42236,10 +43412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16112] = 3, + [16578] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(507), 10, + ACTIONS(1645), 1, + anon_sym_BANG, + ACTIONS(1647), 1, + anon_sym_COLON_COLON, + ACTIONS(1643), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42250,8 +43430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(505), 25, - anon_sym_LBRACE, + ACTIONS(1641), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -42275,13 +43454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_else, - [16155] = 4, + [16625] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1632), 1, - anon_sym_COLON_COLON, - ACTIONS(577), 10, + ACTIONS(562), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42292,7 +43468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 24, + ACTIONS(560), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42317,10 +43493,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16200] = 3, + anon_sym_else, + [16668] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(535), 10, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1651), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42331,14 +43518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(533), 25, + ACTIONS(1649), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -42354,13 +43539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_else, - [16243] = 3, + [16721] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(527), 10, + ACTIONS(1655), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42371,13 +43553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(525), 25, + ACTIONS(1653), 25, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -42396,21 +43579,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - anon_sym_else, - [16286] = 8, + [16764] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1636), 10, + ACTIONS(1659), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42421,7 +43603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1634), 20, + ACTIONS(1657), 20, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42442,10 +43624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16339] = 3, + [16817] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1640), 10, + ACTIONS(1663), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42456,14 +43638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1638), 25, + ACTIONS(1661), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, @@ -42482,12 +43663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16382] = 4, + [16859] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1642), 1, - anon_sym_COLON_COLON, - ACTIONS(577), 10, + ACTIONS(1667), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42498,93 +43677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 23, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [16426] = 12, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1612), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1610), 17, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [16486] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(483), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(481), 24, + ACTIONS(1665), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42609,10 +43702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16528] = 3, + [16901] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(495), 10, + ACTIONS(1671), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42623,7 +43716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(493), 24, + ACTIONS(1669), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42648,10 +43741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16570] = 3, + [16943] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1654), 10, + ACTIONS(1675), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42662,7 +43755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1652), 24, + ACTIONS(1673), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42687,10 +43780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16612] = 3, + [16985] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1658), 10, + ACTIONS(1679), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42701,7 +43794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1656), 24, + ACTIONS(1677), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42726,10 +43819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16654] = 3, + [17027] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1662), 10, + ACTIONS(1683), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42740,7 +43833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1660), 24, + ACTIONS(1681), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42765,104 +43858,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16696] = 18, + [17069] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1666), 1, + ACTIONS(1687), 1, anon_sym_EQ, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1664), 10, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [16768] = 18, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1682), 1, - anon_sym_EQ, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1680), 10, + ACTIONS(1685), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, @@ -42873,10 +43912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [16840] = 3, + [17141] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1686), 10, + ACTIONS(1711), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42887,7 +43926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1684), 24, + ACTIONS(1709), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42912,10 +43951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16882] = 3, + [17183] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(577), 10, + ACTIONS(1715), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42926,7 +43965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 24, + ACTIONS(1713), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42951,10 +43990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16924] = 3, + [17225] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1691), 10, + ACTIONS(1719), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -42965,7 +44004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1688), 24, + ACTIONS(1717), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -42990,10 +44029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [16966] = 3, + [17267] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1696), 10, + ACTIONS(1723), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43004,7 +44043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1694), 24, + ACTIONS(1721), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43029,10 +44068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17008] = 3, + [17309] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1700), 10, + ACTIONS(1727), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43043,7 +44082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1698), 24, + ACTIONS(1725), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43068,10 +44107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17050] = 3, + [17351] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1704), 10, + ACTIONS(1731), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43082,7 +44121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1702), 24, + ACTIONS(1729), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43107,10 +44146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17092] = 3, + [17393] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1708), 10, + ACTIONS(1735), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43121,7 +44160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1706), 24, + ACTIONS(1733), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43146,10 +44185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17134] = 3, + [17435] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1712), 10, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43160,8 +44201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1710), 24, - anon_sym_LBRACE, + ACTIONS(594), 23, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -43185,10 +44225,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17176] = 3, + [17479] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1716), 10, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1741), 1, + anon_sym_EQ, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1739), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [17551] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1745), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43199,7 +44293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1714), 24, + ACTIONS(1743), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43224,10 +44318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17218] = 3, + [17593] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(577), 10, + ACTIONS(1750), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43238,7 +44332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 24, + ACTIONS(1747), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43263,10 +44357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17260] = 3, + [17635] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1720), 10, + ACTIONS(1755), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43277,7 +44371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1718), 24, + ACTIONS(1753), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43302,10 +44396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17302] = 3, + [17677] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1724), 10, + ACTIONS(1759), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43316,7 +44410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1722), 24, + ACTIONS(1757), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43341,10 +44435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17344] = 3, + [17719] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1728), 10, + ACTIONS(1763), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43355,7 +44449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1726), 24, + ACTIONS(1761), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43380,10 +44474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17386] = 3, + [17761] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1732), 10, + ACTIONS(1767), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43394,7 +44488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1730), 24, + ACTIONS(1765), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43419,10 +44513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17428] = 3, + [17803] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1736), 10, + ACTIONS(1771), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43433,7 +44527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1734), 24, + ACTIONS(1769), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43458,10 +44552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17470] = 3, + [17845] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1740), 10, + ACTIONS(1775), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43472,7 +44566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1738), 24, + ACTIONS(1773), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43497,28 +44591,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17512] = 3, + [17887] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(491), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1629), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(489), 24, - anon_sym_LBRACE, + ACTIONS(1627), 19, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -43534,12 +44637,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + [17943] = 18, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, anon_sym_DOT, + ACTIONS(1615), 1, anon_sym_QMARK, - [17554] = 3, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1779), 1, + anon_sym_EQ, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1777), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [18015] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1744), 10, + ACTIONS(1783), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43550,7 +44705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1742), 24, + ACTIONS(1781), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43575,10 +44730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17596] = 3, + [18057] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1748), 10, + ACTIONS(479), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43589,7 +44744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 24, + ACTIONS(477), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43614,49 +44769,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17638] = 3, + [18099] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1752), 10, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1629), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1750), 24, - anon_sym_LBRACE, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1627), 11, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [17680] = 3, + [18169] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1756), 10, + ACTIONS(1787), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43667,7 +44836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1754), 24, + ACTIONS(1785), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -43692,88 +44861,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [17722] = 18, + [18211] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1629), 1, + anon_sym_EQ, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1760), 1, - anon_sym_EQ, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1758), 10, + ACTIONS(1627), 12, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [17794] = 3, + [18279] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1764), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + STATE(454), 1, + sym_arguments, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + ACTIONS(1629), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(1762), 24, - anon_sym_LBRACE, + ACTIONS(1627), 16, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43783,36 +44962,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [17836] = 3, + [18341] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1768), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1629), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1766), 24, - anon_sym_LBRACE, + ACTIONS(1627), 17, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43822,83 +45009,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [17878] = 17, + [18399] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1612), 1, - anon_sym_EQ, - ACTIONS(1648), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1610), 11, + ACTIONS(1629), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1627), 17, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [17948] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [18459] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1772), 10, - anon_sym_EQ, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1689), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1629), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1770), 24, - anon_sym_LBRACE, + ACTIONS(1627), 19, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -43914,44 +45102,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [17990] = 9, + [18513] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(467), 1, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + STATE(454), 1, sym_arguments, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1612), 7, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1629), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1610), 19, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1627), 16, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43961,10 +45152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18044] = 3, + [18577] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1776), 10, + ACTIONS(1791), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -43975,7 +45166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1774), 24, + ACTIONS(1789), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44000,98 +45191,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18086] = 16, + [18619] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1612), 1, + ACTIONS(1795), 10, anon_sym_EQ, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1610), 12, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1793), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [18154] = 13, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, + [18661] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(592), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1644), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 16, + ACTIONS(594), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44101,44 +45267,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18216] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1588), 1, anon_sym_QMARK, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, + [18703] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1799), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1644), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 17, + ACTIONS(1797), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44148,10 +45306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18274] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [18745] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1576), 10, + ACTIONS(1803), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44162,7 +45322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1574), 24, + ACTIONS(1801), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44187,10 +45347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18316] = 3, + [18787] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1780), 10, + ACTIONS(1807), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44201,7 +45361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1778), 24, + ACTIONS(1805), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44226,10 +45386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18358] = 3, + [18829] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1784), 10, + ACTIONS(1621), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44240,7 +45400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1782), 24, + ACTIONS(1619), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44265,10 +45425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18400] = 3, + [18871] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1788), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44279,7 +45439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1786), 24, + ACTIONS(594), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44304,10 +45464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18442] = 3, + [18913] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1792), 10, + ACTIONS(1811), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44318,7 +45478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1790), 24, + ACTIONS(1809), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44343,50 +45503,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18484] = 18, + [18955] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1796), 1, + ACTIONS(1815), 1, anon_sym_EQ, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1794), 10, + ACTIONS(1813), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RBRACK, @@ -44397,10 +45557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [18556] = 3, + [19027] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1800), 10, + ACTIONS(495), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -44411,7 +45571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1798), 24, + ACTIONS(493), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -44436,47 +45596,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [18598] = 14, + [19069] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1612), 3, + ACTIONS(499), 10, anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1610), 16, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(497), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44486,37 +45633,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18662] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, anon_sym_DOT, - ACTIONS(1588), 1, anon_sym_QMARK, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, + [19111] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1819), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1644), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 19, + ACTIONS(1817), 24, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -44532,15 +45672,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18718] = 3, + anon_sym_DOT, + anon_sym_QMARK, + [19153] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1119), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_POUND, + anon_sym_COLON_COLON, + ACTIONS(1121), 29, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_let, + anon_sym_use, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + anon_sym_extern, + anon_sym_pub, + sym_identifier, + sym_super, + [19194] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1264), 4, + ACTIONS(991), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1266), 29, + ACTIONS(993), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44570,15 +45750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18759] = 3, + [19235] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1088), 4, + ACTIONS(1243), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1090), 29, + ACTIONS(1245), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44608,15 +45788,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18800] = 3, + [19276] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1256), 4, + ACTIONS(702), 1, + anon_sym_RBRACK, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1821), 1, + anon_sym_SEMI, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1825), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + STATE(1317), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [19355] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1171), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1258), 29, + ACTIONS(1173), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44646,15 +45883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18841] = 3, + [19396] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1276), 4, + ACTIONS(1175), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1278), 29, + ACTIONS(1177), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44684,15 +45921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18882] = 3, + [19437] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1272), 4, + ACTIONS(995), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1274), 29, + ACTIONS(997), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44722,15 +45959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18923] = 3, + [19478] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1284), 4, + ACTIONS(1191), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1286), 29, + ACTIONS(1193), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44760,55 +45997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [18964] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1802), 1, - anon_sym_POUND, - STATE(494), 3, - sym_attribute_item, - sym_inner_attribute_item, - aux_sym_match_arm_repeat1, - ACTIONS(1805), 7, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1807), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [19009] = 3, + [19519] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1240), 4, + ACTIONS(979), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1242), 29, + ACTIONS(981), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44838,15 +46035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19050] = 3, + [19560] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1232), 4, + ACTIONS(1271), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1234), 29, + ACTIONS(1273), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44876,15 +46073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19091] = 3, + [19601] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1080), 4, + ACTIONS(1267), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1082), 29, + ACTIONS(1269), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44914,15 +46111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19132] = 3, + [19642] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1052), 4, + ACTIONS(1259), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1054), 29, + ACTIONS(1261), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -44952,72 +46149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19173] = 22, + [19683] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(676), 1, - anon_sym_RBRACK, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1809), 1, - anon_sym_SEMI, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1813), 1, - anon_sym_COMMA, - STATE(467), 1, - sym_arguments, - STATE(1153), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [19252] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1172), 4, + ACTIONS(1043), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1174), 29, + ACTIONS(1045), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45047,15 +46187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19293] = 3, + [19724] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1048), 4, + ACTIONS(1115), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1050), 29, + ACTIONS(1117), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45085,72 +46225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19334] = 22, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(688), 1, - anon_sym_RBRACK, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1817), 1, - anon_sym_SEMI, - ACTIONS(1819), 1, - anon_sym_COMMA, - STATE(467), 1, - sym_arguments, - STATE(1310), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [19413] = 3, + [19765] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1004), 4, + ACTIONS(1047), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1006), 29, + ACTIONS(1049), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45180,15 +46263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19454] = 3, + [19806] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1156), 4, + ACTIONS(1055), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1158), 29, + ACTIONS(1057), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45218,15 +46301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19495] = 3, + [19847] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1032), 4, + ACTIONS(1059), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1034), 29, + ACTIONS(1061), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45256,15 +46339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19536] = 3, + [19888] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1260), 4, + ACTIONS(999), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1262), 29, + ACTIONS(1001), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45294,15 +46377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19577] = 3, + [19929] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1224), 4, + ACTIONS(1019), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1226), 29, + ACTIONS(1021), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45332,15 +46415,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19618] = 3, + [19970] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1216), 4, + ACTIONS(1829), 1, + anon_sym_LBRACE, + ACTIONS(1831), 1, + anon_sym_BANG, + ACTIONS(1833), 1, + anon_sym_COLON_COLON, + STATE(804), 1, + sym_field_initializer_list, + ACTIONS(592), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(594), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [20019] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1007), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1218), 29, + ACTIONS(1009), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45370,15 +46495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19659] = 3, + [20060] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1208), 4, + ACTIONS(1183), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1210), 29, + ACTIONS(1185), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45408,15 +46533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19700] = 3, + [20101] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1164), 4, + ACTIONS(1295), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1166), 29, + ACTIONS(1297), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45446,15 +46571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19741] = 3, + [20142] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1128), 4, + ACTIONS(1187), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1130), 29, + ACTIONS(1189), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45484,15 +46609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19782] = 3, + [20183] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1144), 4, + ACTIONS(983), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1146), 29, + ACTIONS(985), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45522,15 +46647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19823] = 3, + [20224] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1132), 4, + ACTIONS(1227), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1134), 29, + ACTIONS(1229), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45560,15 +46685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19864] = 3, + [20265] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1124), 4, + ACTIONS(1231), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1126), 29, + ACTIONS(1233), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45598,15 +46723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19905] = 3, + [20306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1028), 4, + ACTIONS(1251), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1030), 29, + ACTIONS(1253), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45636,15 +46761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19946] = 3, + [20347] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1152), 4, + ACTIONS(1283), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1154), 29, + ACTIONS(1285), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45674,15 +46799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [19987] = 3, + [20388] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1024), 4, + ACTIONS(1287), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1026), 29, + ACTIONS(1289), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45712,72 +46837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20028] = 22, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(684), 1, - anon_sym_RBRACK, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1821), 1, - anon_sym_SEMI, - ACTIONS(1823), 1, - anon_sym_COMMA, - STATE(467), 1, - sym_arguments, - STATE(1257), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [20107] = 3, + [20429] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(968), 4, + ACTIONS(1143), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(970), 29, + ACTIONS(1145), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45807,15 +46875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20148] = 3, + [20470] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1112), 4, + ACTIONS(1163), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1114), 29, + ACTIONS(1165), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45845,15 +46913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20189] = 3, + [20511] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(988), 4, + ACTIONS(1063), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(990), 29, + ACTIONS(1065), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45883,15 +46951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20230] = 3, + [20552] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1020), 4, + ACTIONS(1263), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1022), 29, + ACTIONS(1265), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45921,15 +46989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20271] = 3, + [20593] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1068), 4, + ACTIONS(1211), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1070), 29, + ACTIONS(1213), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45959,15 +47027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20312] = 3, + [20634] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1016), 4, + ACTIONS(1107), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1018), 29, + ACTIONS(1109), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -45997,15 +47065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20353] = 3, + [20675] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1092), 4, + ACTIONS(1071), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1094), 29, + ACTIONS(1073), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46035,15 +47103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20394] = 3, + [20716] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1148), 4, + ACTIONS(1199), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1150), 29, + ACTIONS(1201), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46073,15 +47141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20435] = 3, + [20757] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1120), 4, + ACTIONS(1051), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1122), 29, + ACTIONS(1053), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46111,15 +47179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20476] = 3, + [20798] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1056), 4, + ACTIONS(1015), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1058), 29, + ACTIONS(1017), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46149,15 +47217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20517] = 3, + [20839] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1012), 4, + ACTIONS(1207), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1014), 29, + ACTIONS(1209), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46187,15 +47255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20558] = 3, + [20880] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1008), 4, + ACTIONS(1087), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1010), 29, + ACTIONS(1089), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46225,15 +47293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20599] = 3, + [20921] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1060), 4, + ACTIONS(1167), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1062), 29, + ACTIONS(1169), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46263,15 +47331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20640] = 3, + [20962] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 4, + ACTIONS(1159), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1254), 29, + ACTIONS(1161), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46301,15 +47369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20681] = 3, + [21003] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1044), 4, + ACTIONS(1255), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1046), 29, + ACTIONS(1257), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46339,15 +47407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20722] = 3, + [21044] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1084), 4, + ACTIONS(1155), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1086), 29, + ACTIONS(1157), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46377,15 +47445,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20763] = 3, + [21085] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(616), 1, + anon_sym_RBRACK, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1835), 1, + anon_sym_SEMI, + ACTIONS(1837), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + STATE(1237), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [21164] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1076), 4, + ACTIONS(1279), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1078), 29, + ACTIONS(1281), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46415,15 +47540,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20804] = 3, + [21205] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1108), 4, + ACTIONS(612), 1, + anon_sym_RBRACK, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1839), 1, + anon_sym_SEMI, + ACTIONS(1841), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + STATE(1264), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [21284] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1147), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1110), 29, + ACTIONS(1149), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46453,15 +47635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20845] = 3, + [21325] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1176), 4, + ACTIONS(1075), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1178), 29, + ACTIONS(1077), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46491,15 +47673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20886] = 3, + [21366] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1180), 4, + ACTIONS(1303), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1182), 29, + ACTIONS(1305), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46529,15 +47711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20927] = 3, + [21407] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1228), 4, + ACTIONS(1151), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1230), 29, + ACTIONS(1153), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46567,15 +47749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [20968] = 3, + [21448] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1244), 4, + ACTIONS(1039), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1246), 29, + ACTIONS(1041), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46605,15 +47787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21009] = 3, + [21489] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1072), 4, + ACTIONS(1179), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1074), 29, + ACTIONS(1181), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46643,15 +47825,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21050] = 3, + [21530] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(718), 1, + anon_sym_RBRACK, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1843), 1, + anon_sym_SEMI, + ACTIONS(1845), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + STATE(1207), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [21609] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1280), 4, + ACTIONS(1275), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1282), 29, + ACTIONS(1277), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46681,15 +47920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21091] = 3, + [21650] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(976), 4, + ACTIONS(1139), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(978), 29, + ACTIONS(1141), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46719,15 +47958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21132] = 3, + [21691] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1248), 4, + ACTIONS(1135), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1250), 29, + ACTIONS(1137), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46757,15 +47996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21173] = 3, + [21732] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1040), 4, + ACTIONS(1131), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1042), 29, + ACTIONS(1133), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46795,15 +48034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21214] = 3, + [21773] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1036), 4, + ACTIONS(1127), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1038), 29, + ACTIONS(1129), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46833,15 +48072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21255] = 3, + [21814] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1000), 4, + ACTIONS(1223), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1002), 29, + ACTIONS(1225), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46871,15 +48110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21296] = 3, + [21855] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1220), 4, + ACTIONS(1219), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1222), 29, + ACTIONS(1221), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -46909,72 +48148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21337] = 22, + [21896] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(704), 1, - anon_sym_RBRACK, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1825), 1, - anon_sym_SEMI, - ACTIONS(1827), 1, - anon_sym_COMMA, - STATE(467), 1, - sym_arguments, - STATE(1260), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [21416] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1204), 4, + ACTIONS(1239), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1206), 29, + ACTIONS(1241), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47004,15 +48186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21457] = 3, + [21937] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1064), 4, + ACTIONS(1247), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1066), 29, + ACTIONS(1249), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47042,15 +48224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21498] = 3, + [21978] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(980), 4, + ACTIONS(1235), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(982), 29, + ACTIONS(1237), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47080,15 +48262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21539] = 3, + [22019] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(984), 4, + ACTIONS(1299), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(986), 29, + ACTIONS(1301), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47118,15 +48300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21580] = 3, + [22060] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(992), 4, + ACTIONS(1215), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(994), 29, + ACTIONS(1217), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47156,15 +48338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21621] = 3, + [22101] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1096), 4, + ACTIONS(1123), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1098), 29, + ACTIONS(1125), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47194,57 +48376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21662] = 7, + [22142] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1829), 1, - anon_sym_LBRACE, - ACTIONS(1831), 1, - anon_sym_BANG, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - STATE(798), 1, - sym_field_initializer_list, - ACTIONS(577), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(579), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [21711] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1104), 4, + ACTIONS(1195), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1106), 29, + ACTIONS(1197), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47274,15 +48414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21752] = 3, + [22183] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1184), 4, + ACTIONS(1103), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1186), 29, + ACTIONS(1105), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47312,15 +48452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21793] = 3, + [22224] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1136), 4, + ACTIONS(1095), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1138), 29, + ACTIONS(1097), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47350,15 +48490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21834] = 3, + [22265] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1236), 4, + ACTIONS(987), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1238), 29, + ACTIONS(989), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47388,15 +48528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21875] = 3, + [22306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1188), 4, + ACTIONS(1111), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1190), 29, + ACTIONS(1113), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47426,15 +48566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21916] = 3, + [22347] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(972), 4, + ACTIONS(1003), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(974), 29, + ACTIONS(1005), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47464,15 +48604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21957] = 3, + [22388] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1168), 4, + ACTIONS(1023), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1170), 29, + ACTIONS(1025), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47502,15 +48642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [21998] = 3, + [22429] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 4, + ACTIONS(1027), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1214), 29, + ACTIONS(1029), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47540,15 +48680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22039] = 3, + [22470] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1140), 4, + ACTIONS(1031), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1142), 29, + ACTIONS(1033), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47578,15 +48718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22080] = 3, + [22511] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1268), 4, + ACTIONS(1099), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1270), 29, + ACTIONS(1101), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47616,15 +48756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22121] = 3, + [22552] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1100), 4, + ACTIONS(1083), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1102), 29, + ACTIONS(1085), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47654,15 +48794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22162] = 3, + [22593] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1200), 4, + ACTIONS(1035), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1202), 29, + ACTIONS(1037), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47692,15 +48832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22203] = 3, + [22634] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1196), 4, + ACTIONS(1091), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1198), 29, + ACTIONS(1093), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47730,15 +48870,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22244] = 3, + [22675] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1116), 4, + ACTIONS(1847), 1, + anon_sym_POUND, + STATE(578), 3, + sym_attribute_item, + sym_inner_attribute_item, + aux_sym_match_arm_repeat1, + ACTIONS(1850), 7, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1852), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [22720] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1079), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1118), 29, + ACTIONS(1081), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47768,15 +48948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22285] = 3, + [22761] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1192), 4, + ACTIONS(1067), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_POUND, anon_sym_COLON_COLON, - ACTIONS(1194), 29, + ACTIONS(1069), 29, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -47806,25 +48986,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, sym_identifier, sym_super, - [22326] = 3, + [22802] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1854), 1, + anon_sym_RPAREN, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1032), 1, + sym__type, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [22868] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_COLON_COLON, + ACTIONS(1870), 1, + anon_sym_GT, + ACTIONS(1874), 1, + anon_sym_default, + ACTIONS(1876), 1, + sym_identifier, + STATE(1250), 1, + sym_generic_type_with_turbofish, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(670), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1447), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [22934] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1160), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - ACTIONS(1162), 29, + ACTIONS(1860), 1, anon_sym_impl, - anon_sym_trait, - anon_sym_type, + ACTIONS(1862), 1, anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_let, - anon_sym_use, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_COLON_COLON, + ACTIONS(1874), 1, + anon_sym_default, + ACTIONS(1876), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_GT, + STATE(1250), 1, + sym_generic_type_with_turbofish, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, + sym_scoped_type_identifier, + STATE(1498), 1, + sym_scoped_identifier, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(670), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1447), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -47839,17 +49135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - anon_sym_default, - anon_sym_extern, - anon_sym_pub, - sym_identifier, sym_super, - [22367] = 4, + [23000] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1570), 1, + ACTIONS(1587), 1, anon_sym_LBRACE, - ACTIONS(1530), 11, + ACTIONS(1575), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -47861,7 +49153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1528), 20, + ACTIONS(1573), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -47882,41 +49174,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [22409] = 16, + [23042] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1835), 1, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + ACTIONS(1880), 1, + anon_sym_RPAREN, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1032), 1, + sym__type, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [23108] = 16, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1860), 1, anon_sym_impl, - ACTIONS(1837), 1, + ACTIONS(1862), 1, anon_sym_const, - ACTIONS(1839), 1, + ACTIONS(1864), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1845), 1, - anon_sym_GT, - ACTIONS(1849), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1851), 1, + ACTIONS(1876), 1, sym_identifier, - STATE(1327), 1, - sym_generic_type, - STATE(1338), 1, + ACTIONS(1882), 1, + anon_sym_GT, + STATE(1250), 1, sym_generic_type_with_turbofish, - STATE(1344), 1, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1623), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1847), 2, + ACTIONS(1872), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(668), 2, + STATE(670), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1443), 2, + STATE(1447), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1843), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -47932,191 +49274,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [22475] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1546), 1, - anon_sym_BANG, - ACTIONS(1853), 1, - anon_sym_COLON_COLON, - STATE(445), 1, - sym_field_initializer_list, - ACTIONS(577), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(579), 19, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [22521] = 21, + [23174] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(608), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1855), 1, + ACTIONS(1884), 1, anon_sym_COMMA, - ACTIONS(1857), 1, - anon_sym_RPAREN, - STATE(467), 1, + STATE(454), 1, sym_arguments, - STATE(1149), 1, + STATE(1297), 1, aux_sym_arguments_repeat1, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [22597] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(599), 1, - anon_sym_RPAREN, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1859), 1, - anon_sym_COMMA, - STATE(467), 1, - sym_arguments, - STATE(1284), 1, - aux_sym_arguments_repeat1, - ACTIONS(1646), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [22673] = 16, + [23250] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1835), 1, + ACTIONS(1860), 1, anon_sym_impl, - ACTIONS(1837), 1, + ACTIONS(1862), 1, anon_sym_const, - ACTIONS(1839), 1, + ACTIONS(1864), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1849), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1851), 1, + ACTIONS(1876), 1, sym_identifier, - ACTIONS(1861), 1, + ACTIONS(1886), 1, anon_sym_GT, - STATE(1327), 1, - sym_generic_type, - STATE(1338), 1, + STATE(1250), 1, sym_generic_type_with_turbofish, - STATE(1344), 1, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1623), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1847), 2, + ACTIONS(1872), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(668), 2, + STATE(670), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1443), 2, + STATE(1447), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1843), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48132,14 +49379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [22739] = 4, + [23316] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1564), 1, - anon_sym_LBRACE, - ACTIONS(1560), 11, - anon_sym_EQ, + ACTIONS(1569), 1, anon_sym_BANG, + ACTIONS(1888), 1, + anon_sym_COLON_COLON, + STATE(449), 1, + sym_field_initializer_list, + ACTIONS(592), 10, + anon_sym_EQ, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -48149,9 +49399,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1558), 20, + ACTIONS(594), 19, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -48168,94 +49418,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK, - [22781] = 16, + [23362] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1835), 1, + ACTIONS(1860), 1, anon_sym_impl, - ACTIONS(1837), 1, + ACTIONS(1862), 1, anon_sym_const, - ACTIONS(1839), 1, + ACTIONS(1864), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1849), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1851), 1, + ACTIONS(1876), 1, sym_identifier, - ACTIONS(1863), 1, + ACTIONS(1890), 1, anon_sym_GT, - STATE(1327), 1, - sym_generic_type, - STATE(1338), 1, + STATE(1250), 1, sym_generic_type_with_turbofish, - STATE(1344), 1, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1623), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1847), 2, + ACTIONS(1872), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(668), 2, + STATE(670), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1443), 2, + STATE(1447), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1843), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [22847] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1865), 1, - anon_sym_RPAREN, - ACTIONS(1867), 1, - anon_sym_default, - ACTIONS(1869), 1, - sym_identifier, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(892), 1, - sym_scoped_type_identifier, - STATE(1169), 1, - sym__type, - STATE(1362), 1, - sym_scoped_identifier, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48270,172 +49468,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [22913] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1867), 1, - anon_sym_default, - ACTIONS(1869), 1, - sym_identifier, - ACTIONS(1871), 1, - anon_sym_RPAREN, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(892), 1, - sym_scoped_type_identifier, - STATE(1024), 1, - sym__type, - STATE(1362), 1, - sym_scoped_identifier, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [22979] = 21, + [23428] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(696), 1, + ACTIONS(708), 1, anon_sym_RBRACK, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1873), 1, + ACTIONS(1892), 1, anon_sym_COMMA, - STATE(467), 1, + STATE(454), 1, sym_arguments, - STATE(1307), 1, + STATE(1299), 1, aux_sym_array_expression_repeat1, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [23055] = 21, + [23504] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1875), 1, + ACTIONS(1894), 1, anon_sym_COMMA, - ACTIONS(1877), 1, + ACTIONS(1896), 1, anon_sym_RPAREN, - STATE(467), 1, + STATE(454), 1, sym_arguments, - STATE(1316), 1, + STATE(1239), 1, aux_sym_arguments_repeat1, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [23131] = 4, + [23580] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1562), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1556), 11, + ACTIONS(1579), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -48447,7 +49596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1554), 20, + ACTIONS(1577), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -48468,67 +49617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [23173] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(706), 1, - anon_sym_RBRACK, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1879), 1, - anon_sym_COMMA, - STATE(467), 1, - sym_arguments, - STATE(1216), 1, - aux_sym_array_expression_repeat1, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [23249] = 4, + [23622] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1568), 1, + ACTIONS(1585), 1, anon_sym_LBRACE, - ACTIONS(1534), 11, + ACTIONS(1561), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -48540,7 +49634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1532), 20, + ACTIONS(1559), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -48561,296 +49655,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [23291] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(595), 1, - anon_sym_RPAREN, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1881), 1, - anon_sym_COMMA, - STATE(467), 1, - sym_arguments, - STATE(1282), 1, - aux_sym_arguments_repeat1, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [23367] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1835), 1, - anon_sym_impl, - ACTIONS(1837), 1, - anon_sym_const, - ACTIONS(1839), 1, - anon_sym_POUND, - ACTIONS(1841), 1, - anon_sym_COLON_COLON, - ACTIONS(1849), 1, - anon_sym_default, - ACTIONS(1851), 1, - sym_identifier, - ACTIONS(1883), 1, - anon_sym_GT, - STATE(1327), 1, - sym_generic_type, - STATE(1338), 1, - sym_generic_type_with_turbofish, - STATE(1344), 1, - sym_scoped_type_identifier, - STATE(1623), 1, - sym_scoped_identifier, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(668), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1443), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1843), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [23433] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1867), 1, - anon_sym_default, - ACTIONS(1869), 1, - sym_identifier, - ACTIONS(1885), 1, - anon_sym_RPAREN, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(892), 1, - sym_scoped_type_identifier, - STATE(1024), 1, - sym__type, - STATE(1362), 1, - sym_scoped_identifier, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [23499] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1835), 1, - anon_sym_impl, - ACTIONS(1837), 1, - anon_sym_const, - ACTIONS(1839), 1, - anon_sym_POUND, - ACTIONS(1841), 1, - anon_sym_COLON_COLON, - ACTIONS(1849), 1, - anon_sym_default, - ACTIONS(1851), 1, - sym_identifier, - ACTIONS(1887), 1, - anon_sym_GT, - STATE(1327), 1, - sym_generic_type, - STATE(1338), 1, - sym_generic_type_with_turbofish, - STATE(1344), 1, - sym_scoped_type_identifier, - STATE(1623), 1, - sym_scoped_identifier, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(668), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1443), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1843), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [23565] = 16, + [23664] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1835), 1, + ACTIONS(1860), 1, anon_sym_impl, - ACTIONS(1837), 1, + ACTIONS(1862), 1, anon_sym_const, - ACTIONS(1839), 1, + ACTIONS(1864), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1849), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1851), 1, + ACTIONS(1876), 1, sym_identifier, - ACTIONS(1889), 1, + ACTIONS(1898), 1, anon_sym_GT, - STATE(1327), 1, - sym_generic_type, - STATE(1338), 1, + STATE(1250), 1, sym_generic_type_with_turbofish, - STATE(1344), 1, - sym_scoped_type_identifier, - STATE(1623), 1, - sym_scoped_identifier, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(668), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1443), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1843), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [23631] = 16, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1835), 1, - anon_sym_impl, - ACTIONS(1837), 1, - anon_sym_const, - ACTIONS(1839), 1, - anon_sym_POUND, - ACTIONS(1841), 1, - anon_sym_COLON_COLON, - ACTIONS(1849), 1, - anon_sym_default, - ACTIONS(1851), 1, - sym_identifier, - ACTIONS(1891), 1, - anon_sym_GT, - STATE(1327), 1, + STATE(1256), 1, sym_generic_type, - STATE(1338), 1, - sym_generic_type_with_turbofish, - STATE(1344), 1, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1623), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1847), 2, + ACTIONS(1872), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(668), 2, + STATE(670), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1443), 2, + STATE(1447), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1843), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48866,40 +49705,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [23697] = 15, + [23730] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1876), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, + ACTIONS(1900), 1, + anon_sym_GT, + STATE(1250), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1208), 1, - sym__type, - STATE(1362), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(670), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1447), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -48914,85 +49754,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [23760] = 4, + sym_super, + [23796] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1893), 1, - anon_sym_RBRACE, - ACTIONS(1895), 8, - anon_sym_POUND, + ACTIONS(598), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1611), 1, anon_sym_LPAREN, - anon_sym_DASH, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1897), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [23801] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1899), 1, - anon_sym_else, - STATE(802), 1, - sym_else_clause, - ACTIONS(559), 10, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1902), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + STATE(1265), 1, + aux_sym_arguments_repeat1, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(557), 19, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [23872] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(704), 1, + anon_sym_RBRACK, + ACTIONS(1609), 1, anon_sym_LBRACK, + ACTIONS(1611), 1, anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, anon_sym_AMP_AMP, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1904), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + STATE(1331), 1, + aux_sym_array_expression_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [23844] = 3, + [23948] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 11, + ACTIONS(1583), 1, + anon_sym_LBRACE, + ACTIONS(1565), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -49004,8 +49882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1554), 20, - anon_sym_LBRACE, + ACTIONS(1563), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -49024,94 +49901,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [23883] = 20, + [23990] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1901), 1, - anon_sym_RBRACE, - ACTIONS(1903), 1, - anon_sym_SEMI, - STATE(467), 1, + ACTIONS(1906), 1, + anon_sym_COMMA, + ACTIONS(1908), 1, + anon_sym_RPAREN, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + STATE(1347), 1, + aux_sym_arguments_repeat1, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [23956] = 15, + [24066] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, - anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1514), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, + ACTIONS(1910), 1, + anon_sym_RPAREN, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1370), 1, - sym_scoped_identifier, - STATE(1457), 1, + STATE(1269), 1, sym__type, - STATE(895), 5, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49126,50 +50008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24019] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1602), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(1576), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1574), 19, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [24060] = 4, + [24132] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1572), 2, - anon_sym_LBRACE, + ACTIONS(1912), 1, + anon_sym_BANG, + ACTIONS(1914), 1, anon_sym_COLON_COLON, - ACTIONS(1576), 10, + ACTIONS(1643), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -49180,7 +50026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1574), 19, + ACTIONS(1641), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -49200,88 +50046,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [24101] = 15, + [24175] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1459), 1, - sym__type, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [24164] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1592), 1, - anon_sym_AT, - ACTIONS(1594), 1, - anon_sym_default, - ACTIONS(1598), 1, - sym_identifier, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1013), 1, - sym__type, - STATE(1366), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(1600), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49296,145 +50094,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24227] = 20, + [24238] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - ACTIONS(1905), 1, + ACTIONS(1916), 1, anon_sym_RBRACE, - STATE(467), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24300] = 20, + [24311] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(193), 1, - anon_sym_RBRACE, - ACTIONS(1582), 1, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [24373] = 15, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1032), 1, + sym__type, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24374] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1835), 1, + ACTIONS(1860), 1, anon_sym_impl, - ACTIONS(1837), 1, + ACTIONS(1862), 1, anon_sym_const, - ACTIONS(1839), 1, + ACTIONS(1864), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1849), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1851), 1, + ACTIONS(1876), 1, sym_identifier, - STATE(1327), 1, - sym_generic_type, - STATE(1338), 1, + STATE(1250), 1, sym_generic_type_with_turbofish, - STATE(1344), 1, + STATE(1256), 1, + sym_generic_type, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1623), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1847), 2, + ACTIONS(1872), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(668), 2, + STATE(670), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1443), 2, + STATE(1447), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1843), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49450,194 +50243,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [24436] = 20, + [24437] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - ACTIONS(1907), 1, - anon_sym_RBRACE, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [24509] = 20, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(911), 1, + sym__type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [24500] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(201), 1, - anon_sym_RBRACE, - ACTIONS(1582), 1, + ACTIONS(732), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - STATE(467), 1, + ACTIONS(1920), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24582] = 15, + [24573] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1408), 1, - sym__type, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [24645] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1867), 1, - anon_sym_default, - ACTIONS(1869), 1, - sym_identifier, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1404), 1, + STATE(1335), 1, sym__type, - STATE(895), 5, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49652,199 +50392,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24708] = 20, + [24636] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(197), 1, + ACTIONS(97), 1, anon_sym_RBRACE, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(1918), 1, anon_sym_SEMI, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24781] = 20, + [24709] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(718), 1, + ACTIONS(730), 1, anon_sym_RPAREN, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1909), 1, + ACTIONS(1920), 1, anon_sym_COMMA, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [24854] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - ACTIONS(1911), 1, - anon_sym_RBRACE, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [24927] = 15, + [24782] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, - anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1514), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1351), 1, - sym__type, - STATE(1370), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(1629), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49859,40 +50546,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [24990] = 15, + [24845] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1314), 1, + STATE(1382), 1, sym__type, - STATE(1362), 1, + STATE(1386), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49907,40 +50594,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25053] = 15, + [24908] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1600), 1, + STATE(1296), 1, sym__type, - STATE(895), 5, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -49955,124 +50642,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25116] = 3, + [24971] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1542), 10, + ACTIONS(81), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, anon_sym_EQ, - anon_sym_STAR, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1540), 21, - anon_sym_LBRACE, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25044] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1611), 1, anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1922), 1, + anon_sym_LBRACE, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, anon_sym_AMP_AMP, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, + STATE(294), 1, + sym_match_block, + STATE(454), 1, + sym_arguments, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1944), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [25155] = 15, + [25117] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1584), 1, - sym__type, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [25218] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1506), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_default, - ACTIONS(1514), 1, - sym_identifier, - STATE(871), 1, + STATE(881), 1, sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(1386), 1, + STATE(1589), 1, sym__type, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50087,196 +50796,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25281] = 19, + [25180] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(467), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(1948), 1, + anon_sym_RBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1913), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25352] = 19, + [25253] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(821), 1, + anon_sym_LBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - STATE(467), 1, + STATE(263), 1, + sym_block, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1915), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1644), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1944), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25423] = 19, + [25326] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(216), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(467), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1917), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25494] = 15, + [25399] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1403), 1, + sym_scoped_identifier, + STATE(1582), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [25462] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1533), 1, + sym_identifier, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1386), 1, sym_scoped_identifier, - STATE(1533), 1, + STATE(1396), 1, sym__type, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50291,40 +51051,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25557] = 15, + [25525] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(1950), 1, + anon_sym_RBRACE, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25598] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1292), 1, + STATE(1273), 1, sym__type, - STATE(1362), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50339,40 +51152,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25620] = 15, + [25661] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1601), 1, + STATE(1295), 1, sym__type, - STATE(895), 5, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50387,39 +51200,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25683] = 15, + [25724] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1835), 1, + ACTIONS(93), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [25797] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1860), 1, anon_sym_impl, - ACTIONS(1837), 1, + ACTIONS(1862), 1, anon_sym_const, - ACTIONS(1839), 1, + ACTIONS(1864), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1849), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1919), 1, + ACTIONS(1952), 1, sym_identifier, - STATE(1056), 1, - sym_generic_type, - STATE(1057), 1, + STATE(1079), 1, sym_generic_type_with_turbofish, - STATE(1344), 1, + STATE(1084), 1, + sym_generic_type, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1623), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1847), 2, + ACTIONS(1872), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(642), 2, + STATE(837), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1329), 2, + STATE(1291), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1843), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50435,40 +51301,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [25746] = 15, + [25860] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1585), 1, + STATE(1363), 1, sym__type, - STATE(895), 5, + STATE(1386), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50483,144 +51349,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [25809] = 19, + [25923] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1921), 2, + ACTIONS(1954), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25880] = 19, + [25994] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, + ACTIONS(1956), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [26065] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1923), 2, - anon_sym_RBRACE, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1958), 2, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [25951] = 15, + [26136] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1593), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1514), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1370), 1, - sym_scoped_identifier, - STATE(1381), 1, + STATE(1049), 1, sym__type, - STATE(895), 5, + STATE(1385), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50635,146 +51553,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26014] = 20, + [26199] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1553), 10, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - ACTIONS(1925), 1, - anon_sym_RBRACE, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26087] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(221), 1, - anon_sym_RBRACE, - ACTIONS(1582), 1, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1551), 21, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1584), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26160] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [26238] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1301), 1, - sym__type, - STATE(1362), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(1459), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -50789,444 +51637,687 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26223] = 19, + [26301] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(467), 1, + ACTIONS(1960), 1, + anon_sym_COMMA, + ACTIONS(1962), 1, + anon_sym_RPAREN, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1927), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26294] = 5, + [26374] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1620), 1, - anon_sym_BANG, - ACTIONS(1929), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(1618), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1616), 19, - anon_sym_LBRACE, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, anon_sym_LBRACK, + ACTIONS(1519), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [26337] = 19, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + STATE(1471), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [26437] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1931), 2, + ACTIONS(1964), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26408] = 20, + [26508] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1243), 8, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AT, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1245), 23, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + anon_sym_ref, + sym_identifier, + sym_mutable_specifier, + sym_super, + [26547] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - ACTIONS(1933), 1, - anon_sym_RBRACE, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1966), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26481] = 19, + [26618] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1403), 1, + sym_scoped_identifier, + STATE(1566), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [26681] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(222), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(467), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1935), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26552] = 20, + [26754] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(219), 1, - anon_sym_RBRACE, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(1918), 1, anon_sym_SEMI, - STATE(467), 1, + ACTIONS(1968), 1, + anon_sym_RBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26625] = 19, + [26827] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1579), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1577), 20, anon_sym_LBRACK, - ACTIONS(1584), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1937), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26696] = 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [26866] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1939), 1, - anon_sym_LBRACE, - ACTIONS(1941), 1, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + STATE(1410), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [26929] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1549), 10, anon_sym_EQ, - ACTIONS(1949), 1, - anon_sym_CARET, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_PIPE, - ACTIONS(1955), 1, - anon_sym_AMP_AMP, - ACTIONS(1957), 1, - anon_sym_PIPE_PIPE, - STATE(79), 1, - sym_match_block, - STATE(467), 1, - sym_arguments, - ACTIONS(1945), 2, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1943), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1963), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1961), 5, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1547), 21, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [26769] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [26968] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1835), 1, + ACTIONS(1970), 1, + anon_sym_RBRACE, + ACTIONS(1972), 8, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1974), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [27009] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1209), 1, + sym__type, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27072] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1403), 1, + sym_scoped_identifier, + STATE(1564), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27135] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1860), 1, anon_sym_impl, - ACTIONS(1837), 1, + ACTIONS(1862), 1, anon_sym_const, - ACTIONS(1839), 1, + ACTIONS(1864), 1, anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1849), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1965), 1, + ACTIONS(1976), 1, sym_identifier, - STATE(1121), 1, - sym_generic_type_with_turbofish, - STATE(1122), 1, + STATE(1105), 1, sym_generic_type, - STATE(1344), 1, + STATE(1109), 1, + sym_generic_type_with_turbofish, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1623), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1847), 2, + ACTIONS(1872), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(825), 2, + STATE(627), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1203), 2, + STATE(1244), 2, sym_const_parameter, sym_constrained_type_parameter, - ACTIONS(1843), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51242,40 +52333,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [26832] = 15, + [27198] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1592), 1, - anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1598), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(884), 1, - sym__type, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1366), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(1539), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51290,92 +52381,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [26895] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1967), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [26966] = 15, + [27261] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1494), 1, + STATE(1381), 1, sym__type, - STATE(895), 5, + STATE(1386), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51390,40 +52429,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27029] = 15, + [27324] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1181), 1, - sym__type, - STATE(1362), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(1546), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51438,40 +52477,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27092] = 15, + [27387] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1569), 1, + STATE(1288), 1, sym__type, - STATE(895), 5, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51486,129 +52525,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27155] = 20, + [27450] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1969), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(1978), 1, anon_sym_RBRACE, - ACTIONS(1971), 1, - anon_sym_COMMA, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27228] = 3, + [27523] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1538), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1536), 21, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(877), 1, anon_sym_COLON_COLON, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [27267] = 15, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, + anon_sym_default, + ACTIONS(1533), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, + sym_scoped_type_identifier, + STATE(1386), 1, + sym_scoped_identifier, + STATE(1415), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27586] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(1551), 1, + STATE(1599), 1, sym__type, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51623,282 +52674,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27330] = 20, + [27649] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(211), 1, + ACTIONS(85), 1, anon_sym_RBRACE, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27722] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(1918), 1, anon_sym_SEMI, - STATE(467), 1, + ACTIONS(1980), 1, + anon_sym_RBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [27795] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1982), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27403] = 15, + [27866] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1256), 1, - sym__type, - STATE(1362), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(1470), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [27466] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1560), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1558), 20, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [27505] = 20, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [27929] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(1973), 1, - anon_sym_RPAREN, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1984), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27578] = 19, + [28000] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(83), 1, + anon_sym_RBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - STATE(467), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1975), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [27649] = 15, + [28073] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - STATE(1388), 1, + STATE(1413), 1, sym__type, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51913,40 +53033,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27712] = 15, + [28136] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1525), 1, + anon_sym_AT, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1386), 1, sym_scoped_identifier, - STATE(1568), 1, + STATE(1411), 1, sym__type, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -51961,116 +53081,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27775] = 5, + [28199] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1831), 1, - anon_sym_BANG, - ACTIONS(1977), 1, - anon_sym_COLON_COLON, - ACTIONS(577), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(579), 19, + ACTIONS(1609), 1, anon_sym_LBRACK, + ACTIONS(1611), 1, anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, anon_sym_AMP_AMP, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [27818] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1546), 1, - anon_sym_BANG, - ACTIONS(1979), 1, - anon_sym_COLON_COLON, - ACTIONS(577), 10, + ACTIONS(1823), 1, anon_sym_EQ, - anon_sym_STAR, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(579), 19, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1986), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [27861] = 15, + [28270] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1024), 1, + STATE(1308), 1, sym__type, - STATE(1362), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52085,184 +53181,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [27924] = 15, + [28333] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_default, - ACTIONS(1514), 1, - sym_identifier, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(995), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_scoped_identifier, - STATE(1385), 1, - sym__type, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [27987] = 15, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1988), 1, + anon_sym_LBRACE, + STATE(454), 1, + sym_arguments, + STATE(791), 1, + sym_match_block, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1944), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28406] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(1617), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, + ACTIONS(1621), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1619), 19, anon_sym_LBRACK, - ACTIONS(1500), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_default, - ACTIONS(1514), 1, - sym_identifier, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(995), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_scoped_identifier, - STATE(1384), 1, - sym__type, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [28050] = 15, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [28447] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_default, - ACTIONS(1514), 1, - sym_identifier, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(884), 1, - sym__type, - STATE(995), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_scoped_identifier, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [28113] = 15, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1990), 1, + anon_sym_LBRACE, + STATE(74), 1, + sym_match_block, + STATE(454), 1, + sym_arguments, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1944), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28520] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(1860), 1, + anon_sym_impl, + ACTIONS(1862), 1, + anon_sym_const, + ACTIONS(1864), 1, + anon_sym_POUND, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1992), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, + STATE(1195), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(1200), 1, + sym_generic_type, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1283), 1, - sym__type, - STATE(1362), 1, + STATE(1498), 1, sym_scoped_identifier, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1872), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(837), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1407), 2, + sym_const_parameter, + sym_constrained_type_parameter, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52277,64 +53371,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28176] = 20, + sym_super, + [28583] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1909), 1, + ACTIONS(1994), 1, + anon_sym_RBRACE, + ACTIONS(1996), 1, anon_sym_COMMA, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28249] = 3, + [28656] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1552), 10, + ACTIONS(1561), 11, anon_sym_EQ, + anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -52344,8 +53440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1550), 21, - anon_sym_LBRACE, + ACTIONS(1559), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -52366,14 +53461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28288] = 5, + [28695] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1981), 1, - anon_sym_BANG, - ACTIONS(1983), 1, - anon_sym_COLON_COLON, - ACTIONS(1618), 10, + ACTIONS(1557), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -52384,8 +53475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1616), 19, + ACTIONS(1555), 21, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -52404,39 +53497,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28331] = 15, + [28734] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1835), 1, - anon_sym_impl, - ACTIONS(1837), 1, - anon_sym_const, - ACTIONS(1839), 1, - anon_sym_POUND, - ACTIONS(1841), 1, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1998), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28805] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1561), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1559), 20, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [28844] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(1849), 1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1593), 1, + anon_sym_AT, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1985), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(1207), 1, - sym_generic_type, - STATE(1210), 1, + STATE(877), 1, sym_generic_type_with_turbofish, - STATE(1344), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1623), 1, + STATE(911), 1, + sym__type, + STATE(1385), 1, sym_scoped_identifier, - ACTIONS(1847), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(825), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1383), 2, - sym_const_parameter, - sym_constrained_type_parameter, - ACTIONS(1843), 15, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52451,47 +53633,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - sym_super, - [28394] = 3, + [28907] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1560), 11, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, + ACTIONS(1920), 1, + anon_sym_COMMA, + ACTIONS(2000), 1, + anon_sym_RPAREN, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1558), 20, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [28980] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(1609), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1611), 1, anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, anon_sym_AMP_AMP, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, + STATE(454), 1, + sym_arguments, + STATE(798), 1, + sym_block, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1944), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [28433] = 3, + [29053] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1593), 1, + anon_sym_AT, + ACTIONS(1595), 1, + anon_sym_default, + ACTIONS(1599), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1047), 1, + sym__type, + STATE(1385), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29116] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 11, + ACTIONS(1565), 11, anon_sym_EQ, anon_sym_BANG, anon_sym_STAR, @@ -52503,7 +53802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1554), 20, + ACTIONS(1563), 20, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, @@ -52524,65 +53823,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28472] = 20, + [29155] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(722), 1, - anon_sym_RPAREN, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1909), 1, - anon_sym_COMMA, - STATE(467), 1, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(2002), 1, + anon_sym_RBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28545] = 3, + [29228] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 11, + ACTIONS(1639), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(1621), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -52592,9 +53893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1528), 20, + ACTIONS(1619), 19, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -52613,76 +53913,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [28584] = 3, + [29269] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 11, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, + ACTIONS(2004), 1, + anon_sym_RBRACE, + ACTIONS(2006), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1532), 20, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [29342] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1611), 1, anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, anon_sym_AMP_AMP, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1920), 1, + anon_sym_COMMA, + ACTIONS(2008), 1, + anon_sym_RPAREN, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [28623] = 15, + [29415] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1525), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1527), 1, anon_sym_default, - ACTIONS(1514), 1, + ACTIONS(1533), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(996), 1, sym_scoped_type_identifier, - STATE(1370), 1, + STATE(1386), 1, sym_scoped_identifier, - STATE(1464), 1, + STATE(1435), 1, sym__type, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52697,183 +54067,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28686] = 20, + [29478] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1565), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1563), 20, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1584), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1586), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + [29517] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(811), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - ACTIONS(1987), 1, - anon_sym_RBRACE, - STATE(467), 1, + ACTIONS(1920), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28759] = 4, + [29590] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1989), 1, + ACTIONS(226), 1, anon_sym_RBRACE, - ACTIONS(1991), 8, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1993), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [28800] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, + ACTIONS(1918), 1, anon_sym_SEMI, - ACTIONS(1995), 1, - anon_sym_RBRACE, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [28873] = 15, + [29663] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1403), 1, + sym_scoped_identifier, + STATE(1536), 1, + sym__type, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29726] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1336), 1, + STATE(1263), 1, sym__type, - STATE(1362), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -52888,288 +54305,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [28936] = 20, + [29789] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(738), 1, + anon_sym_RPAREN, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1941), 1, - anon_sym_EQ, - ACTIONS(1949), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1951), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1955), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1957), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1997), 1, - anon_sym_LBRACE, - STATE(250), 1, - sym_match_block, - STATE(467), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1920), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(1945), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1947), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1943), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1963), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1961), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29009] = 20, + [29862] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1856), 1, + anon_sym_default, + ACTIONS(1858), 1, + sym_identifier, + STATE(877), 1, + sym_generic_type_with_turbofish, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, + sym_scoped_type_identifier, + STATE(1399), 1, + sym__type, + STATE(1403), 1, + sym_scoped_identifier, + STATE(892), 5, + sym_macro_invocation, + sym_array_type, + sym_tuple_type, + sym_unit_type, + sym_snapshot_type, + ACTIONS(1521), 14, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + [29925] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1831), 1, + anon_sym_BANG, + ACTIONS(2010), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(594), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1999), 1, - anon_sym_RBRACE, - ACTIONS(2001), 1, - anon_sym_COMMA, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29082] = 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [29968] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1941), 1, - anon_sym_EQ, - ACTIONS(1949), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1951), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1955), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1957), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(2003), 1, - anon_sym_LBRACE, - STATE(467), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_SEMI, + ACTIONS(2012), 1, + anon_sym_RBRACE, + STATE(454), 1, sym_arguments, - STATE(777), 1, - sym_match_block, - ACTIONS(1945), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1947), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1943), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1963), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1961), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29155] = 20, + [30041] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2005), 1, - anon_sym_COMMA, - ACTIONS(2007), 1, - anon_sym_RPAREN, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(2014), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29228] = 3, + [30112] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1528), 20, - anon_sym_LBRACE, + ACTIONS(2016), 1, + anon_sym_RBRACE, + ACTIONS(2018), 8, + anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [29267] = 15, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(2020), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [30153] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(928), 1, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1869), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(884), 1, - sym__type, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(1445), 1, + sym__type, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53184,343 +54634,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29330] = 20, + [30216] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(199), 1, - anon_sym_RBRACE, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(2022), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29403] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1867), 1, - anon_sym_default, - ACTIONS(1869), 1, - sym_identifier, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(892), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1596), 1, - sym__type, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [29466] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1867), 1, - anon_sym_default, - ACTIONS(1869), 1, - sym_identifier, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(892), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1378), 1, - sym__type, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [29529] = 20, + [30287] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2009), 1, + ACTIONS(2024), 1, anon_sym_COMMA, - ACTIONS(2011), 1, + ACTIONS(2026), 1, anon_sym_RPAREN, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [29602] = 15, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, - anon_sym_LBRACK, - ACTIONS(1500), 1, - anon_sym_LPAREN, - ACTIONS(1506), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_default, - ACTIONS(1514), 1, - sym_identifier, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(995), 1, - sym_scoped_type_identifier, - STATE(1370), 1, - sym_scoped_identifier, - STATE(1431), 1, - sym__type, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [29665] = 20, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30360] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(205), 1, - anon_sym_RBRACE, - ACTIONS(1582), 1, + ACTIONS(1575), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1573), 20, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1584), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + anon_sym_DOT, + anon_sym_QMARK, + [30399] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1569), 1, + anon_sym_BANG, + ACTIONS(2028), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(594), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [29738] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [30442] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(891), 1, + anon_sym_AT, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1592), 1, - anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1598), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1024), 1, + STATE(911), 1, sym__type, - STATE(1366), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53535,40 +54861,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29801] = 15, + [30505] = 15, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(877), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, + ACTIONS(909), 1, sym_super, - ACTIONS(1498), 1, + ACTIONS(1517), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1519), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1593), 1, anon_sym_AT, - ACTIONS(1508), 1, + ACTIONS(1595), 1, anon_sym_default, - ACTIONS(1514), 1, + ACTIONS(1599), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(995), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1370), 1, - sym_scoped_identifier, - STATE(1374), 1, + STATE(1032), 1, sym__type, - STATE(895), 5, + STATE(1385), 1, + sym_scoped_identifier, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53583,40 +54909,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29864] = 15, + [30568] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, + ACTIONS(1645), 1, + anon_sym_BANG, + ACTIONS(2030), 1, anon_sym_COLON_COLON, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, + ACTIONS(1643), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1641), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_QMARK, + [30611] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1575), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1573), 20, anon_sym_LBRACK, - ACTIONS(1500), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1592), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [30650] = 15, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(877), 1, + anon_sym_COLON_COLON, + ACTIONS(891), 1, anon_sym_AT, - ACTIONS(1594), 1, + ACTIONS(909), 1, + sym_super, + ACTIONS(1517), 1, + anon_sym_LBRACK, + ACTIONS(1519), 1, + anon_sym_LPAREN, + ACTIONS(1856), 1, anon_sym_default, - ACTIONS(1598), 1, + ACTIONS(1858), 1, sym_identifier, - STATE(871), 1, - sym_generic_type, STATE(877), 1, sym_generic_type_with_turbofish, - STATE(892), 1, + STATE(881), 1, + sym_generic_type, + STATE(897), 1, sym_scoped_type_identifier, - STATE(1029), 1, + STATE(1394), 1, sym__type, - STATE(1366), 1, + STATE(1403), 1, sym_scoped_identifier, - STATE(895), 5, + STATE(892), 5, sym_macro_invocation, sym_array_type, sym_tuple_type, sym_unit_type, sym_snapshot_type, - ACTIONS(1502), 14, + ACTIONS(1521), 14, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -53631,101 +55031,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_ByteArray, anon_sym_felt252, - [29927] = 20, + [30713] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(794), 1, - anon_sym_RPAREN, - ACTIONS(1582), 1, + ACTIONS(1579), 11, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1577), 20, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1584), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1586), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(1588), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + [30752] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2032), 1, + anon_sym_else, + STATE(814), 1, + sym_else_clause, + ACTIONS(570), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(568), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [30795] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1924), 1, anon_sym_EQ, - ACTIONS(1909), 1, - anon_sym_COMMA, - STATE(467), 1, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + STATE(69), 1, + sym_block, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1944), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [30868] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2034), 1, + anon_sym_EQ, + ACTIONS(2036), 1, + anon_sym_LBRACK, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_AMP, + ACTIONS(2050), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, + anon_sym_AMP_AMP, + ACTIONS(2054), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2064), 1, + anon_sym_EQ_GT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, + sym_arguments, + ACTIONS(2042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(2044), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(2058), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30000] = 3, + [30938] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 8, + ACTIONS(1609), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(1611), 1, anon_sym_LPAREN, - anon_sym_DASH, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1687), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, anon_sym_PIPE, - anon_sym_AT, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1254), 23, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - anon_sym_ref, - sym_identifier, - sym_mutable_specifier, - sym_super, - [30039] = 3, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + STATE(454), 1, + sym_arguments, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1685), 6, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [31006] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 11, + ACTIONS(2068), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, anon_sym_EQ, - anon_sym_BANG, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -53735,10 +55275,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1532), 20, + ACTIONS(594), 19, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -53756,199 +55295,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_QMARK, - [30078] = 15, + [31046] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(914), 1, - anon_sym_COLON_COLON, - ACTIONS(928), 1, - anon_sym_AT, - ACTIONS(946), 1, - sym_super, - ACTIONS(1498), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1500), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1867), 1, - anon_sym_default, - ACTIONS(1869), 1, - sym_identifier, - STATE(871), 1, - sym_generic_type, - STATE(877), 1, - sym_generic_type_with_turbofish, - STATE(892), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_scoped_identifier, - STATE(1373), 1, - sym__type, - STATE(895), 5, - sym_macro_invocation, - sym_array_type, - sym_tuple_type, - sym_unit_type, - sym_snapshot_type, - ACTIONS(1502), 14, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - [30141] = 20, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1629), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1627), 15, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31098] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1629), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(2013), 1, - anon_sym_RPAREN, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1627), 7, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30214] = 19, + [31164] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1629), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(2015), 1, - anon_sym_RBRACK, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1627), 8, + anon_sym_LBRACE, + 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, - [30284] = 16, + [31228] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1612), 1, - anon_sym_EQ, - ACTIONS(1949), 1, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1951), 1, + ACTIONS(1934), 1, anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_PIPE, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1945), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1947), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1943), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1963), 4, + ACTIONS(1629), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1627), 12, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1610), 8, + [31286] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1629), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1627), 13, anon_sym_LBRACE, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -53956,74 +55518,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30348] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31340] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1934), 1, anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(2017), 1, - anon_sym_SEMI, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1629), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1627), 13, + anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30418] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31396] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(507), 10, - anon_sym_EQ, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + STATE(454), 1, + sym_arguments, + ACTIONS(1926), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1629), 7, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(505), 20, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1627), 15, + anon_sym_LBRACE, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54038,14 +55607,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + [31446] = 14, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, anon_sym_DOT, - anon_sym_EQ_GT, + ACTIONS(1615), 1, anon_sym_QMARK, - anon_sym_else, - [30456] = 3, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + STATE(454), 1, + sym_arguments, + ACTIONS(1930), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1942), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1629), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1627), 12, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [31506] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(527), 10, + ACTIONS(2070), 1, + anon_sym_COLON_COLON, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54056,7 +55669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(525), 20, + ACTIONS(594), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -54076,13 +55689,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_else, - [30494] = 4, + [31546] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 10, + ACTIONS(2036), 1, + anon_sym_LBRACK, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, + sym_arguments, + ACTIONS(1629), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54093,10 +55713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1574), 19, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1627), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54111,124 +55728,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [30534] = 19, + anon_sym_EQ_GT, + [31594] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1815), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(2019), 1, - anon_sym_SEMI, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1813), 6, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30604] = 19, + [31662] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1617), 1, + anon_sym_COLON_COLON, + ACTIONS(1621), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1619), 19, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(2021), 1, - anon_sym_SEMI, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30674] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2023), 1, - anon_sym_LBRACK, - ACTIONS(2025), 1, - anon_sym_LPAREN, - ACTIONS(2027), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT, - ACTIONS(2029), 1, anon_sym_QMARK, - STATE(787), 1, - sym_arguments, - ACTIONS(1580), 10, + [31702] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1639), 1, + anon_sym_COLON_COLON, + ACTIONS(1621), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54239,7 +55831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1578), 15, + ACTIONS(1619), 19, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54254,164 +55849,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - [30722] = 19, + anon_sym_DOT, + anon_sym_QMARK, + [31742] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2031), 1, + ACTIONS(2072), 1, anon_sym_RBRACK, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30792] = 19, + [31812] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(2033), 1, - anon_sym_COMMA, - STATE(467), 1, + STATE(820), 1, sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, + ACTIONS(1651), 10, + anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [30862] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2023), 1, - anon_sym_LBRACK, - ACTIONS(2025), 1, - anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_DOT, - ACTIONS(2029), 1, - anon_sym_QMARK, - ACTIONS(2035), 1, - anon_sym_EQ, - ACTIONS(2043), 1, - anon_sym_CARET, - ACTIONS(2045), 1, anon_sym_AMP, - ACTIONS(2047), 1, anon_sym_PIPE, - ACTIONS(2049), 1, + ACTIONS(1649), 15, + anon_sym_CARET, anon_sym_AMP_AMP, - ACTIONS(2051), 1, anon_sym_PIPE_PIPE, - ACTIONS(2059), 1, - anon_sym_EQ_GT, - STATE(787), 1, - sym_arguments, - ACTIONS(2039), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2041), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2053), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2057), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2055), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [30932] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [31860] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1991), 8, + ACTIONS(2018), 8, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -54420,7 +55954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1993), 22, + ACTIONS(2020), 22, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -54443,161 +55977,101 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [30970] = 18, + [31898] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - ACTIONS(1682), 1, - anon_sym_EQ, - ACTIONS(1949), 1, - anon_sym_CARET, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_PIPE, - ACTIONS(1955), 1, - anon_sym_AMP_AMP, - ACTIONS(1957), 1, - anon_sym_PIPE_PIPE, - STATE(467), 1, + STATE(820), 1, sym_arguments, - ACTIONS(1945), 2, + ACTIONS(1607), 10, + anon_sym_EQ, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1943), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1963), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1680), 6, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [31038] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1605), 15, + anon_sym_CARET, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(2061), 1, - anon_sym_COMMA, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31108] = 18, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [31946] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1666), 1, - anon_sym_EQ, - ACTIONS(1949), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1951), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1955), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1957), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - STATE(467), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2074), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(1945), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1947), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1943), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1963), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1664), 6, - anon_sym_LBRACE, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31176] = 3, + [32016] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1895), 8, + ACTIONS(1972), 8, anon_sym_POUND, anon_sym_LBRACK, anon_sym_COLON_COLON, @@ -54606,7 +56080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, aux_sym_string_literal_token1, sym_shortstring_literal, - ACTIONS(1897), 22, + ACTIONS(1974), 22, anon_sym__, anon_sym_u8, anon_sym_i8, @@ -54629,12 +56103,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_mutable_specifier, sym_super, - [31214] = 4, + [32054] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2063), 1, + ACTIONS(2076), 1, anon_sym_COLON_COLON, - ACTIONS(577), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54645,7 +56119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 19, + ACTIONS(594), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -54665,114 +56139,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [31254] = 19, + [32094] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2065), 1, + ACTIONS(2078), 1, anon_sym_SEMI, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31324] = 19, + [32164] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2067), 1, - anon_sym_SEMI, - STATE(467), 1, + ACTIONS(2080), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31394] = 4, + [32234] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1572), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 10, + ACTIONS(1655), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54783,9 +56255,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1574), 19, - anon_sym_LBRACE, + ACTIONS(1653), 20, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -54802,99 +56274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK, - [31434] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1252), 8, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1254), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [31472] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1941), 1, - anon_sym_EQ, - ACTIONS(1949), 1, - anon_sym_CARET, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_PIPE, - ACTIONS(1955), 1, - anon_sym_AMP_AMP, - ACTIONS(1957), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2069), 1, - anon_sym_LBRACE, - STATE(467), 1, - sym_arguments, - ACTIONS(1945), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1947), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1943), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1963), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1961), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [31542] = 4, + [32272] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2071), 1, - anon_sym_COLON_COLON, - ACTIONS(577), 10, + ACTIONS(1635), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -54905,8 +56290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 19, + ACTIONS(1633), 20, anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_CARET, anon_sym_AMP_AMP, @@ -54925,510 +56311,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [31582] = 19, + [32310] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2073), 1, - anon_sym_RBRACK, - STATE(467), 1, + ACTIONS(2082), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31652] = 18, + [32380] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(1949), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1951), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1955), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1957), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - STATE(467), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2084), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(1945), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1947), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1943), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1963), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1758), 6, - anon_sym_LBRACE, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31720] = 19, + [32450] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2075), 1, - anon_sym_SEMI, - STATE(467), 1, + ACTIONS(2086), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [31790] = 8, + [32520] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2023), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(787), 1, - sym_arguments, - ACTIONS(1612), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1610), 15, - anon_sym_CARET, + ACTIONS(1701), 1, anon_sym_AMP_AMP, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [31838] = 14, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1949), 1, - anon_sym_CARET, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_PIPE, - STATE(467), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2088), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(1947), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1612), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1943), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1610), 12, - anon_sym_LBRACE, - 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, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [31898] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - STATE(467), 1, - sym_arguments, - ACTIONS(1943), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1612), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1610), 15, - anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [31948] = 12, + [32590] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1951), 1, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, anon_sym_AMP, - STATE(467), 1, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + STATE(454), 1, sym_arguments, - ACTIONS(1947), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1943), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1610), 13, - anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32004] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - STATE(467), 1, - sym_arguments, - ACTIONS(1947), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1943), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1612), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1610), 13, + ACTIONS(1777), 6, anon_sym_LBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [32058] = 19, + [32658] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2077), 1, + ACTIONS(2090), 1, anon_sym_RBRACK, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32128] = 19, + [32728] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2079), 1, - anon_sym_SEMI, - STATE(467), 1, + ACTIONS(1920), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32198] = 13, + [32798] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1949), 1, - anon_sym_CARET, - ACTIONS(1951), 1, - anon_sym_AMP, - STATE(467), 1, - sym_arguments, - ACTIONS(1947), 2, + ACTIONS(542), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1943), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 12, - anon_sym_LBRACE, + ACTIONS(540), 20, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55438,61 +56698,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32256] = 19, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_else, + [32836] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1039), 8, + anon_sym_POUND, anon_sym_LBRACK, - ACTIONS(1584), 1, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(2081), 1, - anon_sym_SEMI, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [32326] = 3, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1041), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [32874] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(535), 10, + ACTIONS(562), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -55503,7 +56751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(533), 20, + ACTIONS(560), 20, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -55524,412 +56772,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_else, - [32364] = 19, + [32912] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(538), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(536), 20, anon_sym_LBRACK, - ACTIONS(1584), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_PIPE, - ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(2083), 1, - anon_sym_SEMI, - STATE(467), 1, - sym_arguments, - ACTIONS(1646), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32434] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_else, + [32950] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2085), 1, - anon_sym_COMMA, - STATE(467), 1, + ACTIONS(2092), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32504] = 19, + [33020] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1909), 1, - anon_sym_COMMA, - STATE(467), 1, + ACTIONS(2094), 1, + anon_sym_LBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1944), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32574] = 8, + [33090] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2023), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(787), 1, - sym_arguments, - ACTIONS(1636), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1634), 15, - anon_sym_CARET, + ACTIONS(1701), 1, anon_sym_AMP_AMP, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [32622] = 17, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1582), 1, - anon_sym_LBRACK, - ACTIONS(1584), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1612), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(1949), 1, - anon_sym_CARET, - ACTIONS(1951), 1, - anon_sym_AMP, - ACTIONS(1953), 1, - anon_sym_PIPE, - ACTIONS(1955), 1, - anon_sym_AMP_AMP, - STATE(467), 1, + ACTIONS(2096), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1945), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1947), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1943), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1963), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1610), 7, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32688] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1100), 8, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(1102), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [32726] = 18, + [33160] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1682), 1, - anon_sym_EQ, - ACTIONS(2023), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2043), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(2045), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(2047), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(2049), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(2051), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - STATE(787), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2098), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(2039), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2041), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2057), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1680), 6, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_GT, - [32794] = 19, + [33230] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2023), 1, + ACTIONS(1687), 1, + anon_sym_EQ, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_DOT, - ACTIONS(2029), 1, - anon_sym_QMARK, - ACTIONS(2035), 1, - anon_sym_EQ, - ACTIONS(2043), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(2045), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(2047), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(2049), 1, + ACTIONS(2052), 1, anon_sym_AMP_AMP, - ACTIONS(2051), 1, + ACTIONS(2054), 1, anon_sym_PIPE_PIPE, - ACTIONS(2069), 1, - anon_sym_EQ_GT, - STATE(787), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(2039), 2, + ACTIONS(2042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2041), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2057), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2055), 5, + ACTIONS(1685), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32864] = 10, + anon_sym_EQ_GT, + [33298] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - STATE(467), 1, + STATE(820), 1, sym_arguments, - ACTIONS(1947), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1943), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 5, + ACTIONS(1629), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 15, - anon_sym_LBRACE, + ACTIONS(1627), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55944,482 +57102,516 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [32916] = 19, + anon_sym_EQ_GT, + [33350] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2087), 1, - anon_sym_RBRACK, - STATE(467), 1, + ACTIONS(2100), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [32986] = 18, + [33420] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1666), 1, + ACTIONS(1741), 1, anon_sym_EQ, - ACTIONS(2023), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_DOT, - ACTIONS(2029), 1, - anon_sym_QMARK, - ACTIONS(2043), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(2045), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(2047), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(2049), 1, + ACTIONS(2052), 1, anon_sym_AMP_AMP, - ACTIONS(2051), 1, + ACTIONS(2054), 1, anon_sym_PIPE_PIPE, - STATE(787), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(2039), 2, + ACTIONS(2042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2041), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2057), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1664), 6, + ACTIONS(1739), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_EQ_GT, - [33054] = 8, + [33488] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2023), 1, + ACTIONS(2034), 1, + anon_sym_EQ, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_AMP, + ACTIONS(2050), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, + anon_sym_AMP_AMP, + ACTIONS(2054), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(2094), 1, + anon_sym_EQ_GT, + STATE(820), 1, sym_arguments, - ACTIONS(1608), 10, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2042), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1606), 15, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2056), 2, 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, + ACTIONS(2038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - [33102] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2089), 1, - anon_sym_COLON_COLON, - ACTIONS(577), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(579), 19, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2058), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_QMARK, - [33142] = 19, + [33558] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1741), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1938), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1940), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(1903), 1, - anon_sym_SEMI, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1946), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1739), 6, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33212] = 18, + [33626] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1796), 1, + ACTIONS(1815), 1, anon_sym_EQ, - ACTIONS(2023), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, - anon_sym_DOT, - ACTIONS(2029), 1, - anon_sym_QMARK, - ACTIONS(2043), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(2045), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(2047), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(2049), 1, + ACTIONS(2052), 1, anon_sym_AMP_AMP, - ACTIONS(2051), 1, + ACTIONS(2054), 1, anon_sym_PIPE_PIPE, - STATE(787), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(2039), 2, + ACTIONS(2042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2041), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2057), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1794), 6, + ACTIONS(1813), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_EQ_GT, - [33280] = 10, + [33694] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2023), 1, + ACTIONS(1629), 1, + anon_sym_EQ, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_AMP, + ACTIONS(2050), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, + anon_sym_AMP_AMP, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - STATE(787), 1, + STATE(820), 1, sym_arguments, - ACTIONS(2041), 2, + ACTIONS(2042), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2037), 3, + ACTIONS(2056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1610), 15, - anon_sym_CARET, - anon_sym_AMP_AMP, + ACTIONS(2060), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1627), 7, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_EQ_GT, - [33332] = 18, + [33760] = 18, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1796), 1, - anon_sym_EQ, - ACTIONS(1949), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1951), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(1955), 1, + ACTIONS(2052), 1, anon_sym_AMP_AMP, - ACTIONS(1957), 1, + ACTIONS(2054), 1, anon_sym_PIPE_PIPE, - STATE(467), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(1945), 2, + ACTIONS(2042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1947), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1943), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1963), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1794), 6, - anon_sym_LBRACE, + ACTIONS(1777), 6, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33400] = 19, + anon_sym_EQ_GT, + [33828] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2091), 1, + ACTIONS(1918), 1, anon_sym_SEMI, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33470] = 19, + [33898] = 16, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1629), 1, + anon_sym_EQ, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1941), 1, - anon_sym_EQ, - ACTIONS(1949), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1951), 1, + ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(1953), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(1955), 1, - anon_sym_AMP_AMP, - ACTIONS(1957), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2059), 1, - anon_sym_LBRACE, - STATE(467), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(1945), 2, + ACTIONS(2042), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1947), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1959), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1943), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1963), 4, + ACTIONS(2060), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1961), 5, + ACTIONS(1627), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33540] = 3, + anon_sym_EQ_GT, + [33962] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1630), 10, + ACTIONS(2036), 1, + anon_sym_LBRACK, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_AMP, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, + sym_arguments, + ACTIONS(2044), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2038), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1629), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(1627), 12, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [34020] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2036), 1, + anon_sym_LBRACK, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, + sym_arguments, + ACTIONS(1659), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -56430,10 +57622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1628), 20, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, + ACTIONS(1657), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56448,180 +57637,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [33578] = 17, + [34068] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1612), 1, - anon_sym_EQ, - ACTIONS(2023), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2043), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(2045), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(2047), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(2049), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - STATE(787), 1, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2102), 1, + anon_sym_COMMA, + STATE(454), 1, sym_arguments, - ACTIONS(2039), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2041), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2057), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1610), 7, - anon_sym_PIPE_PIPE, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_GT, - [33644] = 19, + [34138] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(2048), 1, + anon_sym_AMP, + ACTIONS(2050), 1, anon_sym_PIPE, - ACTIONS(1674), 1, - anon_sym_AMP_AMP, - ACTIONS(1676), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, - anon_sym_EQ, - ACTIONS(2093), 1, - anon_sym_COMMA, - STATE(467), 1, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, + ACTIONS(1629), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1627), 12, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33714] = 16, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_GT, + [34198] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1612), 1, - anon_sym_EQ, - ACTIONS(2023), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2043), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(2045), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(2047), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - STATE(787), 1, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2104), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(2039), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2041), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2057), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1610), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_GT, - [33778] = 3, + [34268] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1640), 10, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2036), 1, + anon_sym_LBRACK, + ACTIONS(2040), 1, + anon_sym_LPAREN, + ACTIONS(2062), 1, + anon_sym_DOT, + ACTIONS(2066), 1, + anon_sym_QMARK, + STATE(820), 1, + sym_arguments, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2056), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2038), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(1629), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1638), 20, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, + ACTIONS(1627), 13, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56631,281 +57828,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK, - [33816] = 13, + [34322] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2023), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2043), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(2045), 1, + ACTIONS(1697), 1, anon_sym_AMP, - STATE(787), 1, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2106), 1, + anon_sym_RBRACK, + STATE(454), 1, sym_arguments, - ACTIONS(2041), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(1610), 12, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [33874] = 19, + [34392] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2095), 1, + ACTIONS(2108), 1, anon_sym_RBRACK, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [33944] = 11, + [34462] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2023), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - STATE(787), 1, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_CARET, + ACTIONS(1934), 1, + anon_sym_AMP, + ACTIONS(1936), 1, + anon_sym_PIPE, + ACTIONS(1938), 1, + anon_sym_AMP_AMP, + ACTIONS(1940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2064), 1, + anon_sym_LBRACE, + STATE(454), 1, sym_arguments, - ACTIONS(2041), 2, + ACTIONS(1928), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(1942), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, + ACTIONS(1926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1610), 13, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1946), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1944), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - [33998] = 19, + [34532] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2097), 1, - anon_sym_RBRACK, - STATE(467), 1, + ACTIONS(2110), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34068] = 19, + [34602] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2099), 1, - anon_sym_RBRACK, - STATE(467), 1, + ACTIONS(2112), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34138] = 12, + [34672] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2023), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(2048), 1, + anon_sym_AMP, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - ACTIONS(2045), 1, - anon_sym_AMP, - STATE(787), 1, + STATE(820), 1, sym_arguments, - ACTIONS(2041), 2, + ACTIONS(2044), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(2056), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 4, + ACTIONS(1629), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(1610), 13, + ACTIONS(1627), 13, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56919,24 +58128,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [34194] = 9, + [34728] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1243), 8, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(1245), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [34766] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2023), 1, + ACTIONS(2036), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(2040), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(2062), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(2066), 1, anon_sym_QMARK, - STATE(787), 1, + STATE(820), 1, sym_arguments, - ACTIONS(2037), 3, + ACTIONS(2038), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1612), 7, + ACTIONS(1629), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -56944,7 +58188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1610), 15, + ACTIONS(1627), 15, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56960,259 +58204,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [34244] = 14, + [34816] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2023), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2043), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(2045), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(2047), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - STATE(787), 1, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2114), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(2041), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1612), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2037), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1610), 12, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1707), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + [34886] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_LPAREN, + ACTIONS(1613), 1, + anon_sym_DOT, + ACTIONS(1615), 1, + anon_sym_QMARK, + ACTIONS(1695), 1, + anon_sym_CARET, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, + anon_sym_PIPE, + ACTIONS(1701), 1, + anon_sym_AMP_AMP, + ACTIONS(1703), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2116), 1, + anon_sym_COMMA, + STATE(454), 1, + sym_arguments, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1705), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1689), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - [34304] = 18, + ACTIONS(1827), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [34956] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1760), 1, - anon_sym_EQ, - ACTIONS(2023), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(2025), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(2027), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(2029), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(2043), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(2045), 1, + ACTIONS(1697), 1, anon_sym_AMP, - ACTIONS(2047), 1, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(2049), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(2051), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - STATE(787), 1, + ACTIONS(1823), 1, + anon_sym_EQ, + ACTIONS(2118), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(2039), 2, + ACTIONS(1691), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2041), 2, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2053), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2037), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2057), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1758), 6, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_EQ_GT, - [34372] = 19, + [35026] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2101), 1, - anon_sym_RBRACK, - STATE(467), 1, + ACTIONS(2120), 1, + anon_sym_SEMI, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34442] = 19, + [35096] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2103), 1, + ACTIONS(2122), 1, anon_sym_SEMI, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34512] = 19, + [35166] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1582), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1584), 1, + ACTIONS(1611), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1613), 1, anon_sym_DOT, - ACTIONS(1588), 1, + ACTIONS(1615), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1695), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1697), 1, + anon_sym_AMP, + ACTIONS(1699), 1, anon_sym_PIPE, - ACTIONS(1674), 1, + ACTIONS(1701), 1, anon_sym_AMP_AMP, - ACTIONS(1676), 1, + ACTIONS(1703), 1, anon_sym_PIPE_PIPE, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_EQ, - ACTIONS(2105), 1, + ACTIONS(2124), 1, anon_sym_SEMI, - STATE(467), 1, + STATE(454), 1, sym_arguments, - ACTIONS(1646), 2, + ACTIONS(1691), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 2, + ACTIONS(1705), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1668), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1644), 3, + ACTIONS(1689), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1678), 4, + ACTIONS(1707), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1815), 5, + ACTIONS(1827), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [34582] = 3, + [35236] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(543), 10, + ACTIONS(1775), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57223,7 +58524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(541), 19, + ACTIONS(1773), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57243,10 +58544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34619] = 3, + [35273] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1728), 10, + ACTIONS(554), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57257,7 +58558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1726), 19, + ACTIONS(552), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57277,10 +58578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34656] = 3, + [35310] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1740), 10, + ACTIONS(1731), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57291,7 +58592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1738), 19, + ACTIONS(1729), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57311,10 +58612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34693] = 3, + [35347] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1712), 10, + ACTIONS(1667), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57325,7 +58626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1710), 19, + ACTIONS(1665), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57345,10 +58646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34730] = 3, + [35384] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1772), 10, + ACTIONS(1771), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57359,7 +58660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1770), 19, + ACTIONS(1769), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57379,10 +58680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34767] = 3, + [35421] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(547), 10, + ACTIONS(1735), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57393,7 +58694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(545), 19, + ACTIONS(1733), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57413,10 +58714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34804] = 3, + [35458] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(523), 10, + ACTIONS(514), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57427,7 +58728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(521), 19, + ACTIONS(512), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57447,10 +58748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34841] = 3, + [35495] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(491), 10, + ACTIONS(1803), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57461,7 +58762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(489), 19, + ACTIONS(1801), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57481,10 +58782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34878] = 3, + [35532] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1744), 10, + ACTIONS(534), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57495,7 +58796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1742), 19, + ACTIONS(532), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57515,10 +58816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34915] = 3, + [35569] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(511), 10, + ACTIONS(522), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57529,7 +58830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(509), 19, + ACTIONS(520), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57549,10 +58850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34952] = 3, + [35606] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1716), 10, + ACTIONS(479), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57563,7 +58864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1714), 19, + ACTIONS(477), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57583,53 +58884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [34989] = 12, + [35643] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, - anon_sym_LBRACE, - ACTIONS(2109), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_COMMA, - ACTIONS(2113), 1, - anon_sym_COLON_COLON, - ACTIONS(2115), 1, - anon_sym_STAR, - ACTIONS(2119), 1, - anon_sym_default, - ACTIONS(2121), 1, - sym_identifier, - STATE(1039), 1, - sym_scoped_identifier, - STATE(1546), 1, - sym_generic_type_with_turbofish, - STATE(1246), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(2117), 15, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - sym_super, - [35044] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1654), 10, + ACTIONS(530), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57640,7 +58898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1652), 19, + ACTIONS(528), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57660,10 +58918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35081] = 3, + [35680] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1736), 10, + ACTIONS(495), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57674,7 +58932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1734), 19, + ACTIONS(493), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57694,10 +58952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35118] = 3, + [35717] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1788), 10, + ACTIONS(1723), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57708,7 +58966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1786), 19, + ACTIONS(1721), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57728,10 +58986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35155] = 3, + [35754] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1752), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57742,7 +59000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1750), 19, + ACTIONS(594), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57762,10 +59020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35192] = 3, + [35791] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1784), 10, + ACTIONS(518), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57776,7 +59034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1782), 19, + ACTIONS(516), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57796,10 +59054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35229] = 3, + [35828] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1724), 10, + ACTIONS(1679), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57810,7 +59068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1722), 19, + ACTIONS(1677), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57830,10 +59088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35266] = 3, + [35865] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1780), 10, + ACTIONS(1719), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57844,7 +59102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1778), 19, + ACTIONS(1717), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57864,10 +59122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35303] = 3, + [35902] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1732), 10, + ACTIONS(1715), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57878,7 +59136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1730), 19, + ACTIONS(1713), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57898,10 +59156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35340] = 3, + [35939] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1576), 10, + ACTIONS(1663), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57912,7 +59170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1574), 19, + ACTIONS(1661), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57932,10 +59190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35377] = 3, + [35976] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1700), 10, + ACTIONS(1683), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57946,7 +59204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1698), 19, + ACTIONS(1681), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -57966,10 +59224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35414] = 3, + [36013] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(519), 10, + ACTIONS(1671), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -57980,7 +59238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(517), 19, + ACTIONS(1669), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58000,10 +59258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35451] = 3, + [36050] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1658), 10, + ACTIONS(1799), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58014,7 +59272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1656), 19, + ACTIONS(1797), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58034,10 +59292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35488] = 3, + [36087] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1800), 10, + ACTIONS(1795), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58048,7 +59306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1798), 19, + ACTIONS(1793), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58068,10 +59326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35525] = 3, + [36124] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(495), 10, + ACTIONS(1621), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58082,7 +59340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(493), 19, + ACTIONS(1619), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58102,10 +59360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35562] = 3, + [36161] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1662), 10, + ACTIONS(1745), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58116,7 +59374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1660), 19, + ACTIONS(1743), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58136,10 +59394,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35599] = 3, + [36198] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1696), 10, + ACTIONS(2126), 1, + anon_sym_LBRACE, + ACTIONS(2128), 1, + anon_sym_RBRACE, + ACTIONS(2130), 1, + anon_sym_COMMA, + ACTIONS(2132), 1, + anon_sym_COLON_COLON, + ACTIONS(2134), 1, + anon_sym_STAR, + ACTIONS(2138), 1, + anon_sym_default, + ACTIONS(2140), 1, + sym_identifier, + STATE(1042), 1, + sym_scoped_identifier, + STATE(1548), 1, + sym_generic_type_with_turbofish, + STATE(1281), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(2136), 15, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + sym_super, + [36253] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1787), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58150,7 +59451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1694), 19, + ACTIONS(1785), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58170,10 +59471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35636] = 3, + [36290] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1708), 10, + ACTIONS(558), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58184,7 +59485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1706), 19, + ACTIONS(556), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58204,10 +59505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35673] = 3, + [36327] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(483), 10, + ACTIONS(550), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58218,7 +59519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(481), 19, + ACTIONS(548), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58238,10 +59539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35710] = 3, + [36364] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(531), 10, + ACTIONS(592), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58252,7 +59553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(529), 19, + ACTIONS(594), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58272,10 +59573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35747] = 3, + [36401] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(515), 10, + ACTIONS(566), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58286,7 +59587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(513), 19, + ACTIONS(564), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58306,10 +59607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35784] = 3, + [36438] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1776), 10, + ACTIONS(1750), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58320,7 +59621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1774), 19, + ACTIONS(1747), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58340,44 +59641,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35821] = 3, + [36475] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2123), 7, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LPAREN, + ACTIONS(1675), 10, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_PIPE, - aux_sym_string_literal_token1, - sym_shortstring_literal, - ACTIONS(2125), 22, - anon_sym__, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_usize, - anon_sym_bool, - anon_sym_ByteArray, - anon_sym_felt252, - anon_sym_default, - sym_numeric_literal, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_mutable_specifier, - sym_super, - [35858] = 3, + ACTIONS(1673), 19, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [36512] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1768), 10, + ACTIONS(1759), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58388,7 +59689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1766), 19, + ACTIONS(1757), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58408,10 +59709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35895] = 3, + [36549] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(555), 10, + ACTIONS(1755), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58422,7 +59723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(553), 19, + ACTIONS(1753), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58442,10 +59743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35932] = 3, + [36586] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1756), 10, + ACTIONS(1819), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58456,7 +59757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1754), 19, + ACTIONS(1817), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58476,10 +59777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [35969] = 3, + [36623] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1764), 10, + ACTIONS(1711), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58490,7 +59791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1762), 19, + ACTIONS(1709), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58510,10 +59811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36006] = 3, + [36660] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1691), 10, + ACTIONS(1763), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58524,7 +59825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1688), 19, + ACTIONS(1761), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58544,10 +59845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36043] = 3, + [36697] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1720), 10, + ACTIONS(1811), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58558,7 +59859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1718), 19, + ACTIONS(1809), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58578,10 +59879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36080] = 3, + [36734] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1686), 10, + ACTIONS(1767), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58592,7 +59893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1684), 19, + ACTIONS(1765), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58612,10 +59913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36117] = 3, + [36771] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1792), 10, + ACTIONS(1807), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58626,7 +59927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1790), 19, + ACTIONS(1805), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58646,10 +59947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36154] = 3, + [36808] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1704), 10, + ACTIONS(1783), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58660,7 +59961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1702), 19, + ACTIONS(1781), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58680,10 +59981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36191] = 3, + [36845] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1748), 10, + ACTIONS(1727), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58694,7 +59995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 19, + ACTIONS(1725), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58714,10 +60015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36228] = 3, + [36882] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(577), 10, + ACTIONS(499), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58728,7 +60029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 19, + ACTIONS(497), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58748,10 +60049,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36265] = 3, + [36919] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(577), 10, + ACTIONS(2142), 7, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + aux_sym_string_literal_token1, + sym_shortstring_literal, + ACTIONS(2144), 22, + anon_sym__, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_usize, + anon_sym_bool, + anon_sym_ByteArray, + anon_sym_felt252, + anon_sym_default, + sym_numeric_literal, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_mutable_specifier, + sym_super, + [36956] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1791), 10, anon_sym_EQ, anon_sym_STAR, anon_sym_LT, @@ -58762,7 +60097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(579), 19, + ACTIONS(1789), 19, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_CARET, @@ -58782,32 +60117,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK, - [36302] = 11, + [36993] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2113), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2115), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2121), 1, + ACTIONS(2140), 1, sym_identifier, - ACTIONS(2127), 1, + ACTIONS(2146), 1, anon_sym_RBRACE, - STATE(1039), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1425), 5, + STATE(1417), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2117), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58823,32 +60158,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36354] = 11, + [37045] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2113), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2115), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2121), 1, + ACTIONS(2140), 1, sym_identifier, - ACTIONS(2129), 1, + ACTIONS(2148), 1, anon_sym_RBRACE, - STATE(1039), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1425), 5, + STATE(1417), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2117), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58864,30 +60199,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36406] = 10, + [37097] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2113), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2115), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2121), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(1039), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1580), 5, + STATE(1613), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2117), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58903,30 +60238,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36455] = 10, + [37146] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2113), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2115), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2121), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(1039), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1587), 5, + STATE(1495), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2117), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58942,30 +60277,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36504] = 10, + [37195] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2113), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2115), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2121), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(1039), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1425), 5, + STATE(1417), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2117), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58981,30 +60316,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36553] = 10, + [37244] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2113), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2115), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2121), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(1039), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1549), 5, + STATE(1550), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2117), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59020,30 +60355,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36602] = 10, + [37293] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - ACTIONS(2113), 1, + ACTIONS(2132), 1, anon_sym_COLON_COLON, - ACTIONS(2115), 1, + ACTIONS(2134), 1, anon_sym_STAR, - ACTIONS(2119), 1, + ACTIONS(2138), 1, anon_sym_default, - ACTIONS(2121), 1, + ACTIONS(2140), 1, sym_identifier, - STATE(1039), 1, + STATE(1042), 1, sym_scoped_identifier, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - STATE(1520), 5, + STATE(1593), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(2117), 15, + ACTIONS(2136), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59059,19 +60394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36651] = 5, + [37342] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2131), 1, + ACTIONS(2150), 1, anon_sym_POUND, - STATE(825), 2, + STATE(837), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - ACTIONS(617), 3, + ACTIONS(632), 3, anon_sym_COLON_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1490), 19, + ACTIONS(1491), 19, anon_sym_impl, anon_sym_const, anon_sym_u8, @@ -59091,15 +60426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_identifier, sym_super, - [36688] = 3, + [37379] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 4, + ACTIONS(1243), 4, anon_sym_POUND, anon_sym_COLON_COLON, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1254), 19, + ACTIONS(1245), 19, anon_sym_impl, anon_sym_const, anon_sym_u8, @@ -59119,24 +60454,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, sym_identifier, sym_super, - [36719] = 9, + [37410] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1841), 1, + ACTIONS(1866), 1, anon_sym_COLON_COLON, - ACTIONS(1849), 1, + ACTIONS(1874), 1, anon_sym_default, - ACTIONS(2134), 1, + ACTIONS(2153), 1, sym_identifier, - STATE(1184), 1, + STATE(1277), 1, sym_generic_type, - STATE(1187), 1, + STATE(1278), 1, sym_generic_type_with_turbofish, - STATE(1344), 1, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1623), 1, + STATE(1498), 1, sym_scoped_identifier, - ACTIONS(1843), 15, + ACTIONS(1868), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59152,22 +60487,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36761] = 8, + [37452] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1480), 1, + STATE(1531), 1, sym_attribute, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2136), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59183,22 +60518,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36800] = 8, + [37491] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1507), 1, + STATE(1517), 1, sym_attribute, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2136), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59214,22 +60549,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36839] = 8, + [37530] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - STATE(1570), 1, + STATE(1606), 1, sym_attribute, - ACTIONS(2136), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59245,22 +60580,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36878] = 8, + [37569] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1538), 1, - sym_generic_type_with_turbofish, - STATE(1629), 1, + STATE(1502), 1, sym_attribute, - ACTIONS(2136), 15, + STATE(1547), 1, + sym_generic_type_with_turbofish, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59276,22 +60611,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36917] = 8, + [37608] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1501), 1, + STATE(1491), 1, sym_attribute, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2136), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59307,22 +60642,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36956] = 8, + [37647] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1522), 1, + STATE(1541), 1, sym_attribute, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2136), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59338,22 +60673,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [36995] = 8, + [37686] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1482), 1, + STATE(1506), 1, sym_attribute, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2136), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59369,22 +60704,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [37034] = 8, + [37725] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1497), 1, + STATE(1521), 1, sym_attribute, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2136), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59400,22 +60735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [37073] = 8, + [37764] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1476), 1, + STATE(1493), 1, sym_attribute, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2136), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59431,22 +60766,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [37112] = 8, + [37803] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1512), 1, + STATE(1530), 1, sym_attribute, - STATE(1538), 1, + STATE(1547), 1, sym_generic_type_with_turbofish, - ACTIONS(2136), 15, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59462,22 +60797,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [37151] = 8, + [37842] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(840), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(2138), 1, + ACTIONS(2157), 1, anon_sym_default, - ACTIONS(2140), 1, + ACTIONS(2159), 1, sym_identifier, - STATE(967), 1, + STATE(984), 1, sym_scoped_identifier, - STATE(1538), 1, - sym_generic_type_with_turbofish, - STATE(1540), 1, + STATE(1516), 1, sym_attribute, - ACTIONS(2136), 15, + STATE(1547), 1, + sym_generic_type_with_turbofish, + ACTIONS(2155), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59493,20 +60828,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [37190] = 7, + [37881] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2142), 1, + ACTIONS(2161), 1, anon_sym_COLON_COLON, - ACTIONS(2146), 1, + ACTIONS(2165), 1, anon_sym_default, - ACTIONS(2148), 1, + ACTIONS(2167), 1, sym_identifier, - STATE(1361), 1, + STATE(1390), 1, sym_scoped_identifier, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - ACTIONS(2144), 15, + ACTIONS(2163), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59522,20 +60857,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [37226] = 7, + [37917] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2142), 1, + ACTIONS(2161), 1, anon_sym_COLON_COLON, - ACTIONS(2152), 1, + ACTIONS(2171), 1, anon_sym_default, - ACTIONS(2154), 1, + ACTIONS(2173), 1, sym_identifier, - STATE(1468), 1, + STATE(1406), 1, sym_scoped_identifier, - STATE(1546), 1, + STATE(1548), 1, sym_generic_type_with_turbofish, - ACTIONS(2150), 15, + ACTIONS(2169), 15, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59551,17 +60886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ByteArray, anon_sym_felt252, sym_super, - [37262] = 4, + [37953] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1560), 1, + ACTIONS(1579), 1, anon_sym_COLON, - ACTIONS(1558), 4, + ACTIONS(1577), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2156), 11, + ACTIONS(2175), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59573,17 +60908,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37288] = 4, + [37979] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 1, + ACTIONS(1561), 1, anon_sym_COLON, - ACTIONS(1532), 4, + ACTIONS(1559), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2158), 11, + ACTIONS(2177), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59595,17 +60930,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37314] = 4, + [38005] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 1, + ACTIONS(1575), 1, anon_sym_COLON, - ACTIONS(1528), 4, + ACTIONS(1573), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2160), 11, + ACTIONS(2179), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59617,17 +60952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37340] = 4, + [38031] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 1, + ACTIONS(1565), 1, anon_sym_COLON, - ACTIONS(1554), 4, + ACTIONS(1563), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - ACTIONS(2162), 11, + ACTIONS(2181), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59639,24 +60974,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_nopanic, anon_sym_LT2, - [37366] = 9, + [38057] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2164), 1, + ACTIONS(2183), 1, anon_sym_LBRACE, - ACTIONS(2168), 1, + ACTIONS(2187), 1, anon_sym_COLON, - ACTIONS(2170), 1, + ACTIONS(2189), 1, anon_sym_BANG, - ACTIONS(2172), 1, + ACTIONS(2191), 1, anon_sym_COLON_COLON, - ACTIONS(2174), 1, + ACTIONS(2193), 1, anon_sym_LPAREN, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - STATE(866), 1, + STATE(885), 1, sym_type_arguments, - ACTIONS(2166), 7, + ACTIONS(2185), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59664,15 +60999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [37400] = 4, + anon_sym_in, + [38092] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 1, + ACTIONS(1565), 1, anon_sym_COLON, - ACTIONS(2162), 2, + ACTIONS(2181), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1554), 10, + ACTIONS(1563), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59683,12 +61019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37423] = 3, + anon_sym_in, + [38116] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1556), 1, + ACTIONS(1579), 1, anon_sym_COLON, - ACTIONS(1554), 12, + ACTIONS(1577), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59701,15 +61038,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37444] = 4, + anon_sym_in, + [38138] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1560), 1, + ACTIONS(1575), 1, anon_sym_COLON, - ACTIONS(2156), 2, + ACTIONS(2179), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(1558), 10, + ACTIONS(1573), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59720,48 +61058,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37467] = 3, + anon_sym_in, + [38162] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1560), 1, + ACTIONS(1579), 1, anon_sym_COLON, - ACTIONS(1558), 12, + ACTIONS(2175), 2, anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1577), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_BANG, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37488] = 3, + anon_sym_in, + [38186] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 1, + ACTIONS(1561), 1, anon_sym_COLON, - ACTIONS(1528), 12, + ACTIONS(2177), 2, anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(1559), 11, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_BANG, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37509] = 3, + anon_sym_in, + [38210] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 1, + ACTIONS(1565), 1, anon_sym_COLON, - ACTIONS(1532), 12, + ACTIONS(1563), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59774,64 +61117,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37530] = 4, + anon_sym_in, + [38232] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1534), 1, + ACTIONS(1561), 1, anon_sym_COLON, - ACTIONS(2158), 2, + ACTIONS(1559), 13, anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(1532), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_BANG, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37553] = 4, + anon_sym_in, + [38254] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1530), 1, + ACTIONS(1575), 1, anon_sym_COLON, - ACTIONS(2160), 2, + ACTIONS(1573), 13, anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(1528), 10, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, anon_sym_BANG, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - [37576] = 2, + anon_sym_in, + [38276] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2178), 12, + ACTIONS(508), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, - anon_sym_COLON_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT, + anon_sym_PIPE, anon_sym_nopanic, - [37594] = 2, + anon_sym_in, + [38295] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(501), 12, + ACTIONS(489), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59844,10 +61189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [37612] = 2, + anon_sym_in, + [38314] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(537), 12, + ACTIONS(544), 13, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59860,20 +61206,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_nopanic, - [37630] = 7, + anon_sym_in, + [38333] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(524), 13, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_nopanic, + anon_sym_in, + [38352] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2182), 1, + ACTIONS(2199), 1, anon_sym_COLON, - ACTIONS(2184), 1, + ACTIONS(2201), 1, anon_sym_BANG, - ACTIONS(2186), 1, + ACTIONS(2203), 1, anon_sym_COLON_COLON, - STATE(869), 1, + STATE(879), 1, sym_type_arguments, - ACTIONS(2180), 7, + ACTIONS(2197), 8, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_EQ, @@ -59881,53 +61245,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [37658] = 2, + anon_sym_in, + [38381] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(497), 12, + ACTIONS(1639), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT, - anon_sym_PIPE, anon_sym_nopanic, - [37676] = 13, + [38399] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2188), 1, - anon_sym_impl, - ACTIONS(2190), 1, - anon_sym_trait, - ACTIONS(2192), 1, - anon_sym_type, - ACTIONS(2194), 1, - anon_sym_const, - ACTIONS(2196), 1, - anon_sym_mod, - ACTIONS(2198), 1, - anon_sym_struct, - ACTIONS(2200), 1, - anon_sym_enum, - ACTIONS(2202), 1, - anon_sym_fn, - ACTIONS(2204), 1, - anon_sym_use, - ACTIONS(2206), 1, - anon_sym_extern, - STATE(1219), 1, - sym_extern, - STATE(1266), 1, - sym_function, - [37716] = 2, + ACTIONS(1617), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38417] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1572), 12, + ACTIONS(2205), 12, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59940,37 +61294,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37734] = 13, + [38435] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [38461] = 13, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2202), 1, + ACTIONS(2209), 1, + anon_sym_impl, + ACTIONS(2211), 1, + anon_sym_trait, + ACTIONS(2213), 1, + anon_sym_type, + ACTIONS(2215), 1, + anon_sym_const, + ACTIONS(2217), 1, + anon_sym_mod, + ACTIONS(2219), 1, + anon_sym_struct, + ACTIONS(2221), 1, + anon_sym_enum, + ACTIONS(2223), 1, anon_sym_fn, - ACTIONS(2206), 1, + ACTIONS(2225), 1, + anon_sym_use, + ACTIONS(2227), 1, anon_sym_extern, - ACTIONS(2208), 1, + STATE(1226), 1, + sym_function, + STATE(1227), 1, + sym_extern, + [38501] = 13, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2223), 1, + anon_sym_fn, + ACTIONS(2227), 1, + anon_sym_extern, + ACTIONS(2229), 1, anon_sym_impl, - ACTIONS(2210), 1, + ACTIONS(2231), 1, anon_sym_trait, - ACTIONS(2212), 1, + ACTIONS(2233), 1, anon_sym_type, - ACTIONS(2214), 1, + ACTIONS(2235), 1, anon_sym_const, - ACTIONS(2216), 1, + ACTIONS(2237), 1, anon_sym_mod, - ACTIONS(2218), 1, + ACTIONS(2239), 1, anon_sym_struct, - ACTIONS(2220), 1, + ACTIONS(2241), 1, anon_sym_enum, - ACTIONS(2222), 1, + ACTIONS(2243), 1, anon_sym_use, - STATE(1147), 1, + STATE(1212), 1, sym_extern, - STATE(1248), 1, + STATE(1255), 1, sym_function, - [37774] = 2, + [38541] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1602), 12, + ACTIONS(2247), 1, + anon_sym_COLON_COLON, + ACTIONS(2245), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -59978,67 +61381,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, - anon_sym_COLON_COLON, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37792] = 2, + [38560] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(549), 12, + ACTIONS(2251), 1, + anon_sym_COLON_COLON, + ACTIONS(2249), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, anon_sym_RPAREN, anon_sym_GT, - anon_sym_PIPE, anon_sym_nopanic, - [37810] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2168), 1, - anon_sym_COLON, - ACTIONS(2170), 1, - anon_sym_BANG, - ACTIONS(2174), 1, - anon_sym_LPAREN, - ACTIONS(2224), 1, - anon_sym_COLON_COLON, - ACTIONS(2166), 7, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [37835] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2226), 1, - anon_sym_RBRACK, - ACTIONS(2160), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LT2, - ACTIONS(1528), 7, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [37856] = 2, + [38579] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2229), 11, + ACTIONS(2253), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60050,16 +61415,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37873] = 4, + [38596] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2231), 1, + ACTIONS(2255), 1, anon_sym_RBRACK, - ACTIONS(2158), 3, + ACTIONS(2177), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1532), 7, + ACTIONS(1559), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -60067,10 +61432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [37894] = 2, + [38617] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2234), 11, + ACTIONS(2258), 1, + anon_sym_COLON_COLON, + ACTIONS(2245), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60078,53 +61445,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, - anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37911] = 2, + [38636] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2236), 11, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_implicits, - anon_sym_COLON_COLON, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_nopanic, - [37928] = 9, + ACTIONS(2262), 1, + anon_sym_LPAREN, + ACTIONS(2260), 10, + anon_sym_impl, + anon_sym_trait, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [38655] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2238), 1, + ACTIONS(2264), 1, anon_sym_RBRACE, - ACTIONS(2240), 1, + ACTIONS(2266), 1, anon_sym_POUND, - ACTIONS(2242), 1, + ACTIONS(2268), 1, anon_sym_COMMA, - ACTIONS(2244), 1, + ACTIONS(2270), 1, anon_sym_DOT_DOT, - ACTIONS(2246), 1, + ACTIONS(2272), 1, sym_numeric_literal, - ACTIONS(2248), 1, + ACTIONS(2274), 1, sym_identifier, - STATE(1032), 2, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1281), 3, + STATE(1350), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [37959] = 3, + [38686] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2252), 1, - anon_sym_COLON_COLON, - ACTIONS(2250), 10, + ACTIONS(2181), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60135,10 +61500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [37978] = 2, + anon_sym_LT2, + [38703] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 11, + ACTIONS(2276), 11, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60146,58 +61512,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, + anon_sym_COLON_COLON, anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - anon_sym_LT2, - [37995] = 3, + [38720] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2256), 1, + ACTIONS(2278), 1, + anon_sym_RBRACK, + ACTIONS(2181), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LT2, + ACTIONS(1563), 7, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LPAREN, - ACTIONS(2254), 10, - anon_sym_impl, - anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_use, - anon_sym_extern, - [38014] = 9, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [38741] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2240), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_DOT_DOT, - ACTIONS(2246), 1, - sym_numeric_literal, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2258), 1, + ACTIONS(2281), 11, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(2260), 1, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1032), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1287), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [38045] = 4, + anon_sym_implicits, + anon_sym_COLON_COLON, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [38758] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2262), 1, + ACTIONS(2283), 1, anon_sym_RBRACK, - ACTIONS(2162), 3, + ACTIONS(2179), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1554), 7, + ACTIONS(1573), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -60205,16 +61565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [38066] = 4, + [38779] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2265), 1, + ACTIONS(2286), 1, anon_sym_RBRACK, - ACTIONS(2156), 3, + ACTIONS(2175), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LT2, - ACTIONS(1558), 7, + ACTIONS(1577), 7, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -60222,28 +61582,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [38087] = 3, + [38800] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2268), 1, - anon_sym_COLON_COLON, - ACTIONS(2250), 10, - anon_sym_LBRACE, + ACTIONS(2266), 1, + anon_sym_POUND, + ACTIONS(2270), 1, + anon_sym_DOT_DOT, + ACTIONS(2272), 1, + sym_numeric_literal, + ACTIONS(2274), 1, + sym_identifier, + ACTIONS(2289), 1, + anon_sym_RBRACE, + ACTIONS(2291), 1, + anon_sym_COMMA, + STATE(1053), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1294), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38831] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(493), 10, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, anon_sym_RPAREN, anon_sym_GT, - anon_sym_nopanic, - [38106] = 3, + anon_sym_PIPE, + anon_sym_in, + [38847] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2272), 1, - anon_sym_COLON_COLON, - ACTIONS(2270), 10, + ACTIONS(2245), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60254,114 +61632,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38125] = 10, + [38863] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2266), 1, + anon_sym_POUND, + ACTIONS(2270), 1, + anon_sym_DOT_DOT, + ACTIONS(2272), 1, + sym_numeric_literal, + ACTIONS(2274), 1, + sym_identifier, + ACTIONS(2293), 1, + anon_sym_RBRACE, + STATE(1053), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1352), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [38891] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2164), 1, + ACTIONS(2183), 1, anon_sym_LBRACE, - ACTIONS(2166), 1, + ACTIONS(2185), 1, anon_sym_PIPE, - ACTIONS(2168), 1, + ACTIONS(2187), 1, anon_sym_COLON, - ACTIONS(2170), 1, + ACTIONS(2189), 1, anon_sym_BANG, - ACTIONS(2174), 1, + ACTIONS(2193), 1, anon_sym_LPAREN, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2276), 1, - anon_sym_COLON_COLON, - STATE(866), 1, - sym_type_arguments, - ACTIONS(2274), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [38157] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2276), 1, + ACTIONS(2297), 1, anon_sym_COLON_COLON, - ACTIONS(2278), 1, - anon_sym_BANG, - STATE(866), 1, + STATE(885), 1, sym_type_arguments, - ACTIONS(2274), 6, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - [38181] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2280), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, + ACTIONS(2295), 2, anon_sym_COMMA, - anon_sym_implicits, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_nopanic, - [38197] = 2, + [38923] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2282), 10, - anon_sym_LBRACE, + ACTIONS(2299), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2303), 1, anon_sym_COMMA, - anon_sym_implicits, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_nopanic, - [38213] = 10, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2307), 1, + sym_identifier, + STATE(1196), 1, + sym_enum_variant, + STATE(1405), 1, + sym_field_declaration, + STATE(1584), 1, + sym_visibility_modifier, + STATE(969), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [38955] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2164), 1, + ACTIONS(2183), 1, anon_sym_LBRACE, - ACTIONS(2170), 1, + ACTIONS(2189), 1, anon_sym_BANG, - ACTIONS(2174), 1, + ACTIONS(2193), 1, anon_sym_LPAREN, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2274), 1, + ACTIONS(2295), 1, anon_sym_SEMI, - ACTIONS(2284), 1, + ACTIONS(2309), 1, anon_sym_RBRACK, - ACTIONS(2287), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - STATE(866), 1, + STATE(885), 1, sym_type_arguments, - ACTIONS(2166), 2, + ACTIONS(2185), 2, anon_sym_COMMA, anon_sym_PIPE, - [38245] = 2, + [38987] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2289), 10, + ACTIONS(2195), 1, + anon_sym_LT2, + STATE(887), 1, + sym_type_arguments, + ACTIONS(2245), 8, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, anon_sym_RPAREN, - anon_sym_GT, anon_sym_nopanic, - [38261] = 2, + [39007] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2291), 10, + ACTIONS(2314), 10, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -60372,32 +61748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_use, anon_sym_extern, - [38277] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2293), 1, - anon_sym_RBRACE, - ACTIONS(2295), 1, - anon_sym_POUND, - ACTIONS(2297), 1, - anon_sym_COMMA, - ACTIONS(2299), 1, - anon_sym_pub, - ACTIONS(2301), 1, - sym_identifier, - STATE(1315), 1, - sym_enum_variant, - STATE(1429), 1, - sym_field_declaration, - STATE(1521), 1, - sym_visibility_modifier, - STATE(940), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38309] = 2, + [39023] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2303), 10, + ACTIONS(2316), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60408,72 +61762,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38325] = 8, + [39039] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2240), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_DOT_DOT, - ACTIONS(2246), 1, - sym_numeric_literal, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2305), 1, - anon_sym_RBRACE, - STATE(1032), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1417), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [38353] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2240), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_DOT_DOT, - ACTIONS(2246), 1, - sym_numeric_literal, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2307), 1, - anon_sym_RBRACE, - STATE(1032), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1417), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [38381] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2295), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_pub, - ACTIONS(2301), 1, - sym_identifier, - ACTIONS(2309), 1, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2297), 1, + anon_sym_COLON_COLON, + ACTIONS(2318), 1, + anon_sym_BANG, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2295), 6, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(2311), 1, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1237), 1, - sym_enum_variant, - STATE(1429), 1, - sym_field_declaration, - STATE(1521), 1, - sym_visibility_modifier, - STATE(949), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38413] = 2, + anon_sym_RPAREN, + [39063] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2313), 10, + ACTIONS(2320), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60484,60 +61794,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38429] = 4, + [39079] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - STATE(868), 1, - sym_type_arguments, - ACTIONS(2250), 8, - anon_sym_LBRACE, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2322), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 8, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, anon_sym_RPAREN, - anon_sym_nopanic, - [38449] = 2, + anon_sym_PIPE, + anon_sym_in, + [39099] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2315), 10, - anon_sym_LBRACE, + ACTIONS(481), 10, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, anon_sym_RPAREN, anon_sym_GT, - anon_sym_nopanic, - [38465] = 8, + anon_sym_PIPE, + anon_sym_in, + [39115] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2240), 1, + ACTIONS(2266), 1, anon_sym_POUND, - ACTIONS(2244), 1, + ACTIONS(2270), 1, anon_sym_DOT_DOT, - ACTIONS(2246), 1, + ACTIONS(2272), 1, sym_numeric_literal, - ACTIONS(2248), 1, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(2317), 1, + ACTIONS(2324), 1, anon_sym_RBRACE, - STATE(1032), 2, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1417), 3, + STATE(1352), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [38493] = 2, + [39143] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2250), 10, + ACTIONS(2326), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, @@ -60548,44 +61858,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT, anon_sym_nopanic, - [38509] = 2, + [39159] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2319), 10, - anon_sym_LBRACE, + ACTIONS(477), 10, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_implicits, anon_sym_RPAREN, anon_sym_GT, - anon_sym_nopanic, - [38525] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2240), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_DOT_DOT, - ACTIONS(2246), 1, - sym_numeric_literal, - ACTIONS(2248), 1, - sym_identifier, - ACTIONS(2321), 1, - anon_sym_RBRACE, - STATE(1032), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1417), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [38553] = 2, + anon_sym_PIPE, + anon_sym_in, + [39175] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2323), 10, + ACTIONS(2328), 10, anon_sym_impl, anon_sym_trait, anon_sym_type, @@ -60596,299 +61886,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_use, anon_sym_extern, - [38569] = 2, + [39191] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2325), 10, + ACTIONS(2330), 10, anon_sym_impl, anon_sym_trait, - anon_sym_type, - anon_sym_const, - anon_sym_mod, - anon_sym_struct, - anon_sym_enum, - anon_sym_fn, - anon_sym_use, - anon_sym_extern, - [38585] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2295), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_pub, - ACTIONS(2327), 1, - anon_sym_RBRACE, - ACTIONS(2329), 1, - anon_sym_COMMA, - ACTIONS(2331), 1, - sym_identifier, - STATE(1313), 1, - sym_field_declaration, - STATE(1535), 1, - sym_visibility_modifier, - STATE(965), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38614] = 2, + anon_sym_type, + anon_sym_const, + anon_sym_mod, + anon_sym_struct, + anon_sym_enum, + anon_sym_fn, + anon_sym_use, + anon_sym_extern, + [39207] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(489), 9, + ACTIONS(2332), 10, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_implicits, anon_sym_RPAREN, anon_sym_GT, - anon_sym_PIPE, - [38629] = 6, + anon_sym_nopanic, + [39223] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2170), 1, - anon_sym_BANG, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2276), 1, - anon_sym_COLON_COLON, - STATE(866), 1, - sym_type_arguments, - ACTIONS(2274), 5, + ACTIONS(2334), 10, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, anon_sym_COMMA, anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, anon_sym_nopanic, - [38652] = 9, + [39239] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2164), 1, + ACTIONS(2336), 10, anon_sym_LBRACE, - ACTIONS(2166), 1, - anon_sym_PIPE, - ACTIONS(2170), 1, - anon_sym_BANG, - ACTIONS(2174), 1, - anon_sym_LPAREN, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2333), 1, - anon_sym_COLON_COLON, - STATE(866), 1, - sym_type_arguments, - ACTIONS(2284), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [38681] = 9, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2295), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_pub, - ACTIONS(2301), 1, - sym_identifier, - ACTIONS(2335), 1, - anon_sym_RBRACE, - STATE(1406), 1, - sym_enum_variant, - STATE(1429), 1, - sym_field_declaration, - STATE(1521), 1, - sym_visibility_modifier, - STATE(926), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [38710] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(493), 9, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_implicits, anon_sym_RPAREN, anon_sym_GT, - anon_sym_PIPE, - [38725] = 9, + anon_sym_nopanic, + [39255] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2301), 1, + ACTIONS(2307), 1, sym_identifier, - ACTIONS(2337), 1, + ACTIONS(2338), 1, anon_sym_RBRACE, - STATE(1406), 1, + ACTIONS(2340), 1, + anon_sym_COMMA, + STATE(1322), 1, sym_enum_variant, - STATE(1429), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1521), 1, + STATE(1584), 1, sym_visibility_modifier, - STATE(926), 2, + STATE(960), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38754] = 9, + [39287] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2266), 1, anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_pub, - ACTIONS(2301), 1, + ACTIONS(2270), 1, + anon_sym_DOT_DOT, + ACTIONS(2272), 1, + sym_numeric_literal, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(2339), 1, + ACTIONS(2342), 1, anon_sym_RBRACE, - STATE(1406), 1, - sym_enum_variant, - STATE(1429), 1, - sym_field_declaration, - STATE(1521), 1, - sym_visibility_modifier, - STATE(926), 2, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38783] = 9, + STATE(1352), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [39315] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2266), 1, anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_pub, - ACTIONS(2301), 1, + ACTIONS(2270), 1, + anon_sym_DOT_DOT, + ACTIONS(2272), 1, + sym_numeric_literal, + ACTIONS(2274), 1, sym_identifier, - ACTIONS(2341), 1, + ACTIONS(2344), 1, anon_sym_RBRACE, - STATE(1406), 1, - sym_enum_variant, - STATE(1429), 1, - sym_field_declaration, - STATE(1521), 1, - sym_visibility_modifier, - STATE(926), 2, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38812] = 9, + STATE(1352), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [39343] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2346), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_nopanic, + [39359] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2348), 9, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [39374] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2350), 1, + anon_sym_LBRACE, + ACTIONS(2352), 1, + anon_sym_BANG, + ACTIONS(2354), 1, + anon_sym_COLON_COLON, + ACTIONS(2356), 1, + anon_sym_LPAREN, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2185), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [39401] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2301), 1, + ACTIONS(2307), 1, sym_identifier, - ACTIONS(2343), 1, + ACTIONS(2358), 1, anon_sym_RBRACE, - STATE(1406), 1, - sym_enum_variant, - STATE(1429), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1521), 1, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, sym_visibility_modifier, - STATE(926), 2, + STATE(958), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38841] = 9, + [39430] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2331), 1, - sym_identifier, - ACTIONS(2345), 1, + ACTIONS(2360), 1, anon_sym_RBRACE, - ACTIONS(2347), 1, + ACTIONS(2362), 1, anon_sym_COMMA, - STATE(1252), 1, + ACTIONS(2364), 1, + sym_identifier, + STATE(1320), 1, sym_field_declaration, - STATE(1535), 1, + STATE(1565), 1, sym_visibility_modifier, - STATE(961), 2, + STATE(976), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38870] = 8, + [39459] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2349), 1, - anon_sym_LBRACE, - ACTIONS(2351), 1, - anon_sym_BANG, - ACTIONS(2353), 1, - anon_sym_COLON_COLON, - ACTIONS(2355), 1, - anon_sym_LPAREN, - STATE(866), 1, - sym_type_arguments, - ACTIONS(2166), 3, + ACTIONS(2366), 9, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [38897] = 4, + anon_sym_in, + [39474] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2168), 1, - anon_sym_COLON, - ACTIONS(2357), 1, - anon_sym_COLON_COLON, - ACTIONS(2166), 7, + ACTIONS(2185), 9, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38916] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2240), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_DOT_DOT, - ACTIONS(2246), 1, - sym_numeric_literal, - ACTIONS(2248), 1, - sym_identifier, - STATE(1032), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1417), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [38941] = 9, + anon_sym_in, + [39489] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2301), 1, + ACTIONS(2307), 1, sym_identifier, - ACTIONS(2359), 1, + ACTIONS(2368), 1, anon_sym_RBRACE, - STATE(1406), 1, - sym_enum_variant, - STATE(1429), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1521), 1, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, sym_visibility_modifier, - STATE(926), 2, + STATE(958), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [38970] = 2, + [39518] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(485), 9, + ACTIONS(2370), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60896,12 +62147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT, anon_sym_PIPE, - [38985] = 2, + anon_sym_in, + [39533] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2361), 8, + ACTIONS(2372), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60910,10 +62161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [38999] = 2, + anon_sym_in, + [39548] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2363), 8, + ACTIONS(2374), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60922,10 +62174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39013] = 2, + anon_sym_in, + [39563] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2365), 8, + ACTIONS(2376), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60934,44 +62187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39027] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2295), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_pub, - ACTIONS(2331), 1, - sym_identifier, - ACTIONS(2367), 1, - anon_sym_RBRACE, - STATE(1407), 1, - sym_field_declaration, - STATE(1535), 1, - sym_visibility_modifier, - STATE(975), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39053] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2170), 1, - anon_sym_BANG, - ACTIONS(2369), 1, - anon_sym_COLON_COLON, - ACTIONS(2371), 1, - anon_sym_LT2, - STATE(866), 1, - sym_type_arguments, - ACTIONS(2274), 4, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [39075] = 2, + anon_sym_in, + [39578] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2373), 8, + ACTIONS(2374), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -60980,28 +62200,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39089] = 8, + anon_sym_in, + [39593] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2331), 1, + ACTIONS(2307), 1, sym_identifier, - ACTIONS(2375), 1, + ACTIONS(2378), 1, anon_sym_RBRACE, - STATE(1407), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1535), 1, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, sym_visibility_modifier, - STATE(975), 2, + STATE(958), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39115] = 2, + [39622] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2377), 8, + ACTIONS(2380), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61010,10 +62233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39129] = 2, + anon_sym_in, + [39637] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2379), 8, + ACTIONS(2382), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61022,10 +62246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39143] = 2, + anon_sym_in, + [39652] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2381), 8, + ACTIONS(2384), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61034,28 +62259,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39157] = 8, + anon_sym_in, + [39667] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2386), 9, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [39682] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2301), 1, + ACTIONS(2307), 1, sym_identifier, - STATE(1377), 1, - sym_enum_variant, - STATE(1429), 1, + ACTIONS(2388), 1, + anon_sym_RBRACE, + STATE(1405), 1, sym_field_declaration, - STATE(1521), 1, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, sym_visibility_modifier, - STATE(999), 2, + STATE(958), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39711] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2266), 1, + anon_sym_POUND, + ACTIONS(2270), 1, + anon_sym_DOT_DOT, + ACTIONS(2272), 1, + sym_numeric_literal, + ACTIONS(2274), 1, + sym_identifier, + STATE(1053), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39183] = 2, + STATE(1352), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [39736] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2383), 8, + ACTIONS(2390), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61064,10 +62323,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39197] = 2, + anon_sym_in, + [39751] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2307), 1, + sym_identifier, + ACTIONS(2392), 1, + anon_sym_RBRACE, + STATE(1405), 1, + sym_field_declaration, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, + sym_visibility_modifier, + STATE(958), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [39780] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2385), 8, + ACTIONS(2394), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61076,10 +62356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39211] = 2, + anon_sym_in, + [39795] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2387), 8, + ACTIONS(2396), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61088,28 +62369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39225] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2295), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_pub, - ACTIONS(2331), 1, - sym_identifier, - ACTIONS(2389), 1, - anon_sym_RBRACE, - STATE(1407), 1, - sym_field_declaration, - STATE(1535), 1, - sym_visibility_modifier, - STATE(975), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39251] = 2, + anon_sym_in, + [39810] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2391), 8, + ACTIONS(2398), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61118,10 +62382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39265] = 2, + anon_sym_in, + [39825] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2393), 8, + ACTIONS(2400), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61130,10 +62395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39279] = 2, + anon_sym_in, + [39840] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2395), 8, + ACTIONS(2402), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61142,28 +62408,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39293] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2295), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_pub, - ACTIONS(2331), 1, - sym_identifier, - ACTIONS(2397), 1, - anon_sym_RBRACE, - STATE(1407), 1, - sym_field_declaration, - STATE(1535), 1, - sym_visibility_modifier, - STATE(975), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39319] = 2, + anon_sym_in, + [39855] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2399), 8, + ACTIONS(2404), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61172,10 +62421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39333] = 2, + anon_sym_in, + [39870] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2401), 8, + ACTIONS(2406), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61184,10 +62434,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39347] = 2, + anon_sym_in, + [39885] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2297), 1, + anon_sym_COLON_COLON, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2295), 5, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_implicits, + anon_sym_nopanic, + [39908] = 9, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2183), 1, + anon_sym_LBRACE, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2408), 1, + anon_sym_COLON_COLON, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2309), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [39937] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2403), 8, + ACTIONS(2410), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61196,10 +62484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39361] = 2, + anon_sym_in, + [39952] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2405), 8, + ACTIONS(2412), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61208,10 +62497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39375] = 2, + anon_sym_in, + [39967] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2407), 8, + ACTIONS(2414), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61220,28 +62510,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39389] = 8, + anon_sym_in, + [39982] = 9, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + ACTIONS(2416), 1, + anon_sym_RBRACE, + ACTIONS(2418), 1, + anon_sym_COMMA, + STATE(1204), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(978), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40011] = 9, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2307), 1, sym_identifier, - STATE(1337), 1, - sym_enum_variant, - STATE(1429), 1, + ACTIONS(2420), 1, + anon_sym_RBRACE, + STATE(1405), 1, sym_field_declaration, - STATE(1521), 1, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, sym_visibility_modifier, - STATE(999), 2, + STATE(958), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39415] = 2, + [40040] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2409), 8, + ACTIONS(2422), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61250,10 +62563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39429] = 2, + anon_sym_in, + [40055] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2411), 8, + ACTIONS(2424), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61262,10 +62576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39443] = 2, + anon_sym_in, + [40070] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2413), 8, + ACTIONS(2426), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61274,10 +62589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39457] = 2, + anon_sym_in, + [40085] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 8, + ACTIONS(2428), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61286,10 +62602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39471] = 2, + anon_sym_in, + [40100] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2417), 8, + ACTIONS(2430), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61298,10 +62615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39485] = 2, + anon_sym_in, + [40115] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2419), 8, + ACTIONS(2432), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61310,24 +62628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39499] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2158), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2231), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1532), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - [39517] = 2, + anon_sym_in, + [40130] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2421), 8, + ACTIONS(2434), 9, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, @@ -61336,7073 +62641,7184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [39531] = 8, + anon_sym_in, + [40145] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2301), 1, + ACTIONS(2307), 1, sym_identifier, - STATE(1224), 1, + STATE(1397), 1, sym_enum_variant, - STATE(1429), 1, + STATE(1405), 1, sym_field_declaration, - STATE(1521), 1, + STATE(1584), 1, sym_visibility_modifier, - STATE(999), 2, + STATE(1025), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39557] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2423), 8, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [39571] = 2, + [40171] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2399), 8, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, + ACTIONS(2175), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2286), 2, anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(1577), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, anon_sym_PIPE, - [39585] = 8, + [40189] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2331), 1, + ACTIONS(2307), 1, sym_identifier, - ACTIONS(2425), 1, - anon_sym_RBRACE, - STATE(1407), 1, + STATE(1318), 1, + sym_enum_variant, + STATE(1405), 1, sym_field_declaration, - STATE(1535), 1, + STATE(1584), 1, sym_visibility_modifier, - STATE(975), 2, + STATE(1025), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39611] = 8, + [40215] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2331), 1, + ACTIONS(2364), 1, sym_identifier, - ACTIONS(2427), 1, + ACTIONS(2436), 1, anon_sym_RBRACE, - STATE(1407), 1, + STATE(1473), 1, sym_field_declaration, - STATE(1535), 1, + STATE(1565), 1, sym_visibility_modifier, - STATE(975), 2, + STATE(979), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39637] = 4, + [40241] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2160), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2226), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1528), 4, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - [39655] = 2, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2307), 1, + sym_identifier, + STATE(1405), 1, + sym_field_declaration, + STATE(1481), 1, + sym_enum_variant, + STATE(1584), 1, + sym_visibility_modifier, + STATE(958), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40267] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2429), 8, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + ACTIONS(2438), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [39669] = 2, + STATE(1473), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(979), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40293] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 8, - anon_sym_RBRACE, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2440), 1, + anon_sym_COLON_COLON, + ACTIONS(2442), 1, + anon_sym_LT2, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2295), 4, anon_sym_SEMI, - anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [39683] = 4, + anon_sym_GT, + [40315] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2156), 2, + ACTIONS(2177), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2265), 2, + ACTIONS(2255), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1558), 4, + ACTIONS(1559), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - [39701] = 2, + [40333] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2431), 8, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + ACTIONS(2444), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [39715] = 4, + STATE(1473), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(979), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40359] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2162), 2, + ACTIONS(2181), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2262), 2, + ACTIONS(2278), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1554), 4, + ACTIONS(1563), 4, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_LPAREN, anon_sym_PIPE, - [39733] = 8, + [40377] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2301), 1, + ACTIONS(2364), 1, sym_identifier, - STATE(1406), 1, - sym_enum_variant, - STATE(1429), 1, + ACTIONS(2446), 1, + anon_sym_RBRACE, + STATE(1473), 1, sym_field_declaration, - STATE(1521), 1, + STATE(1565), 1, sym_visibility_modifier, - STATE(926), 2, + STATE(979), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39759] = 7, + [40403] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2331), 1, + ACTIONS(2307), 1, sym_identifier, - STATE(1222), 1, + STATE(1345), 1, + sym_enum_variant, + STATE(1405), 1, sym_field_declaration, - STATE(1535), 1, - sym_visibility_modifier, - STATE(999), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [39782] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2107), 1, - anon_sym_LBRACE, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2433), 1, - anon_sym_STAR, - STATE(854), 1, - sym_type_arguments, - STATE(1163), 1, - sym_use_list, - ACTIONS(2435), 2, - sym_identifier, - sym_super, - [39805] = 7, + STATE(1584), 1, + sym_visibility_modifier, + STATE(1025), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40429] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, + ACTIONS(2179), 2, anon_sym_LBRACE, - ACTIONS(2176), 1, anon_sym_LT2, - ACTIONS(2437), 1, - anon_sym_STAR, - STATE(862), 1, - sym_type_arguments, - STATE(1167), 1, - sym_use_list, - ACTIONS(2439), 2, - sym_identifier, - sym_super, - [39828] = 7, + ACTIONS(2283), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1573), 4, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + [40447] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2331), 1, + ACTIONS(2364), 1, sym_identifier, - STATE(1407), 1, + ACTIONS(2448), 1, + anon_sym_RBRACE, + STATE(1473), 1, sym_field_declaration, - STATE(1535), 1, + STATE(1565), 1, sym_visibility_modifier, - STATE(975), 2, + STATE(979), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39851] = 7, + [40473] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2295), 1, + ACTIONS(2301), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2305), 1, anon_sym_pub, - ACTIONS(2331), 1, + ACTIONS(2364), 1, sym_identifier, - STATE(1311), 1, + ACTIONS(2450), 1, + anon_sym_RBRACE, + STATE(1473), 1, sym_field_declaration, - STATE(1535), 1, + STATE(1565), 1, sym_visibility_modifier, - STATE(999), 2, + STATE(979), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [39874] = 7, + [40499] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2452), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + STATE(887), 1, + sym_type_arguments, + ACTIONS(2245), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + [40518] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2437), 1, - anon_sym_STAR, - STATE(860), 1, + ACTIONS(2201), 1, + anon_sym_BANG, + ACTIONS(2454), 1, + anon_sym_COLON_COLON, + STATE(879), 1, sym_type_arguments, - STATE(1167), 1, - sym_use_list, - ACTIONS(2439), 2, - sym_identifier, - sym_super, - [39897] = 8, + ACTIONS(2197), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [40539] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2456), 1, anon_sym_LBRACE, - ACTIONS(2443), 1, + ACTIONS(2458), 1, anon_sym_EQ, - ACTIONS(2445), 1, + ACTIONS(2460), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2462), 1, anon_sym_RBRACK, - ACTIONS(2449), 1, + ACTIONS(2464), 1, anon_sym_COLON_COLON, - ACTIONS(2451), 1, + ACTIONS(2466), 1, anon_sym_LPAREN, - STATE(1561), 1, + STATE(1555), 1, sym_delim_token_tree, - [39922] = 8, + [40564] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, - anon_sym_LBRACE, - ACTIONS(2443), 1, - anon_sym_EQ, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_RBRACK, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2453), 1, - anon_sym_COLON_COLON, - STATE(1561), 1, - sym_delim_token_tree, - [39947] = 8, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + STATE(1321), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(1025), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40587] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2456), 1, anon_sym_LBRACE, - ACTIONS(2445), 1, + ACTIONS(2460), 1, anon_sym_LBRACK, - ACTIONS(2451), 1, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(2455), 1, + ACTIONS(2468), 1, anon_sym_EQ, - ACTIONS(2457), 1, + ACTIONS(2470), 1, anon_sym_RBRACK, - ACTIONS(2459), 1, + ACTIONS(2472), 1, anon_sym_COLON_COLON, - STATE(1558), 1, + STATE(1559), 1, sym_delim_token_tree, - [39972] = 8, + [40612] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + STATE(1306), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(1025), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40635] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + STATE(1400), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(1025), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40658] = 7, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2301), 1, + anon_sym_POUND, + ACTIONS(2305), 1, + anon_sym_pub, + ACTIONS(2364), 1, + sym_identifier, + STATE(1473), 1, + sym_field_declaration, + STATE(1565), 1, + sym_visibility_modifier, + STATE(979), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [40681] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2456), 1, anon_sym_LBRACE, - ACTIONS(2443), 1, + ACTIONS(2458), 1, anon_sym_EQ, - ACTIONS(2445), 1, + ACTIONS(2460), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2462), 1, anon_sym_RBRACK, - ACTIONS(2451), 1, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2474), 1, anon_sym_COLON_COLON, - STATE(1561), 1, + STATE(1555), 1, sym_delim_token_tree, - [39997] = 6, + [40706] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2184), 1, + ACTIONS(2201), 1, anon_sym_BANG, - ACTIONS(2463), 1, + ACTIONS(2476), 1, anon_sym_COLON_COLON, - STATE(869), 1, + STATE(879), 1, sym_type_arguments, - ACTIONS(2180), 3, + ACTIONS(2197), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, - [40018] = 6, + [40727] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2126), 1, + anon_sym_LBRACE, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2184), 1, - anon_sym_BANG, - ACTIONS(2465), 1, - anon_sym_COLON_COLON, - STATE(869), 1, + ACTIONS(2478), 1, + anon_sym_STAR, + STATE(873), 1, sym_type_arguments, - ACTIONS(2180), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [40039] = 6, + STATE(1175), 1, + sym_use_list, + ACTIONS(2480), 2, + sym_identifier, + sym_super, + [40750] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2456), 1, + anon_sym_LBRACE, + ACTIONS(2458), 1, + anon_sym_EQ, + ACTIONS(2460), 1, + anon_sym_LBRACK, + ACTIONS(2462), 1, + anon_sym_RBRACK, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, + anon_sym_COLON_COLON, + STATE(1555), 1, + sym_delim_token_tree, + [40775] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2467), 1, + ACTIONS(2484), 1, anon_sym_BANG, - ACTIONS(2469), 1, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - STATE(869), 1, + STATE(879), 1, sym_type_arguments, - ACTIONS(2180), 3, + ACTIONS(2197), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [40060] = 5, + [40796] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2471), 1, + ACTIONS(2126), 1, anon_sym_LBRACE, - STATE(868), 1, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2488), 1, + anon_sym_STAR, + STATE(872), 1, sym_type_arguments, - ACTIONS(2250), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - [40079] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2295), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_pub, - ACTIONS(2331), 1, + STATE(1189), 1, + sym_use_list, + ACTIONS(2490), 2, sym_identifier, - STATE(1380), 1, - sym_field_declaration, - STATE(1535), 1, - sym_visibility_modifier, - STATE(999), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [40102] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2475), 1, - anon_sym_COMMA, - ACTIONS(2477), 1, - anon_sym_nopanic, - STATE(1003), 1, - aux_sym_function_repeat1, - STATE(1354), 1, - sym_nopanic, - ACTIONS(2473), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [40122] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2477), 1, - anon_sym_nopanic, - ACTIONS(2481), 1, - anon_sym_DASH_GT, - ACTIONS(2483), 1, - anon_sym_implicits, - STATE(1452), 1, - sym_nopanic, - ACTIONS(2479), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [40142] = 6, + sym_super, + [40819] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2477), 1, - anon_sym_nopanic, - ACTIONS(2487), 1, - anon_sym_DASH_GT, - ACTIONS(2489), 1, - anon_sym_implicits, - STATE(1339), 1, - sym_nopanic, - ACTIONS(2485), 2, + ACTIONS(2126), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [40162] = 7, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2180), 1, - anon_sym_PIPE, - ACTIONS(2182), 1, - anon_sym_COLON, - ACTIONS(2184), 1, - anon_sym_BANG, - ACTIONS(2491), 1, - anon_sym_COLON_COLON, - STATE(869), 1, + ACTIONS(2488), 1, + anon_sym_STAR, + STATE(871), 1, sym_type_arguments, - [40184] = 7, + STATE(1189), 1, + sym_use_list, + ACTIONS(2490), 2, + sym_identifier, + sym_super, + [40842] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, - anon_sym_LT2, - ACTIONS(2493), 1, - anon_sym_COMMA, - ACTIONS(2495), 1, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2492), 1, anon_sym_COLON_COLON, - ACTIONS(2497), 1, - anon_sym_GT, - STATE(866), 1, - sym_type_arguments, - STATE(1196), 1, - aux_sym_type_parameters_repeat1, - [40206] = 5, + ACTIONS(2185), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [40860] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2351), 1, + ACTIONS(1559), 6, anon_sym_BANG, - ACTIONS(2355), 1, - anon_sym_LPAREN, - ACTIONS(2499), 1, anon_sym_COLON_COLON, - ACTIONS(2166), 3, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [40224] = 6, + [40872] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2496), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2498), 1, anon_sym_nopanic, - STATE(989), 1, + STATE(1021), 1, aux_sym_function_repeat1, - STATE(1399), 1, + STATE(1392), 1, sym_nopanic, - ACTIONS(2501), 2, + ACTIONS(2494), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40244] = 2, + [40892] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1558), 6, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2197), 1, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [40256] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2170), 1, + ACTIONS(2199), 1, + anon_sym_COLON, + ACTIONS(2201), 1, anon_sym_BANG, - ACTIONS(2174), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, + ACTIONS(2500), 1, anon_sym_COLON_COLON, - ACTIONS(2166), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [40274] = 2, + STATE(879), 1, + sym_type_arguments, + [40914] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1554), 6, + ACTIONS(2352), 1, anon_sym_BANG, - anon_sym_COLON_COLON, + ACTIONS(2356), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [40286] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1528), 6, - anon_sym_BANG, + ACTIONS(2502), 1, anon_sym_COLON_COLON, - anon_sym_LPAREN, + ACTIONS(2185), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [40298] = 7, + [40932] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2495), 1, - anon_sym_COLON_COLON, - ACTIONS(2505), 1, + ACTIONS(2504), 1, anon_sym_COMMA, - ACTIONS(2507), 1, + ACTIONS(2506), 1, + anon_sym_COLON_COLON, + ACTIONS(2508), 1, anon_sym_GT, - STATE(866), 1, + STATE(885), 1, sym_type_arguments, - STATE(1295), 1, + STATE(1280), 1, aux_sym_type_parameters_repeat1, - [40320] = 2, + [40954] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1532), 6, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [40332] = 6, + ACTIONS(2496), 1, + anon_sym_COMMA, + ACTIONS(2498), 1, + anon_sym_nopanic, + STATE(997), 1, + aux_sym_function_repeat1, + STATE(1389), 1, + sym_nopanic, + ACTIONS(2510), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [40974] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2496), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2498), 1, anon_sym_nopanic, - STATE(1003), 1, + STATE(990), 1, aux_sym_function_repeat1, - STATE(1369), 1, + STATE(1454), 1, sym_nopanic, - ACTIONS(2509), 2, + ACTIONS(2512), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40352] = 6, + [40994] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2442), 1, + anon_sym_LT2, + STATE(887), 1, + sym_type_arguments, + ACTIONS(2245), 4, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [41010] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2496), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2498), 1, anon_sym_nopanic, - STATE(976), 1, + STATE(1021), 1, aux_sym_function_repeat1, STATE(1367), 1, sym_nopanic, - ACTIONS(2511), 2, + ACTIONS(2514), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40372] = 6, + [41030] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, - anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2498), 1, anon_sym_nopanic, - STATE(992), 1, - aux_sym_function_repeat1, - STATE(1365), 1, + ACTIONS(2518), 1, + anon_sym_DASH_GT, + ACTIONS(2520), 1, + anon_sym_implicits, + STATE(1380), 1, sym_nopanic, - ACTIONS(2513), 2, + ACTIONS(2516), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40392] = 6, + [41050] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2496), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2498), 1, anon_sym_nopanic, - STATE(1003), 1, + STATE(1021), 1, aux_sym_function_repeat1, - STATE(1353), 1, + STATE(1369), 1, sym_nopanic, - ACTIONS(2515), 2, + ACTIONS(2522), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40412] = 6, + [41070] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2496), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2498), 1, anon_sym_nopanic, - STATE(996), 1, + STATE(999), 1, aux_sym_function_repeat1, - STATE(1352), 1, + STATE(1359), 1, sym_nopanic, - ACTIONS(2517), 2, + ACTIONS(2524), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40432] = 5, + [41090] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2170), 1, - anon_sym_BANG, - ACTIONS(2174), 1, - anon_sym_LPAREN, - ACTIONS(2519), 1, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2506), 1, anon_sym_COLON_COLON, - ACTIONS(2166), 3, - anon_sym_RBRACK, + ACTIONS(2526), 1, anon_sym_COMMA, - anon_sym_PIPE, - [40450] = 4, + ACTIONS(2528), 1, + anon_sym_GT, + STATE(885), 1, + sym_type_arguments, + STATE(1242), 1, + aux_sym_type_parameters_repeat1, + [41112] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, - anon_sym_LT2, - STATE(868), 1, - sym_type_arguments, - ACTIONS(2250), 4, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [40466] = 6, + ACTIONS(1563), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [41124] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2475), 1, + ACTIONS(2496), 1, anon_sym_COMMA, - ACTIONS(2477), 1, + ACTIONS(2498), 1, anon_sym_nopanic, - STATE(1003), 1, + STATE(1006), 1, aux_sym_function_repeat1, - STATE(1348), 1, + STATE(1373), 1, sym_nopanic, - ACTIONS(2521), 2, + ACTIONS(2530), 2, anon_sym_LBRACE, anon_sym_SEMI, - [40486] = 2, + [41144] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2523), 5, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [41162] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2498), 1, + anon_sym_nopanic, + ACTIONS(2536), 1, anon_sym_DASH_GT, + ACTIONS(2538), 1, anon_sym_implicits, - anon_sym_nopanic, - [40497] = 6, + STATE(1374), 1, + sym_nopanic, + ACTIONS(2534), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [41182] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2525), 1, + ACTIONS(2496), 1, + anon_sym_COMMA, + ACTIONS(2498), 1, + anon_sym_nopanic, + STATE(1021), 1, + aux_sym_function_repeat1, + STATE(1377), 1, + sym_nopanic, + ACTIONS(2540), 2, anon_sym_LBRACE, - ACTIONS(2527), 1, anon_sym_SEMI, - ACTIONS(2529), 1, - anon_sym_LT, - STATE(562), 1, - sym_field_declaration_list, - STATE(1261), 1, - sym_type_parameters, - [40516] = 4, + [41202] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2531), 1, - anon_sym_POUND, - ACTIONS(1490), 2, - anon_sym_pub, - sym_identifier, - STATE(999), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [40531] = 6, + ACTIONS(1573), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [41214] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2534), 1, - anon_sym_of, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2538), 1, - anon_sym_EQ, - STATE(1454), 1, - sym_type_parameters, - [40550] = 6, + ACTIONS(1577), 6, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [41226] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2540), 1, - anon_sym_LBRACE, + ACTIONS(2249), 1, + anon_sym_SEMI, ACTIONS(2542), 1, + anon_sym_RBRACK, + ACTIONS(2545), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [41243] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2549), 1, + anon_sym_COLON_COLON, + ACTIONS(2551), 1, + anon_sym_as, + ACTIONS(2547), 3, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(259), 1, - sym_field_declaration_list, - STATE(1154), 1, - sym_type_parameters, - [40569] = 5, + anon_sym_COMMA, + [41258] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, - anon_sym_LBRACE, - ACTIONS(2437), 1, - anon_sym_STAR, - STATE(1167), 1, - sym_use_list, - ACTIONS(2439), 2, + ACTIONS(2553), 1, + anon_sym_RBRACE, + ACTIONS(2555), 1, + anon_sym_COMMA, + ACTIONS(2557), 1, sym_identifier, - sym_super, - [40586] = 4, + ACTIONS(2559), 1, + sym_mutable_specifier, + STATE(1190), 1, + sym_field_pattern, + [41277] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2546), 1, - anon_sym_COMMA, - STATE(1003), 1, - aux_sym_function_repeat1, - ACTIONS(2544), 3, - anon_sym_LBRACE, + ACTIONS(1547), 5, anon_sym_SEMI, - anon_sym_nopanic, - [40601] = 2, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [41288] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2549), 5, + ACTIONS(2561), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40612] = 6, + [41299] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2551), 1, - anon_sym_RBRACE, - ACTIONS(2553), 1, - anon_sym_COMMA, - ACTIONS(2555), 1, - sym_identifier, ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, sym_mutable_specifier, - STATE(1323), 1, + ACTIONS(2563), 1, + anon_sym_RBRACE, + ACTIONS(2565), 1, + anon_sym_COMMA, + STATE(1338), 1, sym_field_pattern, - [40631] = 2, + [41318] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2559), 5, + ACTIONS(2567), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40642] = 2, + [41329] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2561), 5, + ACTIONS(2569), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40653] = 2, + [41340] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2563), 5, + ACTIONS(2571), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_implicits, anon_sym_nopanic, - [40664] = 6, + [41351] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, - sym_identifier, ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, sym_mutable_specifier, - ACTIONS(2565), 1, + ACTIONS(2573), 1, anon_sym_RBRACE, - ACTIONS(2567), 1, + ACTIONS(2575), 1, anon_sym_COMMA, - STATE(1331), 1, + STATE(1330), 1, sym_field_pattern, - [40683] = 2, + [41370] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2569), 5, + ACTIONS(2577), 1, anon_sym_LBRACE, + ACTIONS(2579), 1, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_implicits, - anon_sym_nopanic, - [40694] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + STATE(341), 1, + sym_field_declaration_list, + STATE(1245), 1, + sym_type_parameters, + [41389] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2495), 1, + ACTIONS(2506), 1, anon_sym_COLON_COLON, - STATE(866), 1, + STATE(885), 1, sym_type_arguments, - ACTIONS(2571), 2, + ACTIONS(2583), 2, anon_sym_COMMA, anon_sym_GT, - [40711] = 5, + [41406] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2270), 1, - anon_sym_SEMI, - ACTIONS(2573), 1, - anon_sym_RBRACK, - ACTIONS(2576), 1, - anon_sym_COLON_COLON, - ACTIONS(2166), 2, + ACTIONS(2587), 1, anon_sym_COMMA, - anon_sym_PIPE, - [40728] = 5, + STATE(1021), 1, + aux_sym_function_repeat1, + ACTIONS(2585), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_nopanic, + [41421] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2477), 1, - anon_sym_nopanic, - ACTIONS(2580), 1, - anon_sym_implicits, - STATE(1368), 1, - sym_nopanic, - ACTIONS(2578), 2, + ACTIONS(2590), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [41432] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2592), 5, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LPAREN, + [41443] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2594), 5, anon_sym_LBRACE, + anon_sym_of, anon_sym_SEMI, - [40745] = 6, + anon_sym_EQ, + anon_sym_LPAREN, + [41454] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2596), 1, + anon_sym_POUND, + ACTIONS(1491), 2, + anon_sym_pub, + sym_identifier, + STATE(1025), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [41469] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2582), 1, + ACTIONS(2599), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, + ACTIONS(2601), 1, anon_sym_SEMI, - STATE(262), 1, + STATE(311), 1, sym_declaration_list, - STATE(1209), 1, + STATE(1232), 1, sym_type_parameters, - [40764] = 5, + [41488] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2586), 1, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2603), 1, + anon_sym_RBRACE, + ACTIONS(2605), 1, anon_sym_COMMA, - ACTIONS(2588), 1, - anon_sym_RPAREN, - STATE(1226), 1, - aux_sym_parameters_repeat1, - ACTIONS(2166), 2, - anon_sym_COLON, - anon_sym_PIPE, - [40781] = 2, + STATE(1172), 1, + sym_field_pattern, + [41507] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2590), 5, - anon_sym_LBRACE, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2607), 1, anon_sym_of, - anon_sym_SEMI, + ACTIONS(2609), 1, + anon_sym_COLON, + ACTIONS(2611), 1, anon_sym_EQ, - anon_sym_LPAREN, - [40792] = 4, + STATE(1479), 1, + sym_type_parameters, + [41526] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2594), 1, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2506), 1, anon_sym_COLON_COLON, - ACTIONS(2596), 1, - anon_sym_as, - ACTIONS(2592), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2613), 2, anon_sym_COMMA, - [40807] = 2, + anon_sym_GT, + [41543] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2598), 5, + ACTIONS(2615), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40818] = 2, + [41554] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2600), 5, - anon_sym_LBRACE, - anon_sym_of, + ACTIONS(1555), 5, anon_sym_SEMI, anon_sym_EQ, - anon_sym_LPAREN, - [40829] = 4, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [41565] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2604), 1, - anon_sym_COLON_COLON, - ACTIONS(2606), 1, - anon_sym_as, - ACTIONS(2602), 3, - anon_sym_RBRACE, + ACTIONS(2585), 5, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_COMMA, - [40844] = 2, + anon_sym_RPAREN, + anon_sym_nopanic, + [41576] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2506), 1, + anon_sym_COLON_COLON, + STATE(885), 1, + sym_type_arguments, + ACTIONS(2617), 2, + anon_sym_COMMA, + anon_sym_GT, + [41593] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2608), 5, + ACTIONS(2619), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_implicits, anon_sym_nopanic, - [40855] = 6, + [41604] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, - sym_identifier, - ACTIONS(2557), 1, - sym_mutable_specifier, - ACTIONS(2610), 1, + ACTIONS(2623), 1, + anon_sym_COLON_COLON, + ACTIONS(2625), 1, + anon_sym_as, + ACTIONS(2621), 3, anon_sym_RBRACE, - ACTIONS(2612), 1, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1176), 1, - sym_field_pattern, - [40874] = 5, + [41619] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 1, - anon_sym_PIPE, - ACTIONS(2168), 1, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2627), 1, + anon_sym_of, + ACTIONS(2629), 1, anon_sym_COLON, - ACTIONS(2272), 1, + ACTIONS(2631), 1, + anon_sym_EQ, + STATE(1361), 1, + sym_type_parameters, + [41638] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2551), 1, + anon_sym_as, + ACTIONS(2633), 1, anon_sym_COLON_COLON, - ACTIONS(2270), 2, + ACTIONS(2547), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - [40891] = 2, + [41653] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2189), 1, + anon_sym_BANG, + ACTIONS(2193), 1, + anon_sym_LPAREN, + ACTIONS(2635), 1, + anon_sym_COLON_COLON, + [41672] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2637), 1, anon_sym_LBRACE, + ACTIONS(2639), 1, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_nopanic, - [40902] = 2, + STATE(562), 1, + sym_field_declaration_list, + STATE(1268), 1, + sym_type_parameters, + [41691] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2614), 5, + ACTIONS(2641), 5, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_implicits, anon_sym_nopanic, - [40913] = 2, + [41702] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1536), 5, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_GT, - [40924] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(958), 1, - anon_sym_RPAREN, - ACTIONS(2616), 1, - anon_sym_COMMA, + ACTIONS(2126), 1, + anon_sym_LBRACE, + ACTIONS(2488), 1, + anon_sym_STAR, STATE(1189), 1, - aux_sym_parameters_repeat1, - ACTIONS(2166), 2, - anon_sym_COLON, - anon_sym_PIPE, - [40941] = 6, + sym_use_list, + ACTIONS(2490), 2, + sym_identifier, + sym_super, + [41719] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(2620), 1, + ACTIONS(2551), 1, + anon_sym_as, + ACTIONS(2643), 1, + anon_sym_COLON_COLON, + ACTIONS(2547), 3, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(553), 1, - sym_declaration_list, - STATE(1253), 1, - sym_type_parameters, - [40960] = 5, + anon_sym_COMMA, + [41734] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2477), 1, - anon_sym_nopanic, - ACTIONS(2624), 1, - anon_sym_implicits, - STATE(1401), 1, - sym_nopanic, - ACTIONS(2622), 2, + ACTIONS(2645), 5, anon_sym_LBRACE, + anon_sym_of, anon_sym_SEMI, - [40977] = 2, + anon_sym_EQ, + anon_sym_LPAREN, + [41745] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 5, + ACTIONS(2647), 5, anon_sym_LBRACE, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, anon_sym_LPAREN, - [40988] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2371), 1, - anon_sym_LT2, - ACTIONS(2495), 1, - anon_sym_COLON_COLON, - STATE(866), 1, - sym_type_arguments, - ACTIONS(2628), 2, - anon_sym_COMMA, - anon_sym_GT, - [41005] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2240), 1, - anon_sym_POUND, - ACTIONS(2630), 1, - sym_numeric_literal, - ACTIONS(2632), 1, - sym_identifier, - STATE(1033), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [41022] = 4, + [41756] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2634), 1, + ACTIONS(2649), 1, anon_sym_POUND, - ACTIONS(1490), 2, + ACTIONS(1491), 2, sym_numeric_literal, sym_identifier, - STATE(1033), 2, + STATE(1045), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [41037] = 4, + [41771] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2596), 1, - anon_sym_as, - ACTIONS(2637), 1, - anon_sym_COLON_COLON, - ACTIONS(2592), 3, - anon_sym_RBRACE, + ACTIONS(2652), 5, + anon_sym_LBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_COMMA, - [41052] = 6, + anon_sym_EQ, + anon_sym_LPAREN, + [41782] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2639), 1, - anon_sym_of, - ACTIONS(2641), 1, - anon_sym_COLON, - ACTIONS(2643), 1, - anon_sym_EQ, - STATE(1347), 1, - sym_type_parameters, - [41071] = 6, + ACTIONS(2498), 1, + anon_sym_nopanic, + ACTIONS(2656), 1, + anon_sym_implicits, + STATE(1461), 1, + sym_nopanic, + ACTIONS(2654), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [41799] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2582), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(2645), 1, + ACTIONS(2660), 1, anon_sym_SEMI, - STATE(287), 1, + STATE(517), 1, sym_declaration_list, - STATE(1157), 1, + STATE(1260), 1, sym_type_parameters, - [41090] = 6, + [41818] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2618), 1, + ACTIONS(2498), 1, + anon_sym_nopanic, + ACTIONS(2664), 1, + anon_sym_implicits, + STATE(1391), 1, + sym_nopanic, + ACTIONS(2662), 2, anon_sym_LBRACE, - ACTIONS(2647), 1, anon_sym_SEMI, - STATE(534), 1, - sym_declaration_list, - STATE(1326), 1, - sym_type_parameters, - [41109] = 6, + [41835] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, - sym_identifier, - ACTIONS(2557), 1, - sym_mutable_specifier, - ACTIONS(2649), 1, - anon_sym_RBRACE, - ACTIONS(2651), 1, + ACTIONS(977), 1, + anon_sym_RPAREN, + ACTIONS(2666), 1, anon_sym_COMMA, - STATE(1192), 1, - sym_field_pattern, - [41128] = 4, + STATE(1230), 1, + aux_sym_parameters_repeat1, + ACTIONS(2185), 2, + anon_sym_COLON, + anon_sym_PIPE, + [41852] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2596), 1, - anon_sym_as, - ACTIONS(2653), 1, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2251), 1, anon_sym_COLON_COLON, - ACTIONS(2592), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2249), 2, anon_sym_COMMA, - [41143] = 6, + anon_sym_RPAREN, + [41869] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2525), 1, + ACTIONS(2668), 5, anon_sym_LBRACE, - ACTIONS(2529), 1, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [41880] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2266), 1, + anon_sym_POUND, + ACTIONS(2670), 1, + sym_numeric_literal, + ACTIONS(2672), 1, + sym_identifier, + STATE(1045), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [41897] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2655), 1, + ACTIONS(2599), 1, + anon_sym_LBRACE, + ACTIONS(2674), 1, anon_sym_SEMI, - STATE(531), 1, - sym_field_declaration_list, - STATE(1328), 1, + STATE(295), 1, + sym_declaration_list, + STATE(1243), 1, sym_type_parameters, - [41162] = 2, + [41916] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1550), 5, + ACTIONS(1551), 5, anon_sym_SEMI, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_GT, - [41173] = 6, + [41927] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2540), 1, + ACTIONS(2577), 1, anon_sym_LBRACE, - ACTIONS(2657), 1, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2676), 1, anon_sym_SEMI, - STATE(281), 1, + STATE(290), 1, sym_field_declaration_list, - STATE(1158), 1, + STATE(1248), 1, sym_type_parameters, - [41192] = 2, + [41946] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2678), 1, + anon_sym_COMMA, + ACTIONS(2680), 1, + anon_sym_RPAREN, + STATE(1159), 1, + aux_sym_parameters_repeat1, + ACTIONS(2185), 2, + anon_sym_COLON, + anon_sym_PIPE, + [41963] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2659), 5, + ACTIONS(2682), 5, anon_sym_LBRACE, - anon_sym_of, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [41203] = 2, + anon_sym_DASH_GT, + anon_sym_implicits, + anon_sym_nopanic, + [41974] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1540), 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2637), 1, + anon_sym_LBRACE, + ACTIONS(2684), 1, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_GT, - [41214] = 2, + STATE(496), 1, + sym_field_declaration_list, + STATE(1337), 1, + sym_type_parameters, + [41993] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2661), 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2658), 1, anon_sym_LBRACE, - anon_sym_of, + ACTIONS(2686), 1, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LPAREN, - [41225] = 2, + STATE(554), 1, + sym_declaration_list, + STATE(1343), 1, + sym_type_parameters, + [42012] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2663), 5, - anon_sym_LBRACE, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2688), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_field_pattern, + [42028] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2690), 1, anon_sym_of, - anon_sym_SEMI, + ACTIONS(2692), 1, anon_sym_EQ, - anon_sym_LPAREN, - [41236] = 6, + STATE(1469), 1, + sym_type_parameters, + [42044] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 1, + ACTIONS(2696), 1, anon_sym_PIPE, - ACTIONS(2168), 1, - anon_sym_COLON, - ACTIONS(2170), 1, - anon_sym_BANG, - ACTIONS(2174), 1, - anon_sym_LPAREN, - ACTIONS(2665), 1, - anon_sym_COLON_COLON, - [41255] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2371), 1, - anon_sym_LT2, - ACTIONS(2495), 1, - anon_sym_COLON_COLON, - STATE(866), 1, - sym_type_arguments, - ACTIONS(2667), 2, + ACTIONS(2694), 3, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [41272] = 5, + anon_sym_RPAREN, + [42056] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, - anon_sym_LT2, - ACTIONS(2435), 1, - sym_super, - ACTIONS(2669), 1, + ACTIONS(2557), 1, sym_identifier, - STATE(854), 1, - sym_type_arguments, - [41288] = 5, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2698), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_field_pattern, + [42072] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2671), 1, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2700), 1, anon_sym_COMMA, - ACTIONS(2673), 1, + ACTIONS(2702), 1, anon_sym_RPAREN, - ACTIONS(2675), 1, + STATE(1310), 1, + aux_sym_tuple_pattern_repeat1, + [42088] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2696), 1, anon_sym_PIPE, - STATE(1320), 1, + ACTIONS(2704), 1, + anon_sym_COMMA, + ACTIONS(2706), 1, + anon_sym_RPAREN, + STATE(1313), 1, aux_sym_tuple_pattern_repeat1, - [41304] = 4, + [42104] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2708), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_field_pattern, + [42120] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2710), 1, + anon_sym_LBRACE, + STATE(288), 1, + sym_enum_variant_list, + STATE(1457), 1, + sym_type_parameters, + [42136] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(2677), 1, + ACTIONS(2712), 1, anon_sym_if, - STATE(778), 2, + STATE(792), 2, sym_block, sym_if_expression, - [41318] = 5, + [42150] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(2679), 1, + ACTIONS(2201), 1, + anon_sym_BANG, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2714), 1, + anon_sym_COLON_COLON, + STATE(879), 1, + sym_type_arguments, + [42166] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2716), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_field_pattern, + [42182] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2718), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_enum_variant_list, + STATE(1360), 1, + sym_type_parameters, + [42198] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2332), 2, anon_sym_COMMA, - ACTIONS(2681), 1, anon_sym_RPAREN, - STATE(1296), 1, - aux_sym_tuple_pattern_repeat1, - [41334] = 5, + ACTIONS(2382), 2, + anon_sym_COLON, + anon_sym_PIPE, + [42210] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(2683), 1, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2720), 1, + anon_sym_of, + ACTIONS(2722), 1, + anon_sym_EQ, + STATE(1358), 1, + sym_type_parameters, + [42226] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2724), 1, anon_sym_COMMA, - ACTIONS(2685), 1, - anon_sym_RPAREN, - STATE(1302), 1, + STATE(1075), 1, aux_sym_tuple_pattern_repeat1, - [41350] = 5, + ACTIONS(2694), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + [42240] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2727), 1, anon_sym_LBRACE, - ACTIONS(2445), 1, + ACTIONS(2729), 1, anon_sym_LBRACK, - ACTIONS(2451), 1, + ACTIONS(2731), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(225), 1, sym_delim_token_tree, - [41366] = 5, + [42256] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2491), 1, + ACTIONS(2500), 1, anon_sym_COLON_COLON, - ACTIONS(2687), 1, + ACTIONS(2733), 1, anon_sym_BANG, - STATE(869), 1, + STATE(879), 1, sym_type_arguments, - [41382] = 5, + [42272] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2252), 1, - anon_sym_COLON_COLON, - ACTIONS(2689), 1, - anon_sym_COMMA, - ACTIONS(2691), 1, - anon_sym_GT, - STATE(1202), 1, - aux_sym_type_parameters_repeat1, - [41398] = 5, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2735), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_field_pattern, + [42288] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2689), 1, - anon_sym_COMMA, - ACTIONS(2691), 1, + ACTIONS(1886), 1, anon_sym_GT, - ACTIONS(2693), 1, + ACTIONS(2737), 1, + anon_sym_COMMA, + ACTIONS(2739), 1, anon_sym_COLON_COLON, - STATE(1202), 1, + STATE(1241), 1, aux_sym_type_parameters_repeat1, - [41414] = 5, + [42304] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2695), 1, - anon_sym_of, - ACTIONS(2697), 1, - anon_sym_EQ, - STATE(1343), 1, - sym_type_parameters, - [41430] = 5, + ACTIONS(2332), 1, + anon_sym_SEMI, + ACTIONS(2741), 1, + anon_sym_RBRACK, + ACTIONS(2382), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [42318] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, - sym_identifier, ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, sym_mutable_specifier, - ACTIONS(2699), 1, + ACTIONS(2744), 1, anon_sym_RBRACE, - STATE(1392), 1, + STATE(1437), 1, sym_field_pattern, - [41446] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2184), 1, - anon_sym_BANG, - ACTIONS(2371), 1, - anon_sym_LT2, - ACTIONS(2701), 1, - anon_sym_COLON_COLON, - STATE(869), 1, - sym_type_arguments, - [41462] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2703), 1, - anon_sym_LBRACE, - STATE(498), 1, - sym_enum_variant_list, - STATE(1363), 1, - sym_type_parameters, - [41478] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2705), 1, - anon_sym_COLON_COLON, - ACTIONS(2166), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [41490] = 5, + [42334] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, - sym_identifier, ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, sym_mutable_specifier, - ACTIONS(2707), 1, + ACTIONS(2746), 1, anon_sym_RBRACE, - STATE(1392), 1, + STATE(1437), 1, sym_field_pattern, - [41506] = 5, + [42350] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2709), 1, - anon_sym_of, - ACTIONS(2711), 1, - anon_sym_EQ, - STATE(1462), 1, - sym_type_parameters, - [41522] = 4, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2748), 1, + sym_identifier, + ACTIONS(2750), 1, + sym_super, + STATE(872), 1, + sym_type_arguments, + [42366] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2713), 1, + ACTIONS(1886), 1, + anon_sym_GT, + ACTIONS(2258), 1, anon_sym_COLON_COLON, - ACTIONS(2715), 1, - anon_sym_LPAREN, - ACTIONS(2250), 2, + ACTIONS(2737), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [41536] = 4, + STATE(1241), 1, + aux_sym_type_parameters_repeat1, + [42382] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - STATE(854), 1, - sym_type_arguments, - ACTIONS(2717), 2, + ACTIONS(2748), 1, sym_identifier, + ACTIONS(2750), 1, sym_super, - [41550] = 5, + STATE(871), 1, + sym_type_arguments, + [42398] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2435), 1, - sym_super, - ACTIONS(2719), 1, - sym_identifier, - STATE(854), 1, - sym_type_arguments, - [41566] = 5, + ACTIONS(2752), 1, + anon_sym_COLON_COLON, + ACTIONS(2754), 1, + anon_sym_LPAREN, + ACTIONS(2245), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [42412] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2721), 1, - sym_identifier, - ACTIONS(2723), 1, + ACTIONS(2750), 1, sym_super, - STATE(860), 1, + ACTIONS(2756), 1, + sym_identifier, + STATE(872), 1, sym_type_arguments, - [41582] = 4, + [42428] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - STATE(862), 1, - sym_type_arguments, - ACTIONS(2723), 2, + ACTIONS(2758), 1, sym_identifier, + ACTIONS(2760), 1, sym_super, - [41596] = 5, + STATE(873), 1, + sym_type_arguments, + [42444] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2417), 1, + ACTIONS(2428), 1, anon_sym_PIPE, - ACTIONS(2725), 1, + ACTIONS(2762), 1, anon_sym_SEMI, - ACTIONS(2727), 1, + ACTIONS(2764), 1, anon_sym_COLON, - ACTIONS(2729), 1, + ACTIONS(2766), 1, anon_sym_EQ, - [41612] = 4, + [42460] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - STATE(860), 1, - sym_type_arguments, - ACTIONS(2723), 2, - sym_identifier, + ACTIONS(2750), 1, sym_super, - [41626] = 5, + ACTIONS(2756), 1, + sym_identifier, + STATE(871), 1, + sym_type_arguments, + [42476] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2721), 1, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2723), 1, + ACTIONS(2770), 1, sym_super, - STATE(862), 1, + STATE(873), 1, sym_type_arguments, - [41642] = 5, + [42492] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2441), 1, + ACTIONS(2727), 1, anon_sym_LBRACE, - ACTIONS(2445), 1, + ACTIONS(2729), 1, anon_sym_LBRACK, - ACTIONS(2451), 1, + ACTIONS(2731), 1, anon_sym_LPAREN, - STATE(77), 1, + STATE(230), 1, sym_delim_token_tree, - [41658] = 5, + [42508] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2717), 1, + ACTIONS(2770), 1, sym_super, - ACTIONS(2731), 1, + ACTIONS(2772), 1, + sym_identifier, + STATE(873), 1, + sym_type_arguments, + [42524] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2774), 1, + anon_sym_LT2, + ACTIONS(2776), 1, sym_identifier, - STATE(854), 1, + ACTIONS(2778), 1, + sym_super, + STATE(682), 1, sym_type_arguments, - [41674] = 5, + [42540] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, + ACTIONS(2696), 1, anon_sym_PIPE, - ACTIONS(2733), 1, + ACTIONS(2780), 1, + anon_sym_COMMA, + ACTIONS(2782), 1, + anon_sym_RPAREN, + STATE(1327), 1, + aux_sym_tuple_pattern_repeat1, + [42556] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2784), 1, anon_sym_RBRACK, - ACTIONS(2735), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - STATE(1318), 1, + STATE(1325), 1, aux_sym_tuple_pattern_repeat1, - [41690] = 5, + [42572] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2774), 1, + anon_sym_LT2, + ACTIONS(2776), 1, sym_identifier, - ACTIONS(2557), 1, - sym_mutable_specifier, - ACTIONS(2737), 1, - anon_sym_RBRACE, - STATE(1392), 1, - sym_field_pattern, - [41706] = 5, + ACTIONS(2778), 1, + sym_super, + STATE(668), 1, + sym_type_arguments, + [42588] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2480), 1, + sym_super, + ACTIONS(2768), 1, sym_identifier, - ACTIONS(2557), 1, - sym_mutable_specifier, - ACTIONS(2739), 1, - anon_sym_RBRACE, - STATE(1392), 1, - sym_field_pattern, - [41722] = 5, + STATE(873), 1, + sym_type_arguments, + [42604] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(2490), 1, + sym_super, + ACTIONS(2748), 1, sym_identifier, - ACTIONS(2557), 1, - sym_mutable_specifier, - ACTIONS(2741), 1, - anon_sym_RBRACE, - STATE(1392), 1, - sym_field_pattern, - [41738] = 5, + STATE(871), 1, + sym_type_arguments, + [42620] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2184), 1, - anon_sym_BANG, - ACTIONS(2491), 1, - anon_sym_COLON_COLON, - STATE(869), 1, + ACTIONS(2490), 1, + sym_super, + ACTIONS(2748), 1, + sym_identifier, + STATE(872), 1, sym_type_arguments, - [41754] = 5, + [42636] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2721), 1, - sym_identifier, - ACTIONS(2723), 1, + ACTIONS(2490), 1, sym_super, - STATE(860), 1, + ACTIONS(2788), 1, + sym_identifier, + STATE(724), 1, sym_type_arguments, - [41770] = 5, + [42652] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2721), 1, - sym_identifier, - ACTIONS(2723), 1, + ACTIONS(2490), 1, sym_super, - STATE(862), 1, + ACTIONS(2788), 1, + sym_identifier, + STATE(725), 1, sym_type_arguments, - [41786] = 5, + [42668] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + anon_sym_LBRACK, + ACTIONS(2794), 1, + anon_sym_LPAREN, + STATE(869), 1, + sym_delim_token_tree, + [42684] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2796), 1, + anon_sym_COMMA, + ACTIONS(2798), 1, + anon_sym_RPAREN, + STATE(1167), 1, + aux_sym_tuple_pattern_repeat1, + [42700] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2258), 1, + anon_sym_COLON_COLON, + ACTIONS(2800), 1, + anon_sym_COMMA, + ACTIONS(2802), 1, + anon_sym_GT, + STATE(1289), 1, + aux_sym_type_parameters_repeat1, + [42716] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2717), 1, + ACTIONS(2480), 1, sym_super, - ACTIONS(2731), 1, + ACTIONS(2804), 1, sym_identifier, - STATE(854), 1, + STATE(873), 1, sym_type_arguments, - [41802] = 3, + [42732] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2806), 1, + anon_sym_RBRACK, + ACTIONS(2808), 1, + anon_sym_COMMA, + STATE(1169), 1, + aux_sym_tuple_pattern_repeat1, + [42748] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2790), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + anon_sym_LBRACK, + ACTIONS(2794), 1, + anon_sym_LPAREN, + STATE(868), 1, + sym_delim_token_tree, + [42764] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2739), 1, + anon_sym_COLON_COLON, + ACTIONS(2800), 1, + anon_sym_COMMA, + ACTIONS(2802), 1, + anon_sym_GT, + STATE(1289), 1, + aux_sym_type_parameters_repeat1, + [42780] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2810), 1, + anon_sym_SEMI, + ACTIONS(2812), 1, + anon_sym_COLON, + ACTIONS(2814), 1, + anon_sym_EQ, + [42796] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2718), 1, + anon_sym_LBRACE, + STATE(552), 1, + sym_enum_variant_list, + STATE(1419), 1, + sym_type_parameters, + [42812] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(821), 1, + anon_sym_LBRACE, + ACTIONS(2816), 1, + anon_sym_if, + STATE(257), 2, + sym_block, + sym_if_expression, + [42826] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2631), 1, + anon_sym_EQ, + ACTIONS(2818), 1, + anon_sym_SEMI, + STATE(1442), 1, + sym_type_parameters, + [42842] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2245), 1, + anon_sym_SEMI, + ACTIONS(2820), 1, + anon_sym_RBRACK, + ACTIONS(2185), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [42856] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2743), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [41814] = 5, + ACTIONS(2823), 1, + anon_sym_LBRACE, + ACTIONS(2825), 1, + anon_sym_LBRACK, + ACTIONS(2827), 1, + anon_sym_LPAREN, + STATE(1178), 1, + sym_delim_token_tree, + [42872] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2745), 1, + ACTIONS(2823), 1, anon_sym_LBRACE, - ACTIONS(2747), 1, + ACTIONS(2825), 1, anon_sym_LBRACK, - ACTIONS(2749), 1, + ACTIONS(2827), 1, anon_sym_LPAREN, - STATE(223), 1, + STATE(1182), 1, sym_delim_token_tree, - [41830] = 5, + [42888] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2439), 1, - sym_super, - ACTIONS(2751), 1, - sym_identifier, - STATE(424), 1, + STATE(873), 1, sym_type_arguments, - [41846] = 5, + ACTIONS(2770), 2, + sym_identifier, + sym_super, + [42902] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2439), 1, - sym_super, - ACTIONS(2753), 1, - sym_identifier, - STATE(719), 1, + STATE(871), 1, sym_type_arguments, - [41862] = 5, + ACTIONS(2750), 2, + sym_identifier, + sym_super, + [42916] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2755), 1, + STATE(872), 1, + sym_type_arguments, + ACTIONS(2750), 2, sym_identifier, - ACTIONS(2757), 1, sym_super, - STATE(854), 1, - sym_type_arguments, - [41878] = 5, + [42930] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2439), 1, - sym_super, - ACTIONS(2753), 1, - sym_identifier, - STATE(704), 1, + STATE(872), 1, sym_type_arguments, - [41894] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2555), 1, + ACTIONS(2490), 2, sym_identifier, - ACTIONS(2557), 1, - sym_mutable_specifier, - ACTIONS(2759), 1, - anon_sym_RBRACE, - STATE(1392), 1, - sym_field_pattern, - [41910] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2761), 1, - anon_sym_LBRACE, - ACTIONS(2763), 1, - anon_sym_LBRACK, - ACTIONS(2765), 1, - anon_sym_LPAREN, - STATE(856), 1, - sym_delim_token_tree, - [41926] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2767), 1, - anon_sym_LBRACE, - STATE(279), 1, - sym_enum_variant_list, - STATE(1460), 1, - sym_type_parameters, - [41942] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2745), 1, - anon_sym_LBRACE, - ACTIONS(2747), 1, - anon_sym_LBRACK, - ACTIONS(2749), 1, - anon_sym_LPAREN, - STATE(222), 1, - sym_delim_token_tree, - [41958] = 5, + sym_super, + [42944] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2769), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2771), 1, + STATE(871), 1, + sym_type_arguments, + ACTIONS(2490), 2, sym_identifier, - ACTIONS(2773), 1, sym_super, - STATE(600), 1, - sym_type_arguments, - [41974] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2777), 1, - anon_sym_COMMA, - STATE(1094), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(2775), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - [41988] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(2775), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - [42000] = 5, + [42958] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2769), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2771), 1, + STATE(873), 1, + sym_type_arguments, + ACTIONS(2480), 2, sym_identifier, - ACTIONS(2773), 1, sym_super, - STATE(601), 1, - sym_type_arguments, - [42016] = 5, + [42972] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2435), 1, - sym_super, - ACTIONS(2780), 1, + ACTIONS(2829), 1, sym_identifier, - STATE(854), 1, + ACTIONS(2831), 1, + sym_super, + STATE(873), 1, sym_type_arguments, - [42032] = 5, + [42988] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2439), 1, - sym_super, - ACTIONS(2751), 1, + ACTIONS(2833), 1, sym_identifier, - STATE(420), 1, + ACTIONS(2835), 1, + sym_super, + STATE(871), 1, sym_type_arguments, - [42048] = 5, + [43004] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2761), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2763), 1, - anon_sym_LBRACK, - ACTIONS(2765), 1, - anon_sym_LPAREN, - STATE(863), 1, - sym_delim_token_tree, - [42064] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2782), 1, - anon_sym_SEMI, - STATE(1455), 1, - sym_type_parameters, - [42080] = 5, + ACTIONS(2837), 1, + anon_sym_if, + STATE(70), 2, + sym_block, + sym_if_expression, + [43018] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2439), 1, - sym_super, - ACTIONS(2784), 1, + ACTIONS(2833), 1, sym_identifier, - STATE(862), 1, + ACTIONS(2835), 1, + sym_super, + STATE(872), 1, sym_type_arguments, - [42096] = 5, + [43034] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2185), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2839), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43046] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2723), 1, + ACTIONS(2770), 1, sym_super, - ACTIONS(2786), 1, + ACTIONS(2829), 1, sym_identifier, - STATE(860), 1, + STATE(873), 1, sym_type_arguments, - [42112] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(2788), 1, - anon_sym_SEMI, - ACTIONS(2790), 1, - anon_sym_COLON, - ACTIONS(2792), 1, - anon_sym_EQ, - [42128] = 5, + [43062] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2439), 1, + ACTIONS(2750), 1, sym_super, - ACTIONS(2784), 1, + ACTIONS(2833), 1, sym_identifier, - STATE(860), 1, + STATE(871), 1, sym_type_arguments, - [42144] = 5, + [43078] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2723), 1, + ACTIONS(2750), 1, sym_super, - ACTIONS(2786), 1, + ACTIONS(2833), 1, sym_identifier, - STATE(862), 1, + STATE(872), 1, sym_type_arguments, - [42160] = 5, + [43094] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2723), 1, + ACTIONS(2770), 1, sym_super, - ACTIONS(2784), 1, + ACTIONS(2841), 1, sym_identifier, - STATE(860), 1, + STATE(873), 1, sym_type_arguments, - [42176] = 3, + [43110] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2303), 2, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2843), 1, anon_sym_COMMA, + ACTIONS(2845), 1, anon_sym_RPAREN, - ACTIONS(2401), 2, - anon_sym_COLON, - anon_sym_PIPE, - [42188] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2417), 1, - anon_sym_PIPE, - ACTIONS(2794), 1, - anon_sym_SEMI, - ACTIONS(2796), 1, - anon_sym_COLON, - ACTIONS(2798), 1, - anon_sym_EQ, - [42204] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2800), 1, - anon_sym_if, - STATE(72), 2, - sym_block, - sym_if_expression, - [42218] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2703), 1, - anon_sym_LBRACE, - STATE(565), 1, - sym_enum_variant_list, - STATE(1402), 1, - sym_type_parameters, - [42234] = 5, + STATE(1274), 1, + aux_sym_tuple_pattern_repeat1, + [43126] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2717), 1, + ACTIONS(2750), 1, sym_super, - ACTIONS(2802), 1, + ACTIONS(2847), 1, sym_identifier, - STATE(854), 1, + STATE(871), 1, sym_type_arguments, - [42250] = 4, + [43142] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - STATE(854), 1, - sym_type_arguments, - ACTIONS(2435), 2, - sym_identifier, + ACTIONS(2750), 1, sym_super, - [42264] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - STATE(862), 1, - sym_type_arguments, - ACTIONS(2439), 2, + ACTIONS(2847), 1, sym_identifier, - sym_super, - [42278] = 5, + STATE(872), 1, + sym_type_arguments, + [43158] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2723), 1, + ACTIONS(2490), 1, sym_super, - ACTIONS(2784), 1, + ACTIONS(2849), 1, sym_identifier, - STATE(862), 1, + STATE(433), 1, sym_type_arguments, - [42294] = 5, + [43174] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2643), 1, - anon_sym_EQ, - ACTIONS(2804), 1, - anon_sym_SEMI, - STATE(1410), 1, - sym_type_parameters, - [42310] = 4, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2851), 1, + anon_sym_COMMA, + ACTIONS(2853), 1, + anon_sym_RPAREN, + STATE(1302), 1, + aux_sym_tuple_pattern_repeat1, + [43190] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - STATE(860), 1, - sym_type_arguments, - ACTIONS(2439), 2, - sym_identifier, + ACTIONS(2490), 1, sym_super, - [42324] = 3, + ACTIONS(2849), 1, + sym_identifier, + STATE(441), 1, + sym_type_arguments, + [43206] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 2, - anon_sym_COLON, + ACTIONS(2185), 1, anon_sym_PIPE, - ACTIONS(2250), 2, + ACTIONS(2855), 1, + anon_sym_COLON_COLON, + ACTIONS(2542), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42336] = 4, + [43220] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2268), 1, - anon_sym_COLON_COLON, - ACTIONS(2715), 1, + ACTIONS(2456), 1, + anon_sym_LBRACE, + ACTIONS(2460), 1, + anon_sym_LBRACK, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(2250), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42350] = 5, + STATE(71), 1, + sym_delim_token_tree, + [43236] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2669), 1, + ACTIONS(2557), 1, sym_identifier, - ACTIONS(2717), 1, + ACTIONS(2559), 1, + sym_mutable_specifier, + ACTIONS(2857), 1, + anon_sym_RBRACE, + STATE(1437), 1, + sym_field_pattern, + [43252] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2480), 1, sym_super, - STATE(854), 1, + ACTIONS(2859), 1, + sym_identifier, + STATE(873), 1, sym_type_arguments, - [42366] = 4, + [43268] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(2456), 1, anon_sym_LBRACE, - ACTIONS(2806), 1, - anon_sym_if, - STATE(245), 2, - sym_block, - sym_if_expression, - [42380] = 5, + ACTIONS(2460), 1, + anon_sym_LBRACK, + ACTIONS(2466), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym_delim_token_tree, + [43284] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1889), 1, - anon_sym_GT, - ACTIONS(2693), 1, - anon_sym_COLON_COLON, - ACTIONS(2808), 1, - anon_sym_COMMA, - STATE(1306), 1, - aux_sym_type_parameters_repeat1, - [42396] = 5, + ACTIONS(2428), 1, + anon_sym_PIPE, + ACTIONS(2861), 1, + anon_sym_SEMI, + ACTIONS(2863), 1, + anon_sym_COLON, + ACTIONS(2865), 1, + anon_sym_EQ, + [43300] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1889), 1, - anon_sym_GT, - ACTIONS(2252), 1, - anon_sym_COLON_COLON, - ACTIONS(2808), 1, - anon_sym_COMMA, - STATE(1306), 1, - aux_sym_type_parameters_repeat1, - [42412] = 4, + ACTIONS(2126), 1, + anon_sym_LBRACE, + STATE(1293), 1, + sym_use_list, + ACTIONS(2867), 2, + sym_identifier, + sym_super, + [43314] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2303), 1, - anon_sym_SEMI, - ACTIONS(2810), 1, - anon_sym_RBRACK, - ACTIONS(2401), 2, - anon_sym_COMMA, + ACTIONS(2696), 1, anon_sym_PIPE, - [42426] = 5, + ACTIONS(2869), 1, + anon_sym_SEMI, + ACTIONS(2871), 1, + anon_sym_COLON, + ACTIONS(2873), 1, + anon_sym_EQ, + [43330] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, + ACTIONS(2581), 1, anon_sym_LT, - ACTIONS(2767), 1, - anon_sym_LBRACE, - STATE(301), 1, - sym_enum_variant_list, - STATE(1471), 1, + ACTIONS(2875), 1, + anon_sym_LPAREN, + STATE(998), 1, + sym_parameters, + STATE(1458), 1, sym_type_parameters, - [42442] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2166), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2813), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42454] = 4, + [43346] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2715), 1, + ACTIONS(2754), 1, anon_sym_LPAREN, - ACTIONS(2815), 1, + ACTIONS(2877), 1, anon_sym_COLON_COLON, - ACTIONS(2250), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [42468] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2250), 1, + ACTIONS(2245), 2, anon_sym_SEMI, - ACTIONS(2817), 1, - anon_sym_RBRACK, - ACTIONS(2166), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [42482] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(2820), 1, - anon_sym_COMMA, - ACTIONS(2822), 1, - anon_sym_RPAREN, - STATE(1199), 1, - aux_sym_tuple_pattern_repeat1, - [42498] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(2824), 1, anon_sym_RBRACK, - ACTIONS(2826), 1, - anon_sym_COMMA, - STATE(1200), 1, - aux_sym_tuple_pattern_repeat1, - [42514] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(2828), 1, - anon_sym_COMMA, - ACTIONS(2830), 1, - anon_sym_RPAREN, - STATE(1148), 1, - aux_sym_tuple_pattern_repeat1, - [42530] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2832), 1, - anon_sym_LBRACE, - ACTIONS(2834), 1, - anon_sym_LBRACK, - ACTIONS(2836), 1, - anon_sym_LPAREN, - STATE(1171), 1, - sym_delim_token_tree, - [42546] = 5, + [43360] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, + ACTIONS(2185), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2838), 1, + ACTIONS(2879), 2, anon_sym_COMMA, - ACTIONS(2840), 1, anon_sym_RPAREN, - STATE(1251), 1, - aux_sym_tuple_pattern_repeat1, - [42562] = 4, + [43372] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2107), 1, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2710), 1, anon_sym_LBRACE, - STATE(1247), 1, - sym_use_list, - ACTIONS(2842), 2, - sym_identifier, - sym_super, - [42576] = 5, + STATE(335), 1, + sym_enum_variant_list, + STATE(1462), 1, + sym_type_parameters, + [43388] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2832), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2834), 1, - anon_sym_LBRACK, - ACTIONS(2836), 1, - anon_sym_LPAREN, - STATE(1175), 1, - sym_delim_token_tree, - [42592] = 5, + ACTIONS(2881), 1, + anon_sym_if, + STATE(70), 2, + sym_block, + sym_if_expression, + [43402] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2844), 1, - sym_identifier, - ACTIONS(2846), 1, - sym_super, - STATE(854), 1, - sym_type_arguments, - [42608] = 5, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2611), 1, + anon_sym_EQ, + ACTIONS(2883), 1, + anon_sym_SEMI, + STATE(1485), 1, + sym_type_parameters, + [43418] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2848), 1, + ACTIONS(2247), 1, + anon_sym_COLON_COLON, + ACTIONS(2754), 1, anon_sym_LPAREN, - STATE(977), 1, - sym_parameters, - STATE(1469), 1, - sym_type_parameters, - [42624] = 4, + ACTIONS(2245), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43432] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2850), 1, - anon_sym_if, - STATE(72), 2, - sym_block, - sym_if_expression, - [42638] = 5, + ACTIONS(2185), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2245), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [43444] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2723), 1, + ACTIONS(2770), 1, sym_super, - ACTIONS(2852), 1, + ACTIONS(2772), 1, sym_identifier, - STATE(860), 1, + STATE(873), 1, sym_type_arguments, - [42654] = 5, + [43460] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2852), 1, - sym_identifier, - ACTIONS(2854), 1, + ACTIONS(2750), 1, sym_super, - STATE(862), 1, + ACTIONS(2756), 1, + sym_identifier, + STATE(871), 1, sym_type_arguments, - [42670] = 5, + [43476] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2442), 1, anon_sym_LT2, - ACTIONS(2723), 1, + ACTIONS(2750), 1, sym_super, - ACTIONS(2852), 1, + ACTIONS(2756), 1, sym_identifier, - STATE(862), 1, + STATE(872), 1, sym_type_arguments, - [42686] = 5, + [43492] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2852), 1, - sym_identifier, - ACTIONS(2854), 1, - sym_super, - STATE(860), 1, - sym_type_arguments, - [42702] = 5, + ACTIONS(2885), 1, + anon_sym_COLON_COLON, + ACTIONS(2185), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43504] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, + ACTIONS(2195), 1, anon_sym_LT2, - ACTIONS(2717), 1, - sym_super, - ACTIONS(2844), 1, - sym_identifier, - STATE(854), 1, + ACTIONS(2201), 1, + anon_sym_BANG, + ACTIONS(2500), 1, + anon_sym_COLON_COLON, + STATE(879), 1, sym_type_arguments, - [42718] = 5, + [43520] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, - sym_identifier, - ACTIONS(2557), 1, - sym_mutable_specifier, - ACTIONS(2856), 1, - anon_sym_RBRACE, - STATE(1392), 1, - sym_field_pattern, - [42734] = 5, + ACTIONS(977), 1, + anon_sym_RPAREN, + ACTIONS(2666), 1, + anon_sym_COMMA, + STATE(1231), 1, + aux_sym_parameters_repeat1, + [43533] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, - sym_identifier, - ACTIONS(2557), 1, - sym_mutable_specifier, - ACTIONS(2858), 1, + ACTIONS(2887), 3, anon_sym_RBRACE, - STATE(1392), 1, - sym_field_pattern, - [42750] = 4, + anon_sym_SEMI, + anon_sym_COMMA, + [43542] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 1, + ACTIONS(2382), 1, anon_sym_PIPE, - ACTIONS(2860), 1, - anon_sym_COLON_COLON, - ACTIONS(2573), 2, + ACTIONS(2741), 2, anon_sym_COMMA, anon_sym_RPAREN, - [42764] = 5, + [43553] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(2862), 1, - anon_sym_SEMI, - ACTIONS(2864), 1, + ACTIONS(2891), 1, anon_sym_COLON, - ACTIONS(2866), 1, - anon_sym_EQ, - [42780] = 4, + ACTIONS(2889), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [43564] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2202), 1, - anon_sym_fn, - ACTIONS(2868), 1, - anon_sym_type, - STATE(1581), 1, - sym_function, - [42793] = 4, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2722), 1, + anon_sym_EQ, + STATE(1640), 1, + sym_type_parameters, + [43577] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1478), 1, - anon_sym_RPAREN, - ACTIONS(2870), 1, + ACTIONS(2893), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1094), 1, - aux_sym_tuple_pattern_repeat1, - [42806] = 4, + [43586] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(595), 1, - anon_sym_RPAREN, - ACTIONS(1881), 1, + ACTIONS(2895), 1, anon_sym_COMMA, - STATE(1280), 1, - aux_sym_arguments_repeat1, - [42819] = 3, + ACTIONS(2897), 1, + anon_sym_GT, + STATE(1316), 1, + aux_sym_type_arguments_repeat1, + [43599] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2874), 1, - anon_sym_COLON, - ACTIONS(2872), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [42830] = 3, + ACTIONS(1515), 1, + anon_sym_LBRACE, + ACTIONS(2899), 1, + anon_sym_SEMI, + STATE(319), 1, + sym_block, + [43612] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 1, - anon_sym_POUND, - ACTIONS(1254), 2, - sym_numeric_literal, - sym_identifier, - [42841] = 4, + ACTIONS(1493), 1, + anon_sym_RPAREN, + ACTIONS(2901), 1, + anon_sym_COMMA, + STATE(1075), 1, + aux_sym_tuple_pattern_repeat1, + [43625] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2307), 1, + ACTIONS(2148), 1, anon_sym_RBRACE, - ACTIONS(2876), 1, + ACTIONS(2903), 1, anon_sym_COMMA, - STATE(1276), 1, - aux_sym_field_initializer_list_repeat1, - [42854] = 4, + STATE(1270), 1, + aux_sym_use_list_repeat1, + [43638] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(704), 1, + ACTIONS(1477), 1, anon_sym_RBRACK, - ACTIONS(1827), 1, + ACTIONS(2905), 1, anon_sym_COMMA, - STATE(1262), 1, - aux_sym_array_expression_repeat1, - [42867] = 4, + STATE(1075), 1, + aux_sym_tuple_pattern_repeat1, + [43651] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2540), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2907), 3, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(297), 1, - sym_field_declaration_list, - [42880] = 3, + anon_sym_COMMA, + [43660] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2401), 1, + ACTIONS(493), 3, anon_sym_PIPE, - ACTIONS(2810), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [42891] = 4, + anon_sym_EQ_GT, + anon_sym_if, + [43669] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2880), 1, + ACTIONS(2909), 1, anon_sym_RBRACE, - ACTIONS(2882), 1, + ACTIONS(2911), 1, anon_sym_COMMA, - STATE(1156), 1, + STATE(1272), 1, aux_sym_struct_pattern_repeat1, - [42904] = 4, + [43682] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2582), 1, + ACTIONS(1567), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, - anon_sym_SEMI, - STATE(313), 1, - sym_declaration_list, - [42917] = 4, + ACTIONS(2913), 1, + anon_sym_COLON_COLON, + STATE(451), 1, + sym_field_initializer_list, + [43695] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2540), 1, - anon_sym_LBRACE, - ACTIONS(2887), 1, - anon_sym_SEMI, - STATE(321), 1, - sym_field_declaration_list, - [42930] = 4, + ACTIONS(2185), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43704] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2889), 1, + ACTIONS(2915), 3, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(1536), 1, - sym_type_parameters, - [42943] = 4, + anon_sym_COMMA, + [43713] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2891), 1, + ACTIONS(1243), 1, + anon_sym_POUND, + ACTIONS(1245), 2, + sym_numeric_literal, + sym_identifier, + [43724] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2374), 3, anon_sym_PIPE, - ACTIONS(2893), 1, anon_sym_EQ_GT, - ACTIONS(2895), 1, anon_sym_if, - [42956] = 3, + [43733] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, + ACTIONS(544), 3, anon_sym_PIPE, - ACTIONS(2897), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [42967] = 2, + anon_sym_EQ_GT, + anon_sym_if, + [43742] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2899), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [42976] = 2, + ACTIONS(2374), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43751] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2901), 3, + ACTIONS(2917), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [42985] = 2, + [43760] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(493), 3, + ACTIONS(477), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [42994] = 2, + [43769] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2903), 3, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COMMA, - [43003] = 2, + ACTIONS(524), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [43778] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2905), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2678), 1, anon_sym_COMMA, - [43012] = 2, + ACTIONS(2680), 1, + anon_sym_RPAREN, + STATE(1159), 1, + aux_sym_parameters_repeat1, + [43791] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2907), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2185), 1, + anon_sym_PIPE, + ACTIONS(2820), 2, anon_sym_COMMA, - [43021] = 2, + anon_sym_RPAREN, + [43802] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2909), 3, + ACTIONS(2919), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43030] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2911), 1, - anon_sym_COMMA, - ACTIONS(2913), 1, - anon_sym_RPAREN, - STATE(1325), 1, - aux_sym_function_repeat1, - [43043] = 2, + [43811] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2915), 3, + ACTIONS(2921), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43052] = 2, + [43820] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(549), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43061] = 4, + ACTIONS(2557), 1, + sym_identifier, + ACTIONS(2559), 1, + sym_mutable_specifier, + STATE(1437), 1, + sym_field_pattern, + [43833] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2129), 1, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2923), 2, anon_sym_RBRACE, - ACTIONS(2917), 1, anon_sym_COMMA, - STATE(1271), 1, - aux_sym_use_list_repeat1, - [43074] = 2, + [43844] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2919), 3, + ACTIONS(2925), 3, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COMMA, - [43083] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(489), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43092] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(537), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43101] = 4, + [43853] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2921), 1, + ACTIONS(2927), 1, anon_sym_RBRACE, - ACTIONS(2923), 1, + ACTIONS(2929), 1, anon_sym_COMMA, - STATE(1265), 1, + STATE(1309), 1, aux_sym_struct_pattern_repeat1, - [43114] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2925), 1, - anon_sym_COMMA, - ACTIONS(2928), 1, - anon_sym_GT, - STATE(1177), 1, - aux_sym_type_arguments_repeat1, - [43127] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2431), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43136] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2409), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43145] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2407), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43154] = 4, + [43866] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2582), 1, - anon_sym_LBRACE, - ACTIONS(2930), 1, - anon_sym_SEMI, - STATE(303), 1, - sym_declaration_list, - [43167] = 2, + ACTIONS(2223), 1, + anon_sym_fn, + ACTIONS(2931), 1, + anon_sym_type, + STATE(1496), 1, + sym_function, + [43879] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2403), 3, + ACTIONS(2933), 1, anon_sym_PIPE, + ACTIONS(2935), 1, anon_sym_EQ_GT, + ACTIONS(2937), 1, anon_sym_if, - [43176] = 4, + [43892] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(2471), 1, - anon_sym_LBRACE, - STATE(868), 1, - sym_type_arguments, - [43189] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2252), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 2, - anon_sym_COMMA, - anon_sym_GT, - [43200] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2395), 3, + ACTIONS(481), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43209] = 2, + [43901] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 3, - anon_sym_RBRACE, + ACTIONS(2599), 1, + anon_sym_LBRACE, + ACTIONS(2939), 1, anon_sym_SEMI, - anon_sym_COMMA, - [43218] = 3, + STATE(336), 1, + sym_declaration_list, + [43914] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2693), 1, + ACTIONS(2739), 1, anon_sym_COLON_COLON, - ACTIONS(2932), 2, + ACTIONS(2941), 2, anon_sym_COMMA, anon_sym_GT, - [43229] = 2, + [43925] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2361), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43238] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(956), 1, - anon_sym_RPAREN, - ACTIONS(2936), 1, + ACTIONS(2943), 1, + anon_sym_RBRACE, + ACTIONS(2945), 1, anon_sym_COMMA, - STATE(1201), 1, - aux_sym_parameters_repeat1, - [43251] = 2, + STATE(1324), 1, + aux_sym_enum_variant_list_repeat2, + [43938] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(501), 3, + ACTIONS(489), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43260] = 2, + [43947] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(497), 3, + ACTIONS(508), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43269] = 4, + [43956] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2938), 1, + ACTIONS(2949), 1, + anon_sym_COLON, + ACTIONS(2947), 2, anon_sym_RBRACE, - ACTIONS(2940), 1, anon_sym_COMMA, - STATE(1244), 1, - aux_sym_struct_pattern_repeat1, - [43282] = 2, + [43967] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2417), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43291] = 3, + ACTIONS(2258), 1, + anon_sym_COLON_COLON, + ACTIONS(2941), 2, + anon_sym_COMMA, + anon_sym_GT, + [43978] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2944), 1, - anon_sym_COLON, - ACTIONS(2942), 2, - anon_sym_RBRACE, + ACTIONS(2585), 1, + anon_sym_RPAREN, + ACTIONS(2951), 1, anon_sym_COMMA, - [43302] = 3, + STATE(1201), 1, + aux_sym_function_repeat1, + [43991] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1252), 1, + ACTIONS(1243), 1, anon_sym_POUND, - ACTIONS(1254), 2, + ACTIONS(1245), 2, anon_sym_pub, sym_identifier, - [43313] = 4, + [44002] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1891), 1, - anon_sym_GT, - ACTIONS(2946), 1, + ACTIONS(1966), 1, + anon_sym_RPAREN, + ACTIONS(2954), 1, anon_sym_COMMA, - STATE(1267), 1, - aux_sym_type_parameters_repeat1, - [43326] = 2, + STATE(1203), 1, + aux_sym_arguments_repeat1, + [44015] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2957), 1, + anon_sym_RBRACE, + ACTIONS(2959), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym_field_declaration_list_repeat1, + [44028] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2381), 3, + ACTIONS(2386), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43335] = 4, + [44037] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2948), 1, - anon_sym_COMMA, - ACTIONS(2950), 1, - anon_sym_GT, - STATE(1238), 1, - aux_sym_type_arguments_repeat1, - [43348] = 4, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2452), 1, + anon_sym_LBRACE, + STATE(887), 1, + sym_type_arguments, + [44050] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1462), 1, - anon_sym_RPAREN, - ACTIONS(2952), 1, + ACTIONS(708), 1, + anon_sym_RBRACK, + ACTIONS(1892), 1, anon_sym_COMMA, - STATE(1094), 1, - aux_sym_tuple_pattern_repeat1, - [43361] = 4, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [44063] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1464), 1, + ACTIONS(1958), 1, anon_sym_RBRACK, - ACTIONS(2954), 1, + ACTIONS(2961), 1, anon_sym_COMMA, - STATE(1094), 1, - aux_sym_tuple_pattern_repeat1, - [43374] = 4, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [44076] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2813), 1, - anon_sym_RPAREN, - ACTIONS(2956), 1, - anon_sym_COMMA, - STATE(1201), 1, - aux_sym_parameters_repeat1, - [43387] = 4, + ACTIONS(2599), 1, + anon_sym_LBRACE, + ACTIONS(2964), 1, + anon_sym_SEMI, + STATE(337), 1, + sym_declaration_list, + [44089] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1889), 1, - anon_sym_GT, - ACTIONS(2808), 1, + ACTIONS(2966), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1267), 1, - aux_sym_type_parameters_repeat1, - [43400] = 4, + [44098] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1889), 1, - anon_sym_GT, - ACTIONS(2808), 1, - anon_sym_COMMA, - STATE(1306), 1, - aux_sym_type_parameters_repeat1, - [43413] = 4, + ACTIONS(2382), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44107] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1520), 1, - anon_sym_GT, - ACTIONS(2959), 1, - anon_sym_COMMA, - STATE(1177), 1, - aux_sym_type_arguments_repeat1, - [43426] = 2, + ACTIONS(2223), 1, + anon_sym_fn, + ACTIONS(2968), 1, + anon_sym_type, + STATE(1598), 1, + sym_function, + [44120] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2387), 3, + ACTIONS(2394), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43435] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2697), 1, - anon_sym_EQ, - STATE(1628), 1, - sym_type_parameters, - [43448] = 3, + [44129] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2252), 1, - anon_sym_COLON_COLON, - ACTIONS(2961), 2, - anon_sym_COMMA, - anon_sym_GT, - [43459] = 4, + ACTIONS(2970), 1, + anon_sym_in, + ACTIONS(2972), 2, + sym_super, + sym_crate, + [44140] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2582), 1, + ACTIONS(2195), 1, + anon_sym_LT2, + ACTIONS(2974), 1, anon_sym_LBRACE, - ACTIONS(2963), 1, - anon_sym_SEMI, - STATE(310), 1, - sym_declaration_list, - [43472] = 4, + STATE(887), 1, + sym_type_arguments, + [44153] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2582), 1, - anon_sym_LBRACE, - ACTIONS(2965), 1, + ACTIONS(2976), 3, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(332), 1, - sym_declaration_list, - [43485] = 3, + anon_sym_COMMA, + [44162] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2693), 1, - anon_sym_COLON_COLON, - ACTIONS(2961), 2, - anon_sym_COMMA, - anon_sym_GT, - [43496] = 4, + ACTIONS(2223), 1, + anon_sym_fn, + ACTIONS(2978), 1, + anon_sym_type, + STATE(1518), 1, + sym_function, + [44175] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, + ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, + ACTIONS(2980), 1, anon_sym_SEMI, - STATE(546), 1, + STATE(563), 1, sym_block, - [43509] = 4, + [44188] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(1829), 1, anon_sym_LBRACE, - ACTIONS(2969), 1, + ACTIONS(2982), 1, anon_sym_COLON_COLON, - STATE(795), 1, + STATE(799), 1, sym_field_initializer_list, - [43522] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2971), 1, - anon_sym_COMMA, - ACTIONS(2973), 1, - anon_sym_GT, - STATE(1204), 1, - aux_sym_type_arguments_repeat1, - [43535] = 4, + [44201] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2586), 1, + ACTIONS(2984), 1, + anon_sym_RBRACE, + ACTIONS(2986), 1, anon_sym_COMMA, - ACTIONS(2588), 1, - anon_sym_RPAREN, - STATE(1226), 1, - aux_sym_parameters_repeat1, - [43548] = 2, + STATE(1220), 1, + aux_sym_struct_pattern_repeat1, + [44214] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(485), 3, + ACTIONS(2428), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43557] = 4, + [44223] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(690), 1, - anon_sym_RBRACK, - ACTIONS(2975), 1, - anon_sym_COMMA, - STATE(1262), 1, - aux_sym_array_expression_repeat1, - [43570] = 2, + ACTIONS(1567), 1, + anon_sym_LBRACE, + ACTIONS(2989), 1, + anon_sym_COLON_COLON, + STATE(451), 1, + sym_field_initializer_list, + [44236] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2383), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43579] = 4, + ACTIONS(2991), 1, + anon_sym_in, + ACTIONS(2993), 2, + sym_super, + sym_crate, + [44247] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2389), 1, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(2995), 2, anon_sym_RBRACE, - ACTIONS(2977), 1, anon_sym_COMMA, - STATE(1240), 1, - aux_sym_field_declaration_list_repeat1, - [43592] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2202), 1, - anon_sym_fn, - ACTIONS(2979), 1, - anon_sym_type, - STATE(1589), 1, - sym_function, - [43605] = 3, + [44258] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2983), 1, - anon_sym_COLON, - ACTIONS(2981), 2, - anon_sym_RBRACE, + ACTIONS(2997), 1, anon_sym_COMMA, - [43616] = 4, + ACTIONS(3000), 1, + anon_sym_GT, + STATE(1225), 1, + aux_sym_type_arguments_repeat1, + [44271] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 1, + ACTIONS(1515), 1, anon_sym_LBRACE, - ACTIONS(2985), 1, + ACTIONS(3002), 1, anon_sym_SEMI, - STATE(557), 1, - sym_declaration_list, - [43629] = 4, + STATE(309), 1, + sym_block, + [44284] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2389), 1, - anon_sym_RBRACE, - ACTIONS(2977), 1, - anon_sym_COMMA, - STATE(1236), 1, - aux_sym_field_declaration_list_repeat1, - [43642] = 3, + ACTIONS(2223), 1, + anon_sym_fn, + ACTIONS(3004), 1, + anon_sym_type, + STATE(1611), 1, + sym_function, + [44297] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2989), 1, - anon_sym_COLON, - ACTIONS(2987), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [43653] = 4, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(3006), 1, + anon_sym_SEMI, + STATE(543), 1, + sym_declaration_list, + [44310] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2335), 1, + ACTIONS(2293), 1, anon_sym_RBRACE, - ACTIONS(2991), 1, + ACTIONS(3008), 1, anon_sym_COMMA, - STATE(1232), 1, - aux_sym_enum_variant_list_repeat2, - [43666] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2379), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43675] = 4, + STATE(1266), 1, + aux_sym_field_initializer_list_repeat1, + [44323] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(958), 1, + ACTIONS(973), 1, anon_sym_RPAREN, - ACTIONS(2616), 1, + ACTIONS(3010), 1, anon_sym_COMMA, - STATE(1201), 1, + STATE(1231), 1, aux_sym_parameters_repeat1, - [43688] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2377), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43697] = 4, + [44336] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(958), 1, + ACTIONS(2839), 1, anon_sym_RPAREN, - ACTIONS(2616), 1, + ACTIONS(3012), 1, anon_sym_COMMA, - STATE(1189), 1, + STATE(1231), 1, aux_sym_parameters_repeat1, - [43710] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2373), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43719] = 4, + [44349] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2582), 1, + ACTIONS(2599), 1, anon_sym_LBRACE, - ACTIONS(2993), 1, + ACTIONS(3015), 1, anon_sym_SEMI, - STATE(292), 1, + STATE(333), 1, sym_declaration_list, - [43732] = 4, + [44362] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2995), 1, - anon_sym_SEMI, - STATE(1486), 1, - sym_type_parameters, - [43745] = 4, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(3017), 1, + anon_sym_COMMA, + STATE(1234), 1, + aux_sym_enum_variant_list_repeat2, + [44375] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2359), 1, + ACTIONS(3019), 1, anon_sym_RBRACE, - ACTIONS(2997), 1, + ACTIONS(3021), 1, anon_sym_COMMA, - STATE(1233), 1, + STATE(1234), 1, aux_sym_enum_variant_list_repeat2, - [43758] = 4, + [44388] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2999), 1, + ACTIONS(3026), 1, + anon_sym_COLON, + ACTIONS(3024), 2, anon_sym_RBRACE, - ACTIONS(3001), 1, anon_sym_COMMA, - STATE(1233), 1, - aux_sym_enum_variant_list_repeat2, - [43771] = 2, + [44399] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2429), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43780] = 2, + ACTIONS(2450), 1, + anon_sym_RBRACE, + ACTIONS(3028), 1, + anon_sym_COMMA, + STATE(1238), 1, + aux_sym_field_declaration_list_repeat1, + [44412] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2365), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [43789] = 4, + ACTIONS(718), 1, + anon_sym_RBRACK, + ACTIONS(1845), 1, + anon_sym_COMMA, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [44425] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2375), 1, + ACTIONS(3030), 1, anon_sym_RBRACE, - ACTIONS(3004), 1, + ACTIONS(3032), 1, anon_sym_COMMA, - STATE(1240), 1, + STATE(1238), 1, aux_sym_field_declaration_list_repeat1, - [43802] = 4, + [44438] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3006), 1, - anon_sym_RBRACE, - ACTIONS(3008), 1, + ACTIONS(598), 1, + anon_sym_RPAREN, + ACTIONS(1902), 1, anon_sym_COMMA, - STATE(1322), 1, - aux_sym_enum_variant_list_repeat2, - [43815] = 4, + STATE(1203), 1, + aux_sym_arguments_repeat1, + [44451] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1524), 1, - anon_sym_GT, - ACTIONS(3010), 1, + ACTIONS(598), 1, + anon_sym_RPAREN, + ACTIONS(1902), 1, anon_sym_COMMA, - STATE(1177), 1, - aux_sym_type_arguments_repeat1, - [43828] = 2, + STATE(1265), 1, + aux_sym_arguments_repeat1, + [44464] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3012), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1878), 1, + anon_sym_GT, + ACTIONS(3035), 1, anon_sym_COMMA, - [43837] = 4, + STATE(1249), 1, + aux_sym_type_parameters_repeat1, + [44477] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3014), 1, - anon_sym_RBRACE, - ACTIONS(3016), 1, + ACTIONS(1882), 1, + anon_sym_GT, + ACTIONS(3037), 1, anon_sym_COMMA, - STATE(1240), 1, - aux_sym_field_declaration_list_repeat1, - [43850] = 3, + STATE(1249), 1, + aux_sym_type_parameters_repeat1, + [44490] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3021), 1, - anon_sym_COLON, - ACTIONS(3019), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [43861] = 4, + ACTIONS(2599), 1, + anon_sym_LBRACE, + ACTIONS(3039), 1, + anon_sym_SEMI, + STATE(268), 1, + sym_declaration_list, + [44503] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(595), 1, - anon_sym_RPAREN, - ACTIONS(1881), 1, + ACTIONS(2800), 1, anon_sym_COMMA, - STATE(1282), 1, - aux_sym_arguments_repeat1, - [43874] = 2, + ACTIONS(2802), 1, + anon_sym_GT, + STATE(1289), 1, + aux_sym_type_parameters_repeat1, + [44516] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2577), 1, + anon_sym_LBRACE, + ACTIONS(3041), 1, + anon_sym_SEMI, + STATE(302), 1, + sym_field_declaration_list, + [44529] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2421), 3, + ACTIONS(2370), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43883] = 4, + [44538] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2759), 1, - anon_sym_RBRACE, - ACTIONS(3023), 1, + ACTIONS(1541), 1, + anon_sym_GT, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1156), 1, - aux_sym_struct_pattern_repeat1, - [43896] = 3, + STATE(1225), 1, + aux_sym_type_arguments_repeat1, + [44551] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3025), 1, - anon_sym_in, - ACTIONS(3027), 2, - sym_super, - sym_crate, - [43907] = 4, + ACTIONS(2577), 1, + anon_sym_LBRACE, + ACTIONS(3045), 1, + anon_sym_SEMI, + STATE(266), 1, + sym_field_declaration_list, + [44564] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3029), 1, - anon_sym_RBRACE, - ACTIONS(3031), 1, + ACTIONS(3047), 1, anon_sym_COMMA, - STATE(1172), 1, - aux_sym_use_list_repeat1, - [43920] = 2, + ACTIONS(3050), 1, + anon_sym_GT, + STATE(1249), 1, + aux_sym_type_parameters_repeat1, + [44577] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3033), 3, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2739), 1, + anon_sym_COLON_COLON, + ACTIONS(3050), 2, anon_sym_COMMA, - [43929] = 4, + anon_sym_GT, + [44588] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, - anon_sym_LBRACE, - ACTIONS(3035), 1, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3052), 1, anon_sym_SEMI, - STATE(504), 1, - sym_block, - [43942] = 2, + STATE(1533), 1, + sym_type_parameters, + [44601] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2415), 3, + ACTIONS(2376), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [43951] = 4, + [44610] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2202), 1, - anon_sym_fn, - ACTIONS(3037), 1, - anon_sym_type, - STATE(1492), 1, - sym_function, - [43964] = 4, + ACTIONS(2410), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44619] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1480), 1, - anon_sym_RPAREN, - ACTIONS(3039), 1, + ACTIONS(3054), 1, anon_sym_COMMA, - STATE(1094), 1, - aux_sym_tuple_pattern_repeat1, - [43977] = 4, + ACTIONS(3056), 1, + anon_sym_GT, + STATE(1247), 1, + aux_sym_type_arguments_repeat1, + [44632] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3041), 1, - anon_sym_RBRACE, - ACTIONS(3043), 1, + ACTIONS(389), 1, + anon_sym_LBRACE, + ACTIONS(3058), 1, + anon_sym_SEMI, + STATE(501), 1, + sym_block, + [44645] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2258), 1, + anon_sym_COLON_COLON, + ACTIONS(3050), 2, anon_sym_COMMA, - STATE(1218), 1, - aux_sym_field_declaration_list_repeat1, - [43990] = 4, + anon_sym_GT, + [44656] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(3045), 1, - anon_sym_SEMI, - STATE(488), 1, - sym_declaration_list, - [44003] = 2, + ACTIONS(2442), 1, + anon_sym_LT2, + ACTIONS(3060), 1, + anon_sym_COLON_COLON, + STATE(879), 1, + sym_type_arguments, + [44669] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2363), 3, + ACTIONS(2426), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44012] = 2, + [44678] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2419), 3, + ACTIONS(2434), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44021] = 4, + [44687] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(3047), 1, + ACTIONS(3062), 1, anon_sym_SEMI, - STATE(526), 1, + STATE(506), 1, sym_declaration_list, - [44034] = 4, + [44700] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(688), 1, - anon_sym_RBRACK, - ACTIONS(1819), 1, - anon_sym_COMMA, - STATE(1262), 1, - aux_sym_array_expression_repeat1, - [44047] = 3, + ACTIONS(2432), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44709] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2166), 1, - anon_sym_PIPE, - ACTIONS(2817), 2, - anon_sym_COMMA, + ACTIONS(1854), 1, anon_sym_RPAREN, - [44058] = 4, + ACTIONS(3064), 1, + anon_sym_COMMA, + STATE(1201), 1, + aux_sym_function_repeat1, + [44722] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - ACTIONS(3049), 1, + ACTIONS(2599), 1, anon_sym_LBRACE, - STATE(868), 1, - sym_type_arguments, - [44071] = 4, + ACTIONS(3066), 1, + anon_sym_SEMI, + STATE(307), 1, + sym_declaration_list, + [44735] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(706), 1, + ACTIONS(702), 1, anon_sym_RBRACK, - ACTIONS(1879), 1, + ACTIONS(1825), 1, anon_sym_COMMA, - STATE(1262), 1, + STATE(1208), 1, aux_sym_array_expression_repeat1, - [44084] = 4, + [44748] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(602), 1, + anon_sym_RPAREN, + ACTIONS(3068), 1, + anon_sym_COMMA, + STATE(1203), 1, + aux_sym_arguments_repeat1, + [44761] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3070), 1, + anon_sym_RBRACE, + ACTIONS(3072), 1, + anon_sym_COMMA, + STATE(1266), 1, + aux_sym_field_initializer_list_repeat1, + [44774] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3077), 1, + anon_sym_COLON, + ACTIONS(3075), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [44785] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2525), 1, + ACTIONS(2637), 1, anon_sym_LBRACE, - ACTIONS(3051), 1, + ACTIONS(3079), 1, anon_sym_SEMI, - STATE(514), 1, + STATE(541), 1, sym_field_declaration_list, - [44097] = 4, + [44798] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1975), 1, - anon_sym_RBRACK, - ACTIONS(3053), 1, + ACTIONS(3081), 1, anon_sym_COMMA, + ACTIONS(3083), 1, + anon_sym_RPAREN, STATE(1262), 1, - aux_sym_array_expression_repeat1, - [44110] = 3, + aux_sym_function_repeat1, + [44811] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(3056), 2, + ACTIONS(3085), 1, anon_sym_RBRACE, + ACTIONS(3087), 1, anon_sym_COMMA, - [44121] = 4, + STATE(1270), 1, + aux_sym_use_list_repeat1, + [44824] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2544), 1, - anon_sym_RPAREN, - ACTIONS(3058), 1, + ACTIONS(3090), 3, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1264), 1, - aux_sym_function_repeat1, - [44134] = 4, + [44833] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2737), 1, + ACTIONS(2746), 1, anon_sym_RBRACE, - ACTIONS(3061), 1, + ACTIONS(3092), 1, anon_sym_COMMA, - STATE(1156), 1, + STATE(1220), 1, aux_sym_struct_pattern_repeat1, - [44147] = 4, + [44846] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1496), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(3063), 1, + ACTIONS(3094), 1, anon_sym_SEMI, - STATE(305), 1, - sym_block, - [44160] = 4, + STATE(524), 1, + sym_declaration_list, + [44859] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3065), 1, + ACTIONS(1509), 1, + anon_sym_RPAREN, + ACTIONS(3096), 1, + anon_sym_COMMA, + STATE(1075), 1, + aux_sym_tuple_pattern_repeat1, + [44872] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2414), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44881] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2406), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44890] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2258), 1, + anon_sym_COLON_COLON, + ACTIONS(3098), 2, + anon_sym_COMMA, + anon_sym_GT, + [44901] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2739), 1, + anon_sym_COLON_COLON, + ACTIONS(3098), 2, anon_sym_COMMA, - ACTIONS(3068), 1, anon_sym_GT, - STATE(1267), 1, + [44912] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2404), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44921] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1890), 1, + anon_sym_GT, + ACTIONS(3100), 1, + anon_sym_COMMA, + STATE(1249), 1, aux_sym_type_parameters_repeat1, - [44173] = 4, + [44934] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2341), 1, + ACTIONS(3102), 1, anon_sym_RBRACE, - ACTIONS(3070), 1, + ACTIONS(3104), 1, anon_sym_COMMA, - STATE(1233), 1, - aux_sym_enum_variant_list_repeat2, - [44186] = 2, + STATE(1168), 1, + aux_sym_use_list_repeat1, + [44947] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3072), 3, + ACTIONS(2392), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3106), 1, anon_sym_COMMA, - [44195] = 4, + STATE(1234), 1, + aux_sym_enum_variant_list_repeat2, + [44960] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2555), 1, - sym_identifier, - ACTIONS(2557), 1, - sym_mutable_specifier, - STATE(1392), 1, - sym_field_pattern, - [44208] = 4, + ACTIONS(2430), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44969] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2390), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44978] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2396), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44987] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2348), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [44996] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2384), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45005] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2599), 1, + anon_sym_LBRACE, + ACTIONS(3108), 1, + anon_sym_SEMI, + STATE(275), 1, + sym_declaration_list, + [45018] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1886), 1, + anon_sym_GT, + ACTIONS(2737), 1, + anon_sym_COMMA, + STATE(1249), 1, + aux_sym_type_parameters_repeat1, + [45031] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3074), 1, + ACTIONS(2444), 1, anon_sym_RBRACE, - ACTIONS(3076), 1, + ACTIONS(3110), 1, anon_sym_COMMA, - STATE(1271), 1, - aux_sym_use_list_repeat1, - [44221] = 4, + STATE(1238), 1, + aux_sym_field_declaration_list_repeat1, + [45044] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, - anon_sym_LBRACE, - ACTIONS(3079), 1, - anon_sym_COLON_COLON, - STATE(444), 1, - sym_field_initializer_list, - [44234] = 3, + ACTIONS(1886), 1, + anon_sym_GT, + ACTIONS(2737), 1, + anon_sym_COMMA, + STATE(1241), 1, + aux_sym_type_parameters_repeat1, + [45057] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3081), 1, - anon_sym_in, - ACTIONS(3083), 2, - sym_super, - sym_crate, - [44245] = 3, + ACTIONS(2380), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45066] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3087), 1, - anon_sym_COLON, - ACTIONS(3085), 2, + ACTIONS(3112), 3, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - [44256] = 4, + [45075] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2202), 1, - anon_sym_fn, - ACTIONS(3089), 1, - anon_sym_type, - STATE(1532), 1, - sym_function, - [44269] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3091), 1, + ACTIONS(3114), 1, anon_sym_RBRACE, - ACTIONS(3093), 1, + ACTIONS(3116), 1, anon_sym_COMMA, - STATE(1276), 1, + STATE(1349), 1, aux_sym_field_initializer_list_repeat1, - [44282] = 4, + [45088] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, + ACTIONS(2599), 1, anon_sym_LBRACE, - ACTIONS(3096), 1, - anon_sym_COLON_COLON, - STATE(444), 1, - sym_field_initializer_list, - [44295] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2397), 1, - anon_sym_RBRACE, - ACTIONS(3098), 1, - anon_sym_COMMA, - STATE(1240), 1, - aux_sym_field_declaration_list_repeat1, - [44308] = 4, + ACTIONS(3118), 1, + anon_sym_SEMI, + STATE(285), 1, + sym_declaration_list, + [45101] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1496), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(3100), 1, + ACTIONS(3120), 1, anon_sym_SEMI, - STATE(275), 1, - sym_block, - [44321] = 4, + STATE(538), 1, + sym_declaration_list, + [45114] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1935), 1, + ACTIONS(600), 1, anon_sym_RPAREN, - ACTIONS(3102), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - STATE(1280), 1, + STATE(1203), 1, aux_sym_arguments_repeat1, - [44334] = 4, + [45127] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3105), 1, - anon_sym_RBRACE, - ACTIONS(3107), 1, + ACTIONS(1906), 1, anon_sym_COMMA, - STATE(1152), 1, - aux_sym_field_initializer_list_repeat1, - [44347] = 4, + ACTIONS(1908), 1, + anon_sym_RPAREN, + STATE(1347), 1, + aux_sym_arguments_repeat1, + [45140] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(593), 1, - anon_sym_RPAREN, - ACTIONS(3109), 1, + ACTIONS(720), 1, + anon_sym_RBRACK, + ACTIONS(3124), 1, anon_sym_COMMA, - STATE(1280), 1, - aux_sym_arguments_repeat1, - [44360] = 4, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [45153] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(3111), 1, + ACTIONS(3126), 1, anon_sym_SEMI, - STATE(496), 1, + STATE(556), 1, sym_declaration_list, - [44373] = 4, + [45166] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(591), 1, - anon_sym_RPAREN, - ACTIONS(3113), 1, + ACTIONS(2446), 1, + anon_sym_RBRACE, + ACTIONS(3128), 1, anon_sym_COMMA, - STATE(1280), 1, - aux_sym_arguments_repeat1, - [44386] = 4, + STATE(1238), 1, + aux_sym_field_declaration_list_repeat1, + [45179] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1855), 1, - anon_sym_COMMA, - ACTIONS(1857), 1, + ACTIONS(1503), 1, anon_sym_RPAREN, - STATE(1149), 1, - aux_sym_arguments_repeat1, - [44399] = 2, + ACTIONS(3130), 1, + anon_sym_COMMA, + STATE(1075), 1, + aux_sym_tuple_pattern_repeat1, + [45192] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2423), 3, + ACTIONS(2372), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44408] = 4, + [45201] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3115), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - ACTIONS(3117), 1, + ACTIONS(3132), 1, anon_sym_COMMA, - STATE(1312), 1, - aux_sym_field_initializer_list_repeat1, - [44421] = 2, + STATE(1220), 1, + aux_sym_struct_pattern_repeat1, + [45214] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2399), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [44430] = 4, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3134), 1, + anon_sym_SEMI, + STATE(1634), 1, + sym_type_parameters, + [45227] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2707), 1, + ACTIONS(2446), 1, anon_sym_RBRACE, - ACTIONS(3119), 1, + ACTIONS(3128), 1, anon_sym_COMMA, - STATE(1156), 1, - aux_sym_struct_pattern_repeat1, - [44443] = 2, + STATE(1236), 1, + aux_sym_field_declaration_list_repeat1, + [45240] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2413), 3, + ACTIONS(2398), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44452] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1875), 1, - anon_sym_COMMA, - ACTIONS(1877), 1, - anon_sym_RPAREN, - STATE(1316), 1, - aux_sym_arguments_repeat1, - [44465] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2582), 1, - anon_sym_LBRACE, - ACTIONS(3121), 1, - anon_sym_SEMI, - STATE(324), 1, - sym_declaration_list, - [44478] = 4, + [45249] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(3123), 1, + ACTIONS(3136), 1, anon_sym_SEMI, - STATE(541), 1, + STATE(528), 1, sym_declaration_list, - [44491] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2166), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [44500] = 4, + [45262] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1887), 1, - anon_sym_GT, - ACTIONS(3125), 1, + ACTIONS(2708), 1, + anon_sym_RBRACE, + ACTIONS(3138), 1, anon_sym_COMMA, - STATE(1267), 1, - aux_sym_type_parameters_repeat1, - [44513] = 4, + STATE(1220), 1, + aux_sym_struct_pattern_repeat1, + [45275] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1484), 1, + ACTIONS(1481), 1, anon_sym_RPAREN, - ACTIONS(3127), 1, + ACTIONS(3140), 1, anon_sym_COMMA, - STATE(1094), 1, + STATE(1075), 1, aux_sym_tuple_pattern_repeat1, - [44526] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(2711), 1, - anon_sym_EQ, - STATE(1483), 1, - sym_type_parameters, - [44539] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(3129), 1, - anon_sym_SEMI, - STATE(1598), 1, - sym_type_parameters, - [44552] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2411), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [44561] = 2, + [45288] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2385), 3, + ACTIONS(2366), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44570] = 4, + [45297] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(3131), 1, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3142), 1, anon_sym_SEMI, - STATE(522), 1, - sym_declaration_list, - [44583] = 4, + STATE(1514), 1, + sym_type_parameters, + [45310] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1458), 1, + ACTIONS(1485), 1, anon_sym_RPAREN, - ACTIONS(3133), 1, + ACTIONS(3144), 1, anon_sym_COMMA, - STATE(1094), 1, + STATE(1075), 1, aux_sym_tuple_pattern_repeat1, - [44596] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2582), 1, - anon_sym_LBRACE, - ACTIONS(3135), 1, - anon_sym_SEMI, - STATE(284), 1, - sym_declaration_list, - [44609] = 4, + [45323] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2699), 1, + ACTIONS(2698), 1, anon_sym_RBRACE, - ACTIONS(3137), 1, + ACTIONS(3146), 1, anon_sym_COMMA, - STATE(1156), 1, + STATE(1220), 1, aux_sym_struct_pattern_repeat1, - [44622] = 2, + [45336] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2405), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [44631] = 4, + ACTIONS(1535), 1, + anon_sym_GT, + ACTIONS(3148), 1, + anon_sym_COMMA, + STATE(1225), 1, + aux_sym_type_arguments_repeat1, + [45349] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1883), 1, + ACTIONS(1539), 1, anon_sym_GT, - ACTIONS(3139), 1, + ACTIONS(3150), 1, anon_sym_COMMA, - STATE(1267), 1, - aux_sym_type_parameters_repeat1, - [44644] = 4, + STATE(1225), 1, + aux_sym_type_arguments_repeat1, + [45362] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(702), 1, + ACTIONS(704), 1, anon_sym_RBRACK, - ACTIONS(3141), 1, + ACTIONS(1904), 1, anon_sym_COMMA, - STATE(1262), 1, + STATE(1208), 1, aux_sym_array_expression_repeat1, - [44657] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2401), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [44666] = 4, + [45375] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2367), 1, + ACTIONS(2420), 1, anon_sym_RBRACE, - ACTIONS(3143), 1, - anon_sym_COMMA, - STATE(1240), 1, - aux_sym_field_declaration_list_repeat1, - [44679] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(696), 1, - anon_sym_RBRACK, - ACTIONS(1873), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - STATE(1262), 1, - aux_sym_array_expression_repeat1, - [44692] = 4, + STATE(1282), 1, + aux_sym_enum_variant_list_repeat2, + [45388] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2367), 1, + ACTIONS(2420), 1, anon_sym_RBRACE, - ACTIONS(3143), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - STATE(1278), 1, - aux_sym_field_declaration_list_repeat1, - [44705] = 4, + STATE(1234), 1, + aux_sym_enum_variant_list_repeat2, + [45401] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2305), 1, + ACTIONS(3154), 1, anon_sym_RBRACE, - ACTIONS(3145), 1, + ACTIONS(3156), 1, anon_sym_COMMA, - STATE(1276), 1, - aux_sym_field_initializer_list_repeat1, - [44718] = 4, + STATE(1329), 1, + aux_sym_field_declaration_list_repeat1, + [45414] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3147), 1, + ACTIONS(2448), 1, anon_sym_RBRACE, - ACTIONS(3149), 1, + ACTIONS(3158), 1, anon_sym_COMMA, - STATE(1309), 1, + STATE(1290), 1, aux_sym_field_declaration_list_repeat1, - [44731] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2582), 1, - anon_sym_LBRACE, - ACTIONS(3151), 1, - anon_sym_SEMI, - STATE(271), 1, - sym_declaration_list, - [44744] = 4, + [45427] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3153), 1, + ACTIONS(3160), 1, anon_sym_RBRACE, - ACTIONS(3155), 1, + ACTIONS(3162), 1, anon_sym_COMMA, - STATE(1335), 1, + STATE(1319), 1, aux_sym_enum_variant_list_repeat2, - [44757] = 4, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(599), 1, - anon_sym_RPAREN, - ACTIONS(1859), 1, - anon_sym_COMMA, - STATE(1280), 1, - aux_sym_arguments_repeat1, - [44770] = 2, + [45440] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2393), 3, + ACTIONS(2400), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44779] = 4, + [45449] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2358), 1, + anon_sym_RBRACE, + ACTIONS(3164), 1, + anon_sym_COMMA, + STATE(1234), 1, + aux_sym_enum_variant_list_repeat2, + [45462] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1472), 1, + ACTIONS(1497), 1, anon_sym_RBRACK, - ACTIONS(3157), 1, + ACTIONS(3166), 1, anon_sym_COMMA, - STATE(1094), 1, + STATE(1075), 1, aux_sym_tuple_pattern_repeat1, - [44792] = 2, + [45475] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2391), 3, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_if, - [44801] = 4, + ACTIONS(2599), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + anon_sym_SEMI, + STATE(292), 1, + sym_declaration_list, + [45488] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1482), 1, + ACTIONS(1499), 1, anon_sym_RPAREN, - ACTIONS(3159), 1, + ACTIONS(3170), 1, anon_sym_COMMA, - STATE(1094), 1, + STATE(1075), 1, aux_sym_tuple_pattern_repeat1, - [44814] = 4, + [45501] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3161), 1, + ACTIONS(3172), 1, anon_sym_COMMA, - ACTIONS(3163), 1, + ACTIONS(3174), 1, anon_sym_GT, - STATE(1330), 1, + STATE(1315), 1, aux_sym_type_arguments_repeat1, - [44827] = 4, + [45514] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2335), 1, + ACTIONS(2448), 1, anon_sym_RBRACE, - ACTIONS(2991), 1, + ACTIONS(3158), 1, anon_sym_COMMA, - STATE(1233), 1, - aux_sym_enum_variant_list_repeat2, - [44840] = 4, + STATE(1238), 1, + aux_sym_field_declaration_list_repeat1, + [45527] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3165), 1, + ACTIONS(3176), 1, anon_sym_RBRACE, - ACTIONS(3167), 1, + ACTIONS(3178), 1, anon_sym_COMMA, - STATE(1304), 1, + STATE(1314), 1, aux_sym_struct_pattern_repeat1, - [44853] = 4, + [45540] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(599), 1, - anon_sym_RPAREN, - ACTIONS(1859), 1, + ACTIONS(710), 1, + anon_sym_RBRACK, + ACTIONS(3180), 1, anon_sym_COMMA, - STATE(1284), 1, - aux_sym_arguments_repeat1, - [44866] = 4, + STATE(1208), 1, + aux_sym_array_expression_repeat1, + [45553] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3184), 1, + anon_sym_COLON, + ACTIONS(3182), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45564] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1885), 1, + ACTIONS(977), 1, anon_sym_RPAREN, - ACTIONS(3169), 1, + ACTIONS(2666), 1, anon_sym_COMMA, - STATE(1264), 1, - aux_sym_function_repeat1, - [44879] = 4, + STATE(1230), 1, + aux_sym_parameters_repeat1, + [45577] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2402), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45586] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 1, + ACTIONS(2658), 1, anon_sym_LBRACE, - ACTIONS(3171), 1, + ACTIONS(3186), 1, anon_sym_SEMI, - STATE(561), 1, + STATE(566), 1, sym_declaration_list, - [44892] = 3, + [45599] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2252), 1, - anon_sym_COLON_COLON, - ACTIONS(3068), 2, - anon_sym_COMMA, - anon_sym_GT, - [44903] = 4, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(3188), 1, + anon_sym_SEMI, + STATE(1581), 1, + sym_type_parameters, + [45612] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2525), 1, + ACTIONS(2637), 1, anon_sym_LBRACE, - ACTIONS(3173), 1, + ACTIONS(3190), 1, anon_sym_SEMI, - STATE(548), 1, + STATE(572), 1, sym_field_declaration_list, - [44916] = 4, + [45625] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2689), 1, + ACTIONS(3192), 1, + anon_sym_RBRACE, + ACTIONS(3194), 1, anon_sym_COMMA, - ACTIONS(2691), 1, - anon_sym_GT, - STATE(1202), 1, - aux_sym_type_parameters_repeat1, - [44929] = 4, + STATE(1304), 1, + aux_sym_struct_pattern_repeat1, + [45638] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1516), 1, - anon_sym_GT, - ACTIONS(3175), 1, - anon_sym_COMMA, - STATE(1177), 1, - aux_sym_type_arguments_repeat1, - [44942] = 4, + ACTIONS(2581), 1, + anon_sym_LT, + ACTIONS(2692), 1, + anon_sym_EQ, + STATE(1490), 1, + sym_type_parameters, + [45651] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3177), 1, - anon_sym_RBRACE, - ACTIONS(3179), 1, - anon_sym_COMMA, - STATE(1289), 1, - aux_sym_struct_pattern_repeat1, - [44955] = 2, + ACTIONS(2412), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45660] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2399), 3, + ACTIONS(2422), 3, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_if, - [44964] = 4, + [45669] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, - anon_sym_LT2, - ACTIONS(3181), 1, - anon_sym_COLON_COLON, - STATE(869), 1, - sym_type_arguments, - [44977] = 4, + ACTIONS(1894), 1, + anon_sym_COMMA, + ACTIONS(1896), 1, + anon_sym_RPAREN, + STATE(1239), 1, + aux_sym_arguments_repeat1, + [45682] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2529), 1, - anon_sym_LT, - ACTIONS(3183), 1, + ACTIONS(2658), 1, + anon_sym_LBRACE, + ACTIONS(3196), 1, anon_sym_SEMI, - STATE(1566), 1, - sym_type_parameters, - [44990] = 4, + STATE(576), 1, + sym_declaration_list, + [45695] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2424), 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_if, + [45704] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2339), 1, + ACTIONS(2358), 1, anon_sym_RBRACE, - ACTIONS(3185), 1, + ACTIONS(3164), 1, anon_sym_COMMA, STATE(1233), 1, aux_sym_enum_variant_list_repeat2, - [45003] = 4, + [45717] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(3187), 1, - anon_sym_SEMI, - STATE(537), 1, - sym_declaration_list, - [45016] = 4, + ACTIONS(608), 1, + anon_sym_RPAREN, + ACTIONS(1884), 1, + anon_sym_COMMA, + STATE(1297), 1, + aux_sym_arguments_repeat1, + [45730] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(608), 1, + anon_sym_RPAREN, + ACTIONS(1884), 1, + anon_sym_COMMA, + STATE(1203), 1, + aux_sym_arguments_repeat1, + [45743] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2339), 1, + ACTIONS(3200), 1, + anon_sym_COLON, + ACTIONS(3198), 2, anon_sym_RBRACE, - ACTIONS(3185), 1, anon_sym_COMMA, - STATE(1268), 1, - aux_sym_enum_variant_list_repeat2, - [45029] = 3, + [45754] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2693), 1, - anon_sym_COLON_COLON, - ACTIONS(3068), 2, + ACTIONS(2344), 1, + anon_sym_RBRACE, + ACTIONS(3202), 1, anon_sym_COMMA, - anon_sym_GT, - [45040] = 2, + STATE(1266), 1, + aux_sym_field_initializer_list_repeat1, + [45767] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3189), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45048] = 2, + ACTIONS(3204), 1, + anon_sym_RBRACE, + ACTIONS(3206), 1, + anon_sym_COMMA, + STATE(1229), 1, + aux_sym_field_initializer_list_repeat1, + [45780] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3191), 2, + ACTIONS(3208), 1, sym_identifier, + ACTIONS(3210), 1, sym_super, - [45056] = 3, + [45790] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3193), 1, - anon_sym_BANG, - ACTIONS(3195), 1, - anon_sym_LBRACK, - [45066] = 3, + ACTIONS(3070), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [45798] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2459), 1, + ACTIONS(3212), 1, anon_sym_COLON_COLON, - ACTIONS(3197), 1, - anon_sym_BANG, - [45076] = 3, + ACTIONS(3214), 1, + anon_sym_RPAREN, + [45808] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3199), 1, - anon_sym_of, - ACTIONS(3201), 1, - anon_sym_EQ, - [45086] = 3, + ACTIONS(3216), 1, + anon_sym_COLON_COLON, + ACTIONS(3218), 1, + anon_sym_RPAREN, + [45818] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2371), 1, - anon_sym_LT2, - STATE(868), 1, - sym_type_arguments, - [45096] = 2, + ACTIONS(3214), 1, + anon_sym_RPAREN, + ACTIONS(3220), 1, + anon_sym_COLON_COLON, + [45828] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2842), 2, - sym_identifier, - sym_super, - [45104] = 3, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(3222), 1, + anon_sym_in, + [45838] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2254), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_LPAREN, - [45114] = 3, + ACTIONS(3224), 1, + anon_sym_BANG, + ACTIONS(3226), 1, + anon_sym_LBRACK, + [45848] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3205), 1, + ACTIONS(3228), 1, anon_sym_of, - ACTIONS(3207), 1, + ACTIONS(3230), 1, anon_sym_EQ, - [45124] = 2, + [45858] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3209), 2, + ACTIONS(3232), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45132] = 3, + [45866] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_LBRACK, - [45142] = 3, + ACTIONS(2718), 1, + anon_sym_LBRACE, + STATE(571), 1, + sym_enum_variant_list, + [45876] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3215), 1, - anon_sym_BANG, - ACTIONS(3217), 1, - anon_sym_LBRACK, - [45152] = 3, + ACTIONS(3234), 1, + anon_sym_of, + ACTIONS(3236), 1, + anon_sym_EQ, + [45886] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(3238), 1, + anon_sym_in, + [45896] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3219), 1, + ACTIONS(3240), 1, anon_sym_SEMI, - ACTIONS(3221), 1, + ACTIONS(3242), 1, anon_sym_EQ, - [45162] = 2, + [45906] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3223), 2, + ACTIONS(3244), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45170] = 2, + [45914] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3246), 1, + anon_sym_BANG, + ACTIONS(3248), 1, + anon_sym_LBRACK, + [45924] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3250), 1, + anon_sym_BANG, + ACTIONS(3252), 1, + anon_sym_LBRACK, + [45934] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3225), 2, + ACTIONS(3254), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45178] = 2, + [45942] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3227), 2, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(3256), 1, + anon_sym_COLON, + [45952] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3258), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45186] = 3, + [45960] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2842), 1, + ACTIONS(2867), 1, sym_super, - ACTIONS(3229), 1, + ACTIONS(3260), 1, sym_identifier, - [45196] = 2, + [45970] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3262), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [45978] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3231), 2, + ACTIONS(3264), 2, anon_sym_type, anon_sym_fn, - [45204] = 3, + [45986] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, + ACTIONS(3266), 2, anon_sym_LBRACE, - STATE(81), 1, - sym_block, - [45214] = 3, + anon_sym_SEMI, + [45994] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3233), 1, - anon_sym_COLON_COLON, - ACTIONS(3235), 1, - anon_sym_RPAREN, - [45224] = 3, + ACTIONS(3268), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [46002] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3237), 1, - anon_sym_COLON_COLON, - ACTIONS(3239), 1, - anon_sym_RPAREN, - [45234] = 3, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(3270), 1, + anon_sym_EQ, + [46012] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3235), 1, - anon_sym_RPAREN, - ACTIONS(3241), 1, - anon_sym_COLON_COLON, - [45244] = 3, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym_block, + [46022] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3235), 1, - anon_sym_RPAREN, - ACTIONS(3243), 1, - anon_sym_COLON_COLON, - [45254] = 3, + ACTIONS(3272), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [46030] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2278), 1, - anon_sym_BANG, - ACTIONS(2665), 1, - anon_sym_COLON_COLON, - [45264] = 3, + ACTIONS(2260), 1, + sym_identifier, + ACTIONS(3274), 1, + anon_sym_LPAREN, + [46040] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2703), 1, - anon_sym_LBRACE, - STATE(544), 1, - sym_enum_variant_list, - [45274] = 2, + ACTIONS(497), 2, + anon_sym_COMMA, + anon_sym_GT, + [46048] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3245), 2, + ACTIONS(3276), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45282] = 2, + [46056] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3247), 2, - anon_sym_LBRACE, + ACTIONS(3278), 1, anon_sym_SEMI, - [45290] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2170), 1, - anon_sym_BANG, - ACTIONS(2665), 1, - anon_sym_COLON_COLON, - [45300] = 2, + ACTIONS(3280), 1, + anon_sym_EQ, + [46066] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3249), 2, - anon_sym_LBRACE, + ACTIONS(3282), 1, anon_sym_SEMI, - [45308] = 2, + ACTIONS(3284), 1, + anon_sym_EQ, + [46076] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3251), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45316] = 2, + ACTIONS(3286), 2, + sym_identifier, + sym_super, + [46084] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3253), 2, + ACTIONS(1567), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [45324] = 3, + STATE(451), 1, + sym_field_initializer_list, + [46094] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2170), 1, + ACTIONS(2189), 1, anon_sym_BANG, - ACTIONS(3255), 1, + ACTIONS(2635), 1, anon_sym_COLON_COLON, - [45334] = 3, + [46104] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2453), 1, - anon_sym_COLON_COLON, - ACTIONS(3257), 1, + ACTIONS(2189), 1, anon_sym_BANG, - [45344] = 2, + ACTIONS(3288), 1, + anon_sym_COLON_COLON, + [46114] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3259), 2, + ACTIONS(3290), 2, anon_sym_LBRACE, anon_sym_SEMI, - [45352] = 2, + [46122] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3261), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45360] = 3, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_COLON, + [46132] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3263), 1, + ACTIONS(3294), 2, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(3265), 1, - anon_sym_EQ, - [45370] = 3, + [46140] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1544), 1, - anon_sym_LBRACE, - STATE(444), 1, - sym_field_initializer_list, - [45380] = 2, + ACTIONS(3296), 1, + anon_sym_COLON_COLON, + ACTIONS(3298), 1, + anon_sym_RPAREN, + [46150] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2743), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45388] = 2, + ACTIONS(3300), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [46158] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3267), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45396] = 2, + ACTIONS(3302), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [46166] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3269), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45404] = 3, + ACTIONS(3304), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [46174] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2449), 1, - anon_sym_COLON_COLON, - ACTIONS(3257), 1, - anon_sym_BANG, - [45414] = 2, + ACTIONS(3306), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46182] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3271), 2, - anon_sym_RBRACE, + ACTIONS(2879), 2, anon_sym_COMMA, - [45422] = 3, + anon_sym_RPAREN, + [46190] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3273), 1, + ACTIONS(3308), 1, anon_sym_SEMI, - ACTIONS(3275), 1, + ACTIONS(3310), 1, anon_sym_EQ, - [45432] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2439), 2, - sym_identifier, - sym_super, - [45440] = 2, + [46200] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2961), 2, + ACTIONS(3312), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [45448] = 2, + [46208] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3277), 2, - anon_sym_COMMA, - anon_sym_GT, - [45456] = 2, + ACTIONS(3314), 1, + sym_numeric_literal, + ACTIONS(3316), 1, + sym_identifier, + [46218] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3279), 2, + ACTIONS(3318), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [45464] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3281), 1, - anon_sym_SEMI, - ACTIONS(3283), 1, - anon_sym_EQ, - [45474] = 2, + [46226] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1913), 2, + ACTIONS(3320), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [45482] = 3, + [46234] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3285), 1, - anon_sym_SEMI, - ACTIONS(3287), 1, + ACTIONS(2696), 1, + anon_sym_PIPE, + ACTIONS(3322), 1, anon_sym_EQ, - [45492] = 3, + [46244] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3191), 1, - sym_super, - ACTIONS(3289), 1, + ACTIONS(3324), 2, sym_identifier, - [45502] = 3, + sym_super, + [46252] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(3291), 1, - anon_sym_EQ, - [45512] = 2, + ACTIONS(2318), 1, + anon_sym_BANG, + ACTIONS(2635), 1, + anon_sym_COLON_COLON, + [46262] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2723), 2, - sym_identifier, + ACTIONS(3324), 1, sym_super, - [45520] = 2, + ACTIONS(3326), 1, + sym_identifier, + [46272] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2880), 2, + ACTIONS(2947), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45528] = 3, + [46280] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2715), 1, - anon_sym_LPAREN, - ACTIONS(3293), 1, + ACTIONS(3214), 1, + anon_sym_RPAREN, + ACTIONS(3296), 1, anon_sym_COLON_COLON, - [45538] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3295), 2, - sym_identifier, - sym_super, - [45546] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3295), 1, - sym_super, - ACTIONS(3297), 1, - sym_identifier, - [45556] = 2, + [46290] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2928), 2, + ACTIONS(2941), 2, anon_sym_COMMA, anon_sym_GT, - [45564] = 3, + [46298] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2721), 1, + ACTIONS(2867), 2, sym_identifier, - ACTIONS(2723), 1, sym_super, - [45574] = 2, + [46306] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3299), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45582] = 2, + ACTIONS(2750), 1, + sym_super, + ACTIONS(2756), 1, + sym_identifier, + [46316] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3301), 2, - anon_sym_LBRACE, + ACTIONS(3328), 1, anon_sym_SEMI, - [45590] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(3303), 1, + ACTIONS(3330), 1, anon_sym_EQ, - [45600] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3305), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [45608] = 3, + [46326] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2703), 1, - anon_sym_LBRACE, - STATE(523), 1, - sym_enum_variant_list, - [45618] = 2, + ACTIONS(3332), 2, + anon_sym_COMMA, + anon_sym_GT, + [46334] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3307), 2, - sym_identifier, + ACTIONS(3324), 1, sym_super, - [45626] = 2, + ACTIONS(3334), 1, + sym_identifier, + [46344] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3309), 2, + ACTIONS(3336), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [45634] = 2, + anon_sym_GT, + [46352] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2813), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45642] = 2, + ACTIONS(2754), 1, + anon_sym_LPAREN, + ACTIONS(3338), 1, + anon_sym_COLON_COLON, + [46362] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2999), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45650] = 2, + ACTIONS(3340), 1, + anon_sym_SEMI, + ACTIONS(3342), 1, + anon_sym_EQ, + [46372] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3014), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45658] = 2, + ACTIONS(3220), 1, + anon_sym_COLON_COLON, + ACTIONS(3298), 1, + anon_sym_RPAREN, + [46382] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3311), 2, + ACTIONS(3085), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45666] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2439), 1, - sym_super, - ACTIONS(2751), 1, - sym_identifier, - [45676] = 3, + [46390] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3207), 1, - anon_sym_EQ, - ACTIONS(3313), 1, - anon_sym_SEMI, - [45686] = 2, + ACTIONS(1982), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46398] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(481), 2, - anon_sym_COMMA, - anon_sym_GT, - [45694] = 3, + ACTIONS(2718), 1, + anon_sym_LBRACE, + STATE(546), 1, + sym_enum_variant_list, + [46408] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3315), 1, + ACTIONS(3216), 1, anon_sym_COLON_COLON, - ACTIONS(3317), 1, - anon_sym_LPAREN, - [45704] = 2, + ACTIONS(3344), 1, + anon_sym_RPAREN, + [46418] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1935), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [45712] = 3, + ACTIONS(2867), 1, + sym_super, + ACTIONS(3346), 1, + sym_identifier, + [46428] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3319), 1, + ACTIONS(3348), 1, sym_identifier, - ACTIONS(3321), 1, + ACTIONS(3350), 1, sym_super, - [45722] = 3, + [46438] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(821), 1, anon_sym_LBRACE, - STATE(244), 1, + STATE(297), 1, sym_block, - [45732] = 3, + [46448] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2769), 1, - anon_sym_LT2, - STATE(792), 1, - sym_type_arguments, - [45742] = 2, + ACTIONS(2750), 2, + sym_identifier, + sym_super, + [46456] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3091), 2, - anon_sym_RBRACE, + ACTIONS(1966), 2, anon_sym_COMMA, - [45750] = 3, + anon_sym_RPAREN, + [46464] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2842), 1, + ACTIONS(2867), 1, sym_super, - ACTIONS(3289), 1, + ACTIONS(3208), 1, sym_identifier, - [45760] = 3, + [46474] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2771), 1, + ACTIONS(2776), 1, sym_identifier, - ACTIONS(2773), 1, + ACTIONS(2778), 1, sym_super, - [45770] = 3, + [46484] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3323), 1, - sym_numeric_literal, - ACTIONS(3325), 1, - sym_identifier, - [45780] = 3, + ACTIONS(3352), 1, + anon_sym_COLON_COLON, + ACTIONS(3354), 1, + anon_sym_LPAREN, + [46494] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3327), 1, - anon_sym_LBRACE, - STATE(83), 1, - sym_block, - [45790] = 3, + ACTIONS(2490), 1, + sym_super, + ACTIONS(2849), 1, + sym_identifier, + [46504] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3329), 1, + ACTIONS(3356), 1, anon_sym_LBRACE, - STATE(596), 1, + STATE(708), 1, sym_block, - [45800] = 3, + [46514] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3307), 1, - sym_super, - ACTIONS(3331), 1, - sym_identifier, - [45810] = 3, + ACTIONS(389), 1, + anon_sym_LBRACE, + STATE(812), 1, + sym_block, + [46524] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(802), 1, + ACTIONS(821), 1, anon_sym_LBRACE, - STATE(251), 1, + STATE(286), 1, sym_block, - [45820] = 2, + [46534] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3074), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [45828] = 3, + ACTIONS(1829), 1, + anon_sym_LBRACE, + STATE(799), 1, + sym_field_initializer_list, + [46544] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_block, - [45838] = 3, + ACTIONS(2482), 1, + anon_sym_COLON_COLON, + ACTIONS(3358), 1, + anon_sym_BANG, + [46554] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, - anon_sym_LBRACE, - STATE(772), 1, - sym_block, - [45848] = 3, + ACTIONS(3360), 1, + anon_sym_SEMI, + ACTIONS(3362), 1, + anon_sym_EQ, + [46564] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3333), 1, + ACTIONS(3364), 1, sym_identifier, - ACTIONS(3335), 1, + ACTIONS(3366), 1, sym_super, - [45858] = 2, + [46574] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2981), 2, + ACTIONS(2984), 2, anon_sym_RBRACE, anon_sym_COMMA, - [45866] = 3, + [46582] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3337), 1, + ACTIONS(3368), 1, anon_sym_LBRACE, - STATE(417), 1, + STATE(84), 1, sym_block, - [45876] = 3, + [46592] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3339), 1, - anon_sym_SEMI, - ACTIONS(3341), 1, - anon_sym_EQ, - [45886] = 3, + ACTIONS(3212), 1, + anon_sym_COLON_COLON, + ACTIONS(3298), 1, + anon_sym_RPAREN, + [46602] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2439), 1, + ACTIONS(2490), 1, sym_super, - ACTIONS(2784), 1, + ACTIONS(2748), 1, sym_identifier, - [45896] = 2, + [46612] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3343), 2, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [45904] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2439), 1, - sym_super, - ACTIONS(2753), 1, - sym_identifier, - [45914] = 3, + STATE(68), 1, + sym_block, + [46622] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3307), 1, - sym_super, - ACTIONS(3345), 1, - sym_identifier, - [45924] = 3, + ACTIONS(3236), 1, + anon_sym_EQ, + ACTIONS(3370), 1, + anon_sym_SEMI, + [46632] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3307), 1, + ACTIONS(3286), 1, sym_super, - ACTIONS(3347), 1, + ACTIONS(3334), 1, sym_identifier, - [45934] = 3, + [46642] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, + ACTIONS(2696), 1, anon_sym_PIPE, - ACTIONS(3349), 1, - anon_sym_COLON, - [45944] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3295), 1, - sym_super, - ACTIONS(3345), 1, - sym_identifier, - [45954] = 3, + ACTIONS(3372), 1, + anon_sym_in, + [46652] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2176), 1, - anon_sym_LT2, - STATE(479), 1, - sym_type_arguments, - [45964] = 3, + ACTIONS(3374), 1, + anon_sym_SEMI, + ACTIONS(3376), 1, + anon_sym_RBRACK, + [46662] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2417), 1, - anon_sym_PIPE, - ACTIONS(3349), 1, - anon_sym_COLON, - [45974] = 3, + ACTIONS(2748), 1, + sym_identifier, + ACTIONS(2750), 1, + sym_super, + [46672] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3295), 1, - sym_super, - ACTIONS(3351), 1, - sym_identifier, - [45984] = 3, + ACTIONS(3050), 2, + anon_sym_COMMA, + anon_sym_GT, + [46680] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3191), 1, + ACTIONS(3286), 1, sym_super, - ACTIONS(3353), 1, + ACTIONS(3378), 1, sym_identifier, - [45994] = 2, + [46690] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3068), 2, + ACTIONS(3000), 2, anon_sym_COMMA, anon_sym_GT, - [46002] = 3, + [46698] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1829), 1, + ACTIONS(3380), 2, anon_sym_LBRACE, - STATE(795), 1, - sym_field_initializer_list, - [46012] = 3, + anon_sym_SEMI, + [46706] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(384), 1, - anon_sym_LBRACE, + ACTIONS(2774), 1, + anon_sym_LT2, STATE(807), 1, - sym_block, - [46022] = 3, + sym_type_arguments, + [46716] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2675), 1, - anon_sym_PIPE, - ACTIONS(3355), 1, - anon_sym_COLON, - [46032] = 3, + ACTIONS(3382), 1, + sym_numeric_literal, + ACTIONS(3384), 1, + sym_identifier, + [46726] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2842), 1, - sym_super, - ACTIONS(3357), 1, - sym_identifier, - [46042] = 3, + ACTIONS(2195), 1, + anon_sym_LT2, + STATE(489), 1, + sym_type_arguments, + [46736] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3386), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [46744] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2723), 1, + ACTIONS(3286), 1, sym_super, - ACTIONS(2786), 1, + ACTIONS(3388), 1, sym_identifier, - [46052] = 3, + [46754] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2723), 1, + ACTIONS(3324), 1, sym_super, - ACTIONS(2784), 1, + ACTIONS(3390), 1, sym_identifier, - [46062] = 2, + [46764] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3359), 2, + ACTIONS(2710), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [46070] = 3, + STATE(265), 1, + sym_enum_variant_list, + [46774] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3361), 1, - sym_numeric_literal, - ACTIONS(3363), 1, + ACTIONS(2875), 1, + anon_sym_LPAREN, + STATE(1005), 1, + sym_parameters, + [46784] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3392), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [46792] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2750), 1, + sym_super, + ACTIONS(2847), 1, sym_identifier, - [46080] = 2, + [46802] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3365), 2, + ACTIONS(3394), 2, anon_sym_LBRACE, anon_sym_SEMI, - [46088] = 3, + [46810] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3191), 1, - sym_super, - ACTIONS(3367), 1, - sym_identifier, - [46098] = 3, + ACTIONS(2710), 1, + anon_sym_LBRACE, + STATE(278), 1, + sym_enum_variant_list, + [46820] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3369), 1, - anon_sym_of, - ACTIONS(3371), 1, - anon_sym_EQ, - [46108] = 3, + ACTIONS(3210), 1, + sym_super, + ACTIONS(3396), 1, + sym_identifier, + [46830] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3371), 1, - anon_sym_EQ, - ACTIONS(3373), 1, - anon_sym_SEMI, - [46118] = 3, + ACTIONS(389), 1, + anon_sym_LBRACE, + STATE(789), 1, + sym_block, + [46840] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3375), 1, + ACTIONS(3398), 1, sym_identifier, - ACTIONS(3377), 1, + ACTIONS(3400), 1, sym_super, - [46128] = 3, + [46850] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3379), 1, - anon_sym_SEMI, - ACTIONS(3381), 1, - anon_sym_EQ, - [46138] = 3, + ACTIONS(3402), 1, + anon_sym_LBRACE, + STATE(423), 1, + sym_block, + [46860] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3383), 1, + ACTIONS(3404), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(241), 1, sym_block, - [46148] = 3, + [46870] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3385), 1, - anon_sym_SEMI, - ACTIONS(3387), 1, - anon_sym_RBRACK, - [46158] = 3, + ACTIONS(2428), 1, + anon_sym_PIPE, + ACTIONS(3256), 1, + anon_sym_COLON, + [46880] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2767), 1, - anon_sym_LBRACE, - STATE(328), 1, - sym_enum_variant_list, - [46168] = 3, + ACTIONS(3406), 1, + anon_sym_of, + ACTIONS(3408), 1, + anon_sym_EQ, + [46890] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3295), 1, - sym_super, - ACTIONS(3389), 1, - sym_identifier, - [46178] = 3, + ACTIONS(3410), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [46898] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3391), 1, - anon_sym_of, - ACTIONS(3393), 1, + ACTIONS(3412), 1, + anon_sym_SEMI, + ACTIONS(3414), 1, anon_sym_EQ, - [46188] = 3, + [46908] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2852), 1, + ACTIONS(2833), 1, sym_identifier, - ACTIONS(2854), 1, + ACTIONS(2835), 1, sym_super, - [46198] = 3, + [46918] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3395), 1, - anon_sym_SEMI, - ACTIONS(3397), 1, - anon_sym_EQ, - [46208] = 3, + ACTIONS(3030), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [46926] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2723), 1, - sym_super, - ACTIONS(2852), 1, + ACTIONS(2490), 2, sym_identifier, - [46218] = 3, + sym_super, + [46934] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3389), 1, + ACTIONS(3416), 1, sym_identifier, - ACTIONS(3399), 1, + ACTIONS(3418), 1, sym_super, - [46228] = 3, + [46944] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3191), 1, + ACTIONS(2490), 1, sym_super, - ACTIONS(3375), 1, + ACTIONS(2788), 1, sym_identifier, - [46238] = 3, + [46954] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3243), 1, + ACTIONS(2474), 1, anon_sym_COLON_COLON, - ACTIONS(3401), 1, - anon_sym_RPAREN, - [46248] = 3, + ACTIONS(3358), 1, + anon_sym_BANG, + [46964] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2848), 1, - anon_sym_LPAREN, - STATE(978), 1, - sym_parameters, - [46258] = 3, + ACTIONS(2472), 1, + anon_sym_COLON_COLON, + ACTIONS(3420), 1, + anon_sym_BANG, + [46974] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3233), 1, - anon_sym_COLON_COLON, - ACTIONS(3401), 1, - anon_sym_RPAREN, - [46268] = 3, + ACTIONS(3422), 1, + anon_sym_of, + ACTIONS(3424), 1, + anon_sym_EQ, + [46984] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2767), 1, - anon_sym_LBRACE, - STATE(283), 1, - sym_enum_variant_list, - [46278] = 3, + ACTIONS(3324), 1, + sym_super, + ACTIONS(3416), 1, + sym_identifier, + [46994] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3237), 1, - anon_sym_COLON_COLON, - ACTIONS(3403), 1, - anon_sym_RPAREN, - [46288] = 3, + ACTIONS(3019), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [47002] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3241), 1, - anon_sym_COLON_COLON, - ACTIONS(3401), 1, + ACTIONS(2839), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [46298] = 2, + [47010] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(704), 1, - anon_sym_RBRACK, - [46305] = 2, + ACTIONS(2442), 1, + anon_sym_LT2, + STATE(887), 1, + sym_type_arguments, + [47020] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3405), 1, - anon_sym_EQ_GT, - [46312] = 2, + ACTIONS(3210), 2, + sym_identifier, + sym_super, + [47028] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3407), 1, - anon_sym_RBRACK, - [46319] = 2, + ACTIONS(3424), 1, + anon_sym_EQ, + ACTIONS(3426), 1, + anon_sym_SEMI, + [47038] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3409), 1, - anon_sym_RBRACE, - [46326] = 2, + ACTIONS(3210), 1, + sym_super, + ACTIONS(3398), 1, + sym_identifier, + [47048] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3411), 1, - anon_sym_DQUOTE, - [46333] = 2, + ACTIONS(2750), 1, + sym_super, + ACTIONS(2833), 1, + sym_identifier, + [47058] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3413), 1, - anon_sym_COLON, - [46340] = 2, + ACTIONS(3210), 1, + sym_super, + ACTIONS(3428), 1, + sym_identifier, + [47068] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3415), 1, - anon_sym_RBRACK, - [46347] = 2, + ACTIONS(3430), 1, + sym_numeric_literal, + [47075] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2989), 1, - anon_sym_COLON, - [46354] = 2, + ACTIONS(3408), 1, + anon_sym_EQ, + [47082] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3417), 1, + ACTIONS(3432), 1, anon_sym_RBRACK, - [46361] = 2, + [47089] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3393), 1, - anon_sym_EQ, - [46368] = 2, + ACTIONS(2464), 1, + anon_sym_COLON_COLON, + [47096] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2824), 1, + ACTIONS(3434), 1, anon_sym_RBRACK, - [46375] = 2, + [47103] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2840), 1, - anon_sym_RPAREN, - [46382] = 2, + ACTIONS(3436), 1, + anon_sym_COLON, + [47110] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3419), 1, + ACTIONS(3438), 1, anon_sym_SEMI, - [46389] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3421), 1, - anon_sym_DQUOTE, - [46396] = 2, + [47117] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2830), 1, - anon_sym_RPAREN, - [46403] = 2, + ACTIONS(3440), 1, + anon_sym_SEMI, + [47124] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3423), 1, + ACTIONS(3442), 1, sym_identifier, - [46410] = 2, + [47131] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3425), 1, - anon_sym_COLON, - [46417] = 2, + ACTIONS(3444), 1, + anon_sym_COLON_COLON, + [47138] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2822), 1, - anon_sym_RPAREN, - [46424] = 2, + ACTIONS(718), 1, + anon_sym_RBRACK, + [47145] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3427), 1, - anon_sym_SEMI, - [46431] = 2, + ACTIONS(3446), 1, + sym_identifier, + [47152] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3429), 1, + ACTIONS(3448), 1, sym_identifier, - [46438] = 2, + [47159] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3431), 1, - anon_sym_SEMI, - [46445] = 2, + ACTIONS(3450), 1, + anon_sym_RBRACK, + [47166] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2938), 1, - anon_sym_RBRACE, - [46452] = 2, + ACTIONS(3452), 1, + anon_sym_DQUOTE, + [47173] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3433), 1, - anon_sym_RBRACE, - [46459] = 2, + ACTIONS(3454), 1, + anon_sym_DQUOTE, + [47180] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3456), 1, + sym_identifier, + [47187] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3435), 1, + ACTIONS(3458), 1, anon_sym_RBRACK, - [46466] = 2, + [47194] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3437), 1, + ACTIONS(3460), 1, anon_sym_RBRACE, - [46473] = 2, + [47201] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(684), 1, - anon_sym_RBRACK, - [46480] = 2, + ACTIONS(3462), 1, + sym_identifier, + [47208] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3439), 1, - anon_sym_COLON, - [46487] = 2, + ACTIONS(3464), 1, + anon_sym_EQ_GT, + [47215] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3441), 1, - anon_sym_RBRACK, - [46494] = 2, + ACTIONS(3466), 1, + anon_sym_RBRACE, + [47222] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2588), 1, - anon_sym_RPAREN, - [46501] = 2, + ACTIONS(2806), 1, + anon_sym_RBRACK, + [47229] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3443), 1, + ACTIONS(3468), 1, sym_identifier, - [46508] = 2, + [47236] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3445), 1, + ACTIONS(3470), 1, sym_identifier, - [46515] = 2, + [47243] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3447), 1, - sym_identifier, - [46522] = 2, + ACTIONS(3472), 1, + anon_sym_SEMI, + [47250] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3449), 1, - sym_identifier, - [46529] = 2, + ACTIONS(2798), 1, + anon_sym_RPAREN, + [47257] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3451), 1, + ACTIONS(3474), 1, anon_sym_RBRACK, - [46536] = 2, + [47264] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3453), 1, - sym_identifier, - [46543] = 2, + ACTIONS(3476), 1, + anon_sym_RBRACK, + [47271] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3455), 1, - sym_identifier, - [46550] = 2, + ACTIONS(3478), 1, + anon_sym_SEMI, + [47278] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3457), 1, - sym_identifier, - [46557] = 2, + ACTIONS(612), 1, + anon_sym_RBRACK, + [47285] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3459), 1, + ACTIONS(3480), 1, sym_identifier, - [46564] = 2, + [47292] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3461), 1, + ACTIONS(3482), 1, anon_sym_RBRACK, - [46571] = 2, + [47299] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3463), 1, + ACTIONS(3484), 1, sym_identifier, - [46578] = 2, + [47306] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3465), 1, + ACTIONS(3486), 1, sym_identifier, - [46585] = 2, + [47313] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3467), 1, + ACTIONS(3488), 1, sym_identifier, - [46592] = 2, + [47320] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3469), 1, + ACTIONS(3490), 1, sym_identifier, - [46599] = 2, + [47327] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3471), 1, + ACTIONS(3492), 1, sym_identifier, - [46606] = 2, + [47334] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3473), 1, + ACTIONS(3494), 1, sym_identifier, - [46613] = 2, + [47341] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3475), 1, - sym_numeric_literal, - [46620] = 2, + ACTIONS(3496), 1, + anon_sym_DQUOTE, + [47348] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3477), 1, - anon_sym_SEMI, - [46627] = 2, + ACTIONS(3498), 1, + sym_identifier, + [47355] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3479), 1, - sym_identifier, - [46634] = 2, + ACTIONS(3500), 1, + anon_sym_RBRACK, + [47362] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3481), 1, + ACTIONS(3502), 1, anon_sym_RBRACK, - [46641] = 2, + [47369] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3483), 1, - anon_sym_DQUOTE, - [46648] = 2, + ACTIONS(2314), 1, + sym_identifier, + [47376] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3485), 1, - anon_sym_DQUOTE, - [46655] = 2, - ACTIONS(3487), 1, + ACTIONS(3504), 1, + anon_sym_SEMI, + [47383] = 2, + ACTIONS(3506), 1, aux_sym_string_literal_token2, - ACTIONS(3489), 1, + ACTIONS(3508), 1, sym_line_comment, - [46662] = 2, + [47390] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2089), 1, + ACTIONS(2068), 1, anon_sym_COLON_COLON, - [46669] = 2, + [47397] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3491), 1, - anon_sym_DQUOTE, - [46676] = 2, + ACTIONS(3510), 1, + anon_sym_SEMI, + [47404] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3493), 1, - anon_sym_RBRACE, - [46683] = 2, + ACTIONS(3512), 1, + sym_identifier, + [47411] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3006), 1, - anon_sym_RBRACE, - [46690] = 2, + ACTIONS(3514), 1, + anon_sym_DQUOTE, + [47418] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3495), 1, - anon_sym_EQ_GT, - [46697] = 2, + ACTIONS(3516), 1, + anon_sym_SEMI, + [47425] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3029), 1, - anon_sym_RBRACE, - [46704] = 2, + ACTIONS(702), 1, + anon_sym_RBRACK, + [47432] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3497), 1, - anon_sym_SEMI, - [46711] = 2, + ACTIONS(3518), 1, + anon_sym_RBRACK, + [47439] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3499), 1, - anon_sym_SEMI, - [46718] = 2, + ACTIONS(3520), 1, + anon_sym_EQ_GT, + [47446] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2272), 1, + ACTIONS(2251), 1, anon_sym_COLON_COLON, - [46725] = 2, + [47453] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3501), 1, + ACTIONS(3522), 1, sym_identifier, - [46732] = 2, + [47460] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3503), 1, - anon_sym_SEMI, - [46739] = 2, + ACTIONS(3524), 1, + anon_sym_EQ_GT, + [47467] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3505), 1, - sym_identifier, - [46746] = 2, + ACTIONS(3526), 1, + anon_sym_SEMI, + [47474] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3507), 1, + ACTIONS(3528), 1, anon_sym_COLON_COLON, - [46753] = 2, + [47481] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3509), 1, - sym_identifier, - [46760] = 2, + ACTIONS(3530), 1, + anon_sym_COLON_COLON, + [47488] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3511), 1, - anon_sym_RBRACK, - [46767] = 2, + ACTIONS(3532), 1, + anon_sym_EQ_GT, + [47495] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2983), 1, - anon_sym_COLON, - [46774] = 2, + ACTIONS(3534), 1, + anon_sym_SEMI, + [47502] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3513), 1, + ACTIONS(3536), 1, sym_identifier, - [46781] = 2, + [47509] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3515), 1, - sym_identifier, - [46788] = 2, + ACTIONS(2782), 1, + anon_sym_RPAREN, + [47516] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3517), 1, + ACTIONS(3538), 1, sym_identifier, - [46795] = 2, + [47523] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3519), 1, + ACTIONS(3540), 1, sym_identifier, - [46802] = 2, + [47530] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3521), 1, - anon_sym_COLON_COLON, - [46809] = 2, + ACTIONS(3542), 1, + anon_sym_RBRACK, + [47537] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2323), 1, - sym_identifier, - [46816] = 2, + ACTIONS(3544), 1, + anon_sym_RBRACE, + [47544] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3523), 1, + ACTIONS(3546), 1, sym_identifier, - [46823] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3525), 1, - anon_sym_SEMI, - [46830] = 2, + [47551] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2325), 1, + ACTIONS(3548), 1, sym_identifier, - [46837] = 2, + [47558] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3527), 1, - anon_sym_SEMI, - [46844] = 2, + ACTIONS(3550), 1, + anon_sym_RBRACK, + [47565] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(688), 1, + ACTIONS(2784), 1, anon_sym_RBRACK, - [46851] = 2, + [47572] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3041), 1, - anon_sym_RBRACE, - [46858] = 2, + ACTIONS(3552), 1, + anon_sym_EQ_GT, + [47579] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2733), 1, - anon_sym_RBRACK, - [46865] = 2, + ACTIONS(2957), 1, + anon_sym_RBRACE, + [47586] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3529), 1, - anon_sym_RPAREN, - [46872] = 2, + ACTIONS(2949), 1, + anon_sym_COLON, + [47593] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2673), 1, - anon_sym_RPAREN, - [46879] = 2, + ACTIONS(3554), 1, + anon_sym_SEMI, + [47600] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3531), 1, - anon_sym_COLON, - [46886] = 2, + ACTIONS(3556), 1, + sym_identifier, + [47607] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3533), 1, - anon_sym_RBRACK, - [46893] = 2, + ACTIONS(3558), 1, + anon_sym_SEMI, + [47614] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2252), 1, + ACTIONS(2258), 1, anon_sym_COLON_COLON, - [46900] = 2, + [47621] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2357), 1, + ACTIONS(2322), 1, anon_sym_COLON_COLON, - [46907] = 2, + [47628] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3535), 1, - anon_sym_RBRACK, - [46914] = 2, + ACTIONS(3560), 1, + anon_sym_RBRACE, + [47635] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3537), 1, + ACTIONS(3562), 1, sym_identifier, - [46921] = 2, + [47642] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3539), 1, + ACTIONS(3564), 1, sym_numeric_literal, - [46928] = 2, + [47649] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2291), 1, - sym_identifier, - [46935] = 2, + ACTIONS(3566), 1, + anon_sym_DQUOTE, + [47656] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3541), 1, - anon_sym_EQ_GT, - [46942] = 2, + ACTIONS(3568), 1, + anon_sym_LBRACK, + [47663] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3543), 1, - anon_sym_SEMI, - [46949] = 2, + ACTIONS(3570), 1, + anon_sym_COLON, + [47670] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3545), 1, - anon_sym_EQ_GT, - [46956] = 2, + ACTIONS(3572), 1, + sym_identifier, + [47677] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3547), 1, - anon_sym_SEMI, - [46963] = 2, + ACTIONS(3574), 1, + anon_sym_RPAREN, + [47684] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3549), 1, - anon_sym_SEMI, - [46970] = 2, + ACTIONS(2943), 1, + anon_sym_RBRACE, + [47691] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3551), 1, - anon_sym_RBRACK, - [46977] = 2, + ACTIONS(3102), 1, + anon_sym_RBRACE, + [47698] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3553), 1, + ACTIONS(3576), 1, anon_sym_RPAREN, - [46984] = 2, + [47705] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1857), 1, - anon_sym_RPAREN, - [46991] = 2, + ACTIONS(3114), 1, + anon_sym_RBRACE, + [47712] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3115), 1, - anon_sym_RBRACE, - [46998] = 2, + ACTIONS(3578), 1, + anon_sym_SEMI, + [47719] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3555), 1, - anon_sym_RBRACE, - [47005] = 2, + ACTIONS(3580), 1, + anon_sym_SEMI, + [47726] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1908), 1, + anon_sym_RPAREN, + [47733] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3582), 1, + sym_identifier, + [47740] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(676), 1, + ACTIONS(616), 1, anon_sym_RBRACK, - [47012] = 2, + [47747] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3557), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - [47019] = 2, + [47754] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3559), 1, + ACTIONS(3586), 1, anon_sym_LBRACK, - [47026] = 2, + [47761] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3561), 1, + ACTIONS(3588), 1, anon_sym_COLON, - [47033] = 2, + [47768] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1877), 1, - anon_sym_RPAREN, - [47040] = 2, + ACTIONS(3590), 1, + anon_sym_SEMI, + [47775] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3563), 1, - anon_sym_SEMI, - [47047] = 2, + ACTIONS(3592), 1, + sym_identifier, + [47782] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3565), 1, - anon_sym_SEMI, - [47054] = 2, + ACTIONS(3184), 1, + anon_sym_COLON, + [47789] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2921), 1, + ACTIONS(3594), 1, anon_sym_RBRACE, - [47061] = 2, + [47796] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3567), 1, - anon_sym_COLON, - [47068] = 2, + ACTIONS(3596), 1, + anon_sym_SEMI, + [47803] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3569), 1, - anon_sym_SEMI, - [47075] = 2, + ACTIONS(2853), 1, + anon_sym_RPAREN, + [47810] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3571), 1, - anon_sym_SEMI, - [47082] = 2, + ACTIONS(2680), 1, + anon_sym_RPAREN, + [47817] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3105), 1, - anon_sym_RBRACE, - [47089] = 2, + ACTIONS(3598), 1, + sym_identifier, + [47824] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3573), 1, - anon_sym_SEMI, - [47096] = 2, + ACTIONS(2909), 1, + anon_sym_RBRACE, + [47831] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3575), 1, - sym_identifier, - [47103] = 2, + ACTIONS(3600), 1, + anon_sym_SEMI, + [47838] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3577), 1, + ACTIONS(3602), 1, anon_sym_SEMI, - [47110] = 2, + [47845] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3579), 1, - anon_sym_EQ_GT, - [47117] = 2, + ACTIONS(3604), 1, + anon_sym_SEMI, + [47852] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3581), 1, - ts_builtin_sym_end, - [47124] = 2, + ACTIONS(2328), 1, + sym_identifier, + [47859] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1642), 1, - anon_sym_COLON_COLON, - [47131] = 2, - ACTIONS(3489), 1, + ACTIONS(2845), 1, + anon_sym_RPAREN, + [47866] = 2, + ACTIONS(3508), 1, sym_line_comment, - ACTIONS(3583), 1, + ACTIONS(3606), 1, aux_sym_string_literal_token2, - [47138] = 2, + [47873] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2063), 1, + ACTIONS(2070), 1, anon_sym_COLON_COLON, - [47145] = 2, - ACTIONS(3489), 1, + [47880] = 2, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(3585), 1, - aux_sym_string_literal_token2, - [47152] = 2, + ACTIONS(3608), 1, + ts_builtin_sym_end, + [47887] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3587), 1, - anon_sym_SEMI, - [47159] = 2, + ACTIONS(3610), 1, + anon_sym_RBRACK, + [47894] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3589), 1, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - [47166] = 2, + [47901] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3591), 1, - anon_sym_SEMI, - [47173] = 2, + ACTIONS(2330), 1, + sym_identifier, + [47908] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3593), 1, - anon_sym_RBRACE, - [47180] = 2, - ACTIONS(3), 1, + ACTIONS(1737), 1, + anon_sym_COLON_COLON, + [47915] = 2, + ACTIONS(3508), 1, sym_line_comment, - ACTIONS(3595), 1, - anon_sym_SEMI, - [47187] = 2, + ACTIONS(3614), 1, + aux_sym_string_literal_token2, + [47922] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3597), 1, + ACTIONS(3616), 1, anon_sym_SEMI, - [47194] = 2, + [47929] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3599), 1, + ACTIONS(3618), 1, sym_identifier, - [47201] = 2, + [47936] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3601), 1, - sym_identifier, - [47208] = 2, + ACTIONS(3620), 1, + anon_sym_SEMI, + [47943] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3603), 1, - sym_identifier, - [47215] = 2, - ACTIONS(3489), 1, + ACTIONS(3154), 1, + anon_sym_RBRACE, + [47950] = 2, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(3605), 1, + ACTIONS(3160), 1, + anon_sym_RBRACE, + [47957] = 2, + ACTIONS(3508), 1, + sym_line_comment, + ACTIONS(3622), 1, aux_sym_string_literal_token2, - [47222] = 2, + [47964] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3607), 1, + ACTIONS(3624), 1, sym_identifier, - [47229] = 2, + [47971] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3609), 1, - sym_identifier, - [47236] = 2, + ACTIONS(3176), 1, + anon_sym_RBRACE, + [47978] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2705), 1, + ACTIONS(2885), 1, anon_sym_COLON_COLON, - [47243] = 2, + [47985] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3177), 1, - anon_sym_RBRACE, - [47250] = 2, - ACTIONS(3489), 1, + ACTIONS(2706), 1, + anon_sym_RPAREN, + [47992] = 2, + ACTIONS(3508), 1, sym_line_comment, - ACTIONS(3611), 1, + ACTIONS(3626), 1, aux_sym_string_literal_token2, - [47257] = 2, + [47999] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3613), 1, + ACTIONS(3628), 1, sym_identifier, - [47264] = 2, + [48006] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2576), 1, + ACTIONS(2545), 1, anon_sym_COLON_COLON, - [47271] = 2, + [48013] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2681), 1, - anon_sym_RPAREN, - [47278] = 2, + ACTIONS(3630), 1, + sym_identifier, + [48020] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2860), 1, + ACTIONS(2855), 1, anon_sym_COLON_COLON, - [47285] = 2, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3615), 1, - sym_identifier, - [47292] = 2, + [48027] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3617), 1, + ACTIONS(3632), 1, sym_identifier, - [47299] = 2, + [48034] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2685), 1, + ACTIONS(2702), 1, anon_sym_RPAREN, - [47306] = 2, + [48041] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3165), 1, + ACTIONS(3204), 1, anon_sym_RBRACE, - [47313] = 2, + [48048] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3634), 1, + anon_sym_SEMI, + [48055] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3619), 1, + ACTIONS(3636), 1, anon_sym_COLON, - [47320] = 2, + [48062] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3621), 1, - anon_sym_LBRACK, - [47327] = 2, + ACTIONS(3638), 1, + anon_sym_COLON, + [48069] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3623), 1, + ACTIONS(3640), 1, anon_sym_LBRACK, - [47334] = 2, + [48076] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3625), 1, + ACTIONS(3642), 1, sym_identifier, - [47341] = 2, + [48083] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3627), 1, - anon_sym_COLON_COLON, - [47348] = 2, + ACTIONS(3644), 1, + anon_sym_SEMI, + [48090] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3646), 1, + anon_sym_COLON, + [48097] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3153), 1, + ACTIONS(3192), 1, anon_sym_RBRACE, - [47355] = 2, + [48104] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3147), 1, + ACTIONS(2927), 1, anon_sym_RBRACE, - [47362] = 2, + [48111] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3629), 1, + ACTIONS(3648), 1, anon_sym_COLON, - [47369] = 2, + [48118] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2461), 1, - anon_sym_COLON_COLON, - [47376] = 2, + ACTIONS(1896), 1, + anon_sym_RPAREN, + [48125] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3201), 1, + ACTIONS(3230), 1, anon_sym_EQ, - [47383] = 2, + [48132] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3631), 1, - anon_sym_RBRACK, - [47390] = 2, + ACTIONS(3650), 1, + anon_sym_RBRACE, + [48139] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3633), 1, + ACTIONS(3652), 1, anon_sym_LBRACK, - [47397] = 2, + [48146] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3635), 1, + ACTIONS(3654), 1, anon_sym_LBRACK, - [47404] = 2, + [48153] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3656), 1, + anon_sym_COLON, + [48160] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3637), 1, + ACTIONS(3658), 1, anon_sym_LBRACK, - [47411] = 2, + [48167] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3639), 1, + ACTIONS(3660), 1, anon_sym_LBRACK, - [47418] = 2, + [48174] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3641), 1, + ACTIONS(3662), 1, sym_identifier, - [47425] = 2, + [48181] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3643), 1, + ACTIONS(3664), 1, sym_identifier, - [47432] = 2, + [48188] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3645), 1, + ACTIONS(3666), 1, sym_identifier, - [47439] = 2, + [48195] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3647), 1, + ACTIONS(3668), 1, sym_identifier, - [47446] = 2, + [48202] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3670), 1, + sym_identifier, + [48209] = 2, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3672), 1, + sym_identifier, + [48216] = 2, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3649), 1, + ACTIONS(3674), 1, sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(221)] = 0, - [SMALL_STATE(222)] = 70, - [SMALL_STATE(223)] = 140, - [SMALL_STATE(224)] = 210, - [SMALL_STATE(225)] = 280, - [SMALL_STATE(226)] = 350, - [SMALL_STATE(227)] = 420, - [SMALL_STATE(228)] = 490, - [SMALL_STATE(229)] = 604, - [SMALL_STATE(230)] = 718, - [SMALL_STATE(231)] = 788, - [SMALL_STATE(232)] = 902, - [SMALL_STATE(233)] = 1030, - [SMALL_STATE(234)] = 1144, - [SMALL_STATE(235)] = 1258, - [SMALL_STATE(236)] = 1323, - [SMALL_STATE(237)] = 1388, - [SMALL_STATE(238)] = 1513, - [SMALL_STATE(239)] = 1638, - [SMALL_STATE(240)] = 1703, - [SMALL_STATE(241)] = 1768, - [SMALL_STATE(242)] = 1833, - [SMALL_STATE(243)] = 1898, - [SMALL_STATE(244)] = 2023, - [SMALL_STATE(245)] = 2087, - [SMALL_STATE(246)] = 2151, - [SMALL_STATE(247)] = 2215, - [SMALL_STATE(248)] = 2279, - [SMALL_STATE(249)] = 2343, - [SMALL_STATE(250)] = 2407, - [SMALL_STATE(251)] = 2471, - [SMALL_STATE(252)] = 2535, - [SMALL_STATE(253)] = 2603, - [SMALL_STATE(254)] = 2667, - [SMALL_STATE(255)] = 2731, - [SMALL_STATE(256)] = 2799, - [SMALL_STATE(257)] = 2921, - [SMALL_STATE(258)] = 2985, - [SMALL_STATE(259)] = 3048, - [SMALL_STATE(260)] = 3111, - [SMALL_STATE(261)] = 3174, - [SMALL_STATE(262)] = 3237, - [SMALL_STATE(263)] = 3300, - [SMALL_STATE(264)] = 3363, - [SMALL_STATE(265)] = 3426, - [SMALL_STATE(266)] = 3489, - [SMALL_STATE(267)] = 3552, - [SMALL_STATE(268)] = 3615, - [SMALL_STATE(269)] = 3678, - [SMALL_STATE(270)] = 3741, - [SMALL_STATE(271)] = 3804, - [SMALL_STATE(272)] = 3867, - [SMALL_STATE(273)] = 3930, - [SMALL_STATE(274)] = 3993, - [SMALL_STATE(275)] = 4056, - [SMALL_STATE(276)] = 4119, - [SMALL_STATE(277)] = 4182, - [SMALL_STATE(278)] = 4245, - [SMALL_STATE(279)] = 4308, - [SMALL_STATE(280)] = 4371, - [SMALL_STATE(281)] = 4434, - [SMALL_STATE(282)] = 4497, - [SMALL_STATE(283)] = 4560, - [SMALL_STATE(284)] = 4623, - [SMALL_STATE(285)] = 4686, - [SMALL_STATE(286)] = 4749, - [SMALL_STATE(287)] = 4812, - [SMALL_STATE(288)] = 4875, - [SMALL_STATE(289)] = 4938, - [SMALL_STATE(290)] = 5001, - [SMALL_STATE(291)] = 5064, - [SMALL_STATE(292)] = 5127, - [SMALL_STATE(293)] = 5190, - [SMALL_STATE(294)] = 5253, - [SMALL_STATE(295)] = 5316, - [SMALL_STATE(296)] = 5379, - [SMALL_STATE(297)] = 5442, - [SMALL_STATE(298)] = 5505, - [SMALL_STATE(299)] = 5568, - [SMALL_STATE(300)] = 5631, - [SMALL_STATE(301)] = 5694, - [SMALL_STATE(302)] = 5757, - [SMALL_STATE(303)] = 5820, - [SMALL_STATE(304)] = 5883, - [SMALL_STATE(305)] = 5946, - [SMALL_STATE(306)] = 6009, - [SMALL_STATE(307)] = 6072, - [SMALL_STATE(308)] = 6135, - [SMALL_STATE(309)] = 6198, - [SMALL_STATE(310)] = 6261, - [SMALL_STATE(311)] = 6324, - [SMALL_STATE(312)] = 6387, - [SMALL_STATE(313)] = 6450, - [SMALL_STATE(314)] = 6513, - [SMALL_STATE(315)] = 6576, - [SMALL_STATE(316)] = 6639, - [SMALL_STATE(317)] = 6702, - [SMALL_STATE(318)] = 6765, - [SMALL_STATE(319)] = 6828, - [SMALL_STATE(320)] = 6891, - [SMALL_STATE(321)] = 6954, - [SMALL_STATE(322)] = 7017, - [SMALL_STATE(323)] = 7080, - [SMALL_STATE(324)] = 7143, - [SMALL_STATE(325)] = 7206, - [SMALL_STATE(326)] = 7269, - [SMALL_STATE(327)] = 7332, - [SMALL_STATE(328)] = 7395, - [SMALL_STATE(329)] = 7458, - [SMALL_STATE(330)] = 7521, - [SMALL_STATE(331)] = 7584, - [SMALL_STATE(332)] = 7647, - [SMALL_STATE(333)] = 7710, - [SMALL_STATE(334)] = 7773, - [SMALL_STATE(335)] = 7836, - [SMALL_STATE(336)] = 7899, - [SMALL_STATE(337)] = 7962, - [SMALL_STATE(338)] = 8025, - [SMALL_STATE(339)] = 8141, - [SMALL_STATE(340)] = 8257, - [SMALL_STATE(341)] = 8373, - [SMALL_STATE(342)] = 8489, - [SMALL_STATE(343)] = 8605, - [SMALL_STATE(344)] = 8720, - [SMALL_STATE(345)] = 8835, - [SMALL_STATE(346)] = 8948, - [SMALL_STATE(347)] = 9063, - [SMALL_STATE(348)] = 9178, - [SMALL_STATE(349)] = 9291, - [SMALL_STATE(350)] = 9404, - [SMALL_STATE(351)] = 9514, - [SMALL_STATE(352)] = 9620, - [SMALL_STATE(353)] = 9726, - [SMALL_STATE(354)] = 9827, - [SMALL_STATE(355)] = 9928, - [SMALL_STATE(356)] = 10029, - [SMALL_STATE(357)] = 10130, - [SMALL_STATE(358)] = 10231, - [SMALL_STATE(359)] = 10332, - [SMALL_STATE(360)] = 10433, - [SMALL_STATE(361)] = 10534, - [SMALL_STATE(362)] = 10632, - [SMALL_STATE(363)] = 10730, - [SMALL_STATE(364)] = 10828, - [SMALL_STATE(365)] = 10926, - [SMALL_STATE(366)] = 11024, - [SMALL_STATE(367)] = 11122, - [SMALL_STATE(368)] = 11220, - [SMALL_STATE(369)] = 11318, - [SMALL_STATE(370)] = 11416, - [SMALL_STATE(371)] = 11514, - [SMALL_STATE(372)] = 11612, - [SMALL_STATE(373)] = 11710, - [SMALL_STATE(374)] = 11808, - [SMALL_STATE(375)] = 11906, - [SMALL_STATE(376)] = 12004, - [SMALL_STATE(377)] = 12102, - [SMALL_STATE(378)] = 12197, - [SMALL_STATE(379)] = 12292, - [SMALL_STATE(380)] = 12387, - [SMALL_STATE(381)] = 12444, - [SMALL_STATE(382)] = 12539, - [SMALL_STATE(383)] = 12634, - [SMALL_STATE(384)] = 12729, - [SMALL_STATE(385)] = 12824, - [SMALL_STATE(386)] = 12919, - [SMALL_STATE(387)] = 13014, - [SMALL_STATE(388)] = 13109, - [SMALL_STATE(389)] = 13204, - [SMALL_STATE(390)] = 13299, - [SMALL_STATE(391)] = 13394, - [SMALL_STATE(392)] = 13489, - [SMALL_STATE(393)] = 13584, - [SMALL_STATE(394)] = 13679, - [SMALL_STATE(395)] = 13774, - [SMALL_STATE(396)] = 13866, - [SMALL_STATE(397)] = 13958, - [SMALL_STATE(398)] = 14050, - [SMALL_STATE(399)] = 14142, - [SMALL_STATE(400)] = 14234, - [SMALL_STATE(401)] = 14326, - [SMALL_STATE(402)] = 14415, - [SMALL_STATE(403)] = 14504, - [SMALL_STATE(404)] = 14593, - [SMALL_STATE(405)] = 14644, - [SMALL_STATE(406)] = 14733, - [SMALL_STATE(407)] = 14781, - [SMALL_STATE(408)] = 14826, - [SMALL_STATE(409)] = 14871, - [SMALL_STATE(410)] = 14916, - [SMALL_STATE(411)] = 14961, - [SMALL_STATE(412)] = 15014, - [SMALL_STATE(413)] = 15059, - [SMALL_STATE(414)] = 15104, - [SMALL_STATE(415)] = 15149, - [SMALL_STATE(416)] = 15195, - [SMALL_STATE(417)] = 15241, - [SMALL_STATE(418)] = 15289, - [SMALL_STATE(419)] = 15335, - [SMALL_STATE(420)] = 15381, - [SMALL_STATE(421)] = 15426, - [SMALL_STATE(422)] = 15479, - [SMALL_STATE(423)] = 15552, - [SMALL_STATE(424)] = 15625, - [SMALL_STATE(425)] = 15670, - [SMALL_STATE(426)] = 15743, - [SMALL_STATE(427)] = 15796, - [SMALL_STATE(428)] = 15849, - [SMALL_STATE(429)] = 15902, - [SMALL_STATE(430)] = 15949, - [SMALL_STATE(431)] = 15996, - [SMALL_STATE(432)] = 16069, - [SMALL_STATE(433)] = 16112, - [SMALL_STATE(434)] = 16155, - [SMALL_STATE(435)] = 16200, - [SMALL_STATE(436)] = 16243, - [SMALL_STATE(437)] = 16286, - [SMALL_STATE(438)] = 16339, - [SMALL_STATE(439)] = 16382, - [SMALL_STATE(440)] = 16426, - [SMALL_STATE(441)] = 16486, - [SMALL_STATE(442)] = 16528, - [SMALL_STATE(443)] = 16570, - [SMALL_STATE(444)] = 16612, - [SMALL_STATE(445)] = 16654, - [SMALL_STATE(446)] = 16696, - [SMALL_STATE(447)] = 16768, - [SMALL_STATE(448)] = 16840, - [SMALL_STATE(449)] = 16882, - [SMALL_STATE(450)] = 16924, - [SMALL_STATE(451)] = 16966, - [SMALL_STATE(452)] = 17008, - [SMALL_STATE(453)] = 17050, - [SMALL_STATE(454)] = 17092, - [SMALL_STATE(455)] = 17134, - [SMALL_STATE(456)] = 17176, - [SMALL_STATE(457)] = 17218, - [SMALL_STATE(458)] = 17260, - [SMALL_STATE(459)] = 17302, - [SMALL_STATE(460)] = 17344, - [SMALL_STATE(461)] = 17386, - [SMALL_STATE(462)] = 17428, - [SMALL_STATE(463)] = 17470, - [SMALL_STATE(464)] = 17512, - [SMALL_STATE(465)] = 17554, - [SMALL_STATE(466)] = 17596, - [SMALL_STATE(467)] = 17638, - [SMALL_STATE(468)] = 17680, - [SMALL_STATE(469)] = 17722, - [SMALL_STATE(470)] = 17794, - [SMALL_STATE(471)] = 17836, - [SMALL_STATE(472)] = 17878, - [SMALL_STATE(473)] = 17948, - [SMALL_STATE(474)] = 17990, - [SMALL_STATE(475)] = 18044, - [SMALL_STATE(476)] = 18086, - [SMALL_STATE(477)] = 18154, - [SMALL_STATE(478)] = 18216, - [SMALL_STATE(479)] = 18274, - [SMALL_STATE(480)] = 18316, - [SMALL_STATE(481)] = 18358, - [SMALL_STATE(482)] = 18400, - [SMALL_STATE(483)] = 18442, - [SMALL_STATE(484)] = 18484, - [SMALL_STATE(485)] = 18556, - [SMALL_STATE(486)] = 18598, - [SMALL_STATE(487)] = 18662, - [SMALL_STATE(488)] = 18718, - [SMALL_STATE(489)] = 18759, - [SMALL_STATE(490)] = 18800, - [SMALL_STATE(491)] = 18841, - [SMALL_STATE(492)] = 18882, - [SMALL_STATE(493)] = 18923, - [SMALL_STATE(494)] = 18964, - [SMALL_STATE(495)] = 19009, - [SMALL_STATE(496)] = 19050, - [SMALL_STATE(497)] = 19091, - [SMALL_STATE(498)] = 19132, - [SMALL_STATE(499)] = 19173, - [SMALL_STATE(500)] = 19252, - [SMALL_STATE(501)] = 19293, - [SMALL_STATE(502)] = 19334, - [SMALL_STATE(503)] = 19413, - [SMALL_STATE(504)] = 19454, - [SMALL_STATE(505)] = 19495, - [SMALL_STATE(506)] = 19536, - [SMALL_STATE(507)] = 19577, - [SMALL_STATE(508)] = 19618, - [SMALL_STATE(509)] = 19659, - [SMALL_STATE(510)] = 19700, - [SMALL_STATE(511)] = 19741, - [SMALL_STATE(512)] = 19782, - [SMALL_STATE(513)] = 19823, - [SMALL_STATE(514)] = 19864, - [SMALL_STATE(515)] = 19905, - [SMALL_STATE(516)] = 19946, - [SMALL_STATE(517)] = 19987, - [SMALL_STATE(518)] = 20028, - [SMALL_STATE(519)] = 20107, - [SMALL_STATE(520)] = 20148, - [SMALL_STATE(521)] = 20189, - [SMALL_STATE(522)] = 20230, - [SMALL_STATE(523)] = 20271, - [SMALL_STATE(524)] = 20312, - [SMALL_STATE(525)] = 20353, - [SMALL_STATE(526)] = 20394, - [SMALL_STATE(527)] = 20435, - [SMALL_STATE(528)] = 20476, - [SMALL_STATE(529)] = 20517, - [SMALL_STATE(530)] = 20558, - [SMALL_STATE(531)] = 20599, - [SMALL_STATE(532)] = 20640, - [SMALL_STATE(533)] = 20681, - [SMALL_STATE(534)] = 20722, - [SMALL_STATE(535)] = 20763, - [SMALL_STATE(536)] = 20804, - [SMALL_STATE(537)] = 20845, - [SMALL_STATE(538)] = 20886, - [SMALL_STATE(539)] = 20927, - [SMALL_STATE(540)] = 20968, - [SMALL_STATE(541)] = 21009, - [SMALL_STATE(542)] = 21050, - [SMALL_STATE(543)] = 21091, - [SMALL_STATE(544)] = 21132, - [SMALL_STATE(545)] = 21173, - [SMALL_STATE(546)] = 21214, - [SMALL_STATE(547)] = 21255, - [SMALL_STATE(548)] = 21296, - [SMALL_STATE(549)] = 21337, - [SMALL_STATE(550)] = 21416, - [SMALL_STATE(551)] = 21457, - [SMALL_STATE(552)] = 21498, - [SMALL_STATE(553)] = 21539, - [SMALL_STATE(554)] = 21580, - [SMALL_STATE(555)] = 21621, - [SMALL_STATE(556)] = 21662, - [SMALL_STATE(557)] = 21711, - [SMALL_STATE(558)] = 21752, - [SMALL_STATE(559)] = 21793, - [SMALL_STATE(560)] = 21834, - [SMALL_STATE(561)] = 21875, - [SMALL_STATE(562)] = 21916, - [SMALL_STATE(563)] = 21957, - [SMALL_STATE(564)] = 21998, - [SMALL_STATE(565)] = 22039, - [SMALL_STATE(566)] = 22080, - [SMALL_STATE(567)] = 22121, - [SMALL_STATE(568)] = 22162, - [SMALL_STATE(569)] = 22203, - [SMALL_STATE(570)] = 22244, - [SMALL_STATE(571)] = 22285, - [SMALL_STATE(572)] = 22326, - [SMALL_STATE(573)] = 22367, - [SMALL_STATE(574)] = 22409, - [SMALL_STATE(575)] = 22475, - [SMALL_STATE(576)] = 22521, - [SMALL_STATE(577)] = 22597, - [SMALL_STATE(578)] = 22673, - [SMALL_STATE(579)] = 22739, - [SMALL_STATE(580)] = 22781, - [SMALL_STATE(581)] = 22847, - [SMALL_STATE(582)] = 22913, - [SMALL_STATE(583)] = 22979, - [SMALL_STATE(584)] = 23055, - [SMALL_STATE(585)] = 23131, - [SMALL_STATE(586)] = 23173, - [SMALL_STATE(587)] = 23249, - [SMALL_STATE(588)] = 23291, - [SMALL_STATE(589)] = 23367, - [SMALL_STATE(590)] = 23433, - [SMALL_STATE(591)] = 23499, - [SMALL_STATE(592)] = 23565, - [SMALL_STATE(593)] = 23631, - [SMALL_STATE(594)] = 23697, - [SMALL_STATE(595)] = 23760, - [SMALL_STATE(596)] = 23801, - [SMALL_STATE(597)] = 23844, - [SMALL_STATE(598)] = 23883, - [SMALL_STATE(599)] = 23956, - [SMALL_STATE(600)] = 24019, - [SMALL_STATE(601)] = 24060, - [SMALL_STATE(602)] = 24101, - [SMALL_STATE(603)] = 24164, - [SMALL_STATE(604)] = 24227, - [SMALL_STATE(605)] = 24300, - [SMALL_STATE(606)] = 24373, - [SMALL_STATE(607)] = 24436, - [SMALL_STATE(608)] = 24509, - [SMALL_STATE(609)] = 24582, - [SMALL_STATE(610)] = 24645, - [SMALL_STATE(611)] = 24708, - [SMALL_STATE(612)] = 24781, - [SMALL_STATE(613)] = 24854, - [SMALL_STATE(614)] = 24927, - [SMALL_STATE(615)] = 24990, - [SMALL_STATE(616)] = 25053, - [SMALL_STATE(617)] = 25116, - [SMALL_STATE(618)] = 25155, - [SMALL_STATE(619)] = 25218, - [SMALL_STATE(620)] = 25281, - [SMALL_STATE(621)] = 25352, - [SMALL_STATE(622)] = 25423, - [SMALL_STATE(623)] = 25494, - [SMALL_STATE(624)] = 25557, - [SMALL_STATE(625)] = 25620, - [SMALL_STATE(626)] = 25683, - [SMALL_STATE(627)] = 25746, - [SMALL_STATE(628)] = 25809, - [SMALL_STATE(629)] = 25880, - [SMALL_STATE(630)] = 25951, - [SMALL_STATE(631)] = 26014, - [SMALL_STATE(632)] = 26087, - [SMALL_STATE(633)] = 26160, - [SMALL_STATE(634)] = 26223, - [SMALL_STATE(635)] = 26294, - [SMALL_STATE(636)] = 26337, - [SMALL_STATE(637)] = 26408, - [SMALL_STATE(638)] = 26481, - [SMALL_STATE(639)] = 26552, - [SMALL_STATE(640)] = 26625, - [SMALL_STATE(641)] = 26696, - [SMALL_STATE(642)] = 26769, - [SMALL_STATE(643)] = 26832, - [SMALL_STATE(644)] = 26895, - [SMALL_STATE(645)] = 26966, - [SMALL_STATE(646)] = 27029, - [SMALL_STATE(647)] = 27092, - [SMALL_STATE(648)] = 27155, - [SMALL_STATE(649)] = 27228, - [SMALL_STATE(650)] = 27267, - [SMALL_STATE(651)] = 27330, - [SMALL_STATE(652)] = 27403, - [SMALL_STATE(653)] = 27466, - [SMALL_STATE(654)] = 27505, - [SMALL_STATE(655)] = 27578, - [SMALL_STATE(656)] = 27649, - [SMALL_STATE(657)] = 27712, - [SMALL_STATE(658)] = 27775, - [SMALL_STATE(659)] = 27818, - [SMALL_STATE(660)] = 27861, - [SMALL_STATE(661)] = 27924, - [SMALL_STATE(662)] = 27987, - [SMALL_STATE(663)] = 28050, - [SMALL_STATE(664)] = 28113, - [SMALL_STATE(665)] = 28176, - [SMALL_STATE(666)] = 28249, - [SMALL_STATE(667)] = 28288, - [SMALL_STATE(668)] = 28331, - [SMALL_STATE(669)] = 28394, - [SMALL_STATE(670)] = 28433, - [SMALL_STATE(671)] = 28472, - [SMALL_STATE(672)] = 28545, - [SMALL_STATE(673)] = 28584, - [SMALL_STATE(674)] = 28623, - [SMALL_STATE(675)] = 28686, - [SMALL_STATE(676)] = 28759, - [SMALL_STATE(677)] = 28800, - [SMALL_STATE(678)] = 28873, - [SMALL_STATE(679)] = 28936, - [SMALL_STATE(680)] = 29009, - [SMALL_STATE(681)] = 29082, - [SMALL_STATE(682)] = 29155, - [SMALL_STATE(683)] = 29228, - [SMALL_STATE(684)] = 29267, - [SMALL_STATE(685)] = 29330, - [SMALL_STATE(686)] = 29403, - [SMALL_STATE(687)] = 29466, - [SMALL_STATE(688)] = 29529, - [SMALL_STATE(689)] = 29602, - [SMALL_STATE(690)] = 29665, - [SMALL_STATE(691)] = 29738, - [SMALL_STATE(692)] = 29801, - [SMALL_STATE(693)] = 29864, - [SMALL_STATE(694)] = 29927, - [SMALL_STATE(695)] = 30000, - [SMALL_STATE(696)] = 30039, - [SMALL_STATE(697)] = 30078, - [SMALL_STATE(698)] = 30141, - [SMALL_STATE(699)] = 30214, - [SMALL_STATE(700)] = 30284, - [SMALL_STATE(701)] = 30348, - [SMALL_STATE(702)] = 30418, - [SMALL_STATE(703)] = 30456, - [SMALL_STATE(704)] = 30494, - [SMALL_STATE(705)] = 30534, - [SMALL_STATE(706)] = 30604, - [SMALL_STATE(707)] = 30674, - [SMALL_STATE(708)] = 30722, - [SMALL_STATE(709)] = 30792, - [SMALL_STATE(710)] = 30862, - [SMALL_STATE(711)] = 30932, - [SMALL_STATE(712)] = 30970, - [SMALL_STATE(713)] = 31038, - [SMALL_STATE(714)] = 31108, - [SMALL_STATE(715)] = 31176, - [SMALL_STATE(716)] = 31214, - [SMALL_STATE(717)] = 31254, - [SMALL_STATE(718)] = 31324, - [SMALL_STATE(719)] = 31394, - [SMALL_STATE(720)] = 31434, - [SMALL_STATE(721)] = 31472, - [SMALL_STATE(722)] = 31542, - [SMALL_STATE(723)] = 31582, - [SMALL_STATE(724)] = 31652, - [SMALL_STATE(725)] = 31720, - [SMALL_STATE(726)] = 31790, - [SMALL_STATE(727)] = 31838, - [SMALL_STATE(728)] = 31898, - [SMALL_STATE(729)] = 31948, - [SMALL_STATE(730)] = 32004, - [SMALL_STATE(731)] = 32058, - [SMALL_STATE(732)] = 32128, - [SMALL_STATE(733)] = 32198, - [SMALL_STATE(734)] = 32256, - [SMALL_STATE(735)] = 32326, - [SMALL_STATE(736)] = 32364, - [SMALL_STATE(737)] = 32434, - [SMALL_STATE(738)] = 32504, - [SMALL_STATE(739)] = 32574, - [SMALL_STATE(740)] = 32622, - [SMALL_STATE(741)] = 32688, - [SMALL_STATE(742)] = 32726, - [SMALL_STATE(743)] = 32794, - [SMALL_STATE(744)] = 32864, - [SMALL_STATE(745)] = 32916, - [SMALL_STATE(746)] = 32986, - [SMALL_STATE(747)] = 33054, - [SMALL_STATE(748)] = 33102, - [SMALL_STATE(749)] = 33142, - [SMALL_STATE(750)] = 33212, - [SMALL_STATE(751)] = 33280, - [SMALL_STATE(752)] = 33332, - [SMALL_STATE(753)] = 33400, - [SMALL_STATE(754)] = 33470, - [SMALL_STATE(755)] = 33540, - [SMALL_STATE(756)] = 33578, - [SMALL_STATE(757)] = 33644, - [SMALL_STATE(758)] = 33714, - [SMALL_STATE(759)] = 33778, - [SMALL_STATE(760)] = 33816, - [SMALL_STATE(761)] = 33874, - [SMALL_STATE(762)] = 33944, - [SMALL_STATE(763)] = 33998, - [SMALL_STATE(764)] = 34068, - [SMALL_STATE(765)] = 34138, - [SMALL_STATE(766)] = 34194, - [SMALL_STATE(767)] = 34244, - [SMALL_STATE(768)] = 34304, - [SMALL_STATE(769)] = 34372, - [SMALL_STATE(770)] = 34442, - [SMALL_STATE(771)] = 34512, - [SMALL_STATE(772)] = 34582, - [SMALL_STATE(773)] = 34619, - [SMALL_STATE(774)] = 34656, - [SMALL_STATE(775)] = 34693, - [SMALL_STATE(776)] = 34730, - [SMALL_STATE(777)] = 34767, - [SMALL_STATE(778)] = 34804, - [SMALL_STATE(779)] = 34841, - [SMALL_STATE(780)] = 34878, - [SMALL_STATE(781)] = 34915, - [SMALL_STATE(782)] = 34952, - [SMALL_STATE(783)] = 34989, - [SMALL_STATE(784)] = 35044, - [SMALL_STATE(785)] = 35081, - [SMALL_STATE(786)] = 35118, - [SMALL_STATE(787)] = 35155, - [SMALL_STATE(788)] = 35192, - [SMALL_STATE(789)] = 35229, - [SMALL_STATE(790)] = 35266, - [SMALL_STATE(791)] = 35303, - [SMALL_STATE(792)] = 35340, - [SMALL_STATE(793)] = 35377, - [SMALL_STATE(794)] = 35414, - [SMALL_STATE(795)] = 35451, - [SMALL_STATE(796)] = 35488, - [SMALL_STATE(797)] = 35525, - [SMALL_STATE(798)] = 35562, - [SMALL_STATE(799)] = 35599, - [SMALL_STATE(800)] = 35636, - [SMALL_STATE(801)] = 35673, - [SMALL_STATE(802)] = 35710, - [SMALL_STATE(803)] = 35747, - [SMALL_STATE(804)] = 35784, - [SMALL_STATE(805)] = 35821, - [SMALL_STATE(806)] = 35858, - [SMALL_STATE(807)] = 35895, - [SMALL_STATE(808)] = 35932, - [SMALL_STATE(809)] = 35969, - [SMALL_STATE(810)] = 36006, - [SMALL_STATE(811)] = 36043, - [SMALL_STATE(812)] = 36080, - [SMALL_STATE(813)] = 36117, - [SMALL_STATE(814)] = 36154, - [SMALL_STATE(815)] = 36191, - [SMALL_STATE(816)] = 36228, - [SMALL_STATE(817)] = 36265, - [SMALL_STATE(818)] = 36302, - [SMALL_STATE(819)] = 36354, - [SMALL_STATE(820)] = 36406, - [SMALL_STATE(821)] = 36455, - [SMALL_STATE(822)] = 36504, - [SMALL_STATE(823)] = 36553, - [SMALL_STATE(824)] = 36602, - [SMALL_STATE(825)] = 36651, - [SMALL_STATE(826)] = 36688, - [SMALL_STATE(827)] = 36719, - [SMALL_STATE(828)] = 36761, - [SMALL_STATE(829)] = 36800, - [SMALL_STATE(830)] = 36839, - [SMALL_STATE(831)] = 36878, - [SMALL_STATE(832)] = 36917, - [SMALL_STATE(833)] = 36956, - [SMALL_STATE(834)] = 36995, - [SMALL_STATE(835)] = 37034, - [SMALL_STATE(836)] = 37073, - [SMALL_STATE(837)] = 37112, - [SMALL_STATE(838)] = 37151, - [SMALL_STATE(839)] = 37190, - [SMALL_STATE(840)] = 37226, - [SMALL_STATE(841)] = 37262, - [SMALL_STATE(842)] = 37288, - [SMALL_STATE(843)] = 37314, - [SMALL_STATE(844)] = 37340, - [SMALL_STATE(845)] = 37366, - [SMALL_STATE(846)] = 37400, - [SMALL_STATE(847)] = 37423, - [SMALL_STATE(848)] = 37444, - [SMALL_STATE(849)] = 37467, - [SMALL_STATE(850)] = 37488, - [SMALL_STATE(851)] = 37509, - [SMALL_STATE(852)] = 37530, - [SMALL_STATE(853)] = 37553, - [SMALL_STATE(854)] = 37576, - [SMALL_STATE(855)] = 37594, - [SMALL_STATE(856)] = 37612, - [SMALL_STATE(857)] = 37630, - [SMALL_STATE(858)] = 37658, - [SMALL_STATE(859)] = 37676, - [SMALL_STATE(860)] = 37716, - [SMALL_STATE(861)] = 37734, - [SMALL_STATE(862)] = 37774, - [SMALL_STATE(863)] = 37792, - [SMALL_STATE(864)] = 37810, - [SMALL_STATE(865)] = 37835, - [SMALL_STATE(866)] = 37856, - [SMALL_STATE(867)] = 37873, - [SMALL_STATE(868)] = 37894, - [SMALL_STATE(869)] = 37911, - [SMALL_STATE(870)] = 37928, - [SMALL_STATE(871)] = 37959, - [SMALL_STATE(872)] = 37978, - [SMALL_STATE(873)] = 37995, - [SMALL_STATE(874)] = 38014, - [SMALL_STATE(875)] = 38045, - [SMALL_STATE(876)] = 38066, - [SMALL_STATE(877)] = 38087, - [SMALL_STATE(878)] = 38106, - [SMALL_STATE(879)] = 38125, - [SMALL_STATE(880)] = 38157, - [SMALL_STATE(881)] = 38181, - [SMALL_STATE(882)] = 38197, - [SMALL_STATE(883)] = 38213, - [SMALL_STATE(884)] = 38245, - [SMALL_STATE(885)] = 38261, - [SMALL_STATE(886)] = 38277, - [SMALL_STATE(887)] = 38309, - [SMALL_STATE(888)] = 38325, - [SMALL_STATE(889)] = 38353, - [SMALL_STATE(890)] = 38381, - [SMALL_STATE(891)] = 38413, - [SMALL_STATE(892)] = 38429, - [SMALL_STATE(893)] = 38449, - [SMALL_STATE(894)] = 38465, - [SMALL_STATE(895)] = 38493, - [SMALL_STATE(896)] = 38509, - [SMALL_STATE(897)] = 38525, - [SMALL_STATE(898)] = 38553, - [SMALL_STATE(899)] = 38569, - [SMALL_STATE(900)] = 38585, - [SMALL_STATE(901)] = 38614, - [SMALL_STATE(902)] = 38629, - [SMALL_STATE(903)] = 38652, - [SMALL_STATE(904)] = 38681, - [SMALL_STATE(905)] = 38710, - [SMALL_STATE(906)] = 38725, - [SMALL_STATE(907)] = 38754, - [SMALL_STATE(908)] = 38783, - [SMALL_STATE(909)] = 38812, - [SMALL_STATE(910)] = 38841, - [SMALL_STATE(911)] = 38870, - [SMALL_STATE(912)] = 38897, - [SMALL_STATE(913)] = 38916, - [SMALL_STATE(914)] = 38941, - [SMALL_STATE(915)] = 38970, - [SMALL_STATE(916)] = 38985, - [SMALL_STATE(917)] = 38999, - [SMALL_STATE(918)] = 39013, - [SMALL_STATE(919)] = 39027, - [SMALL_STATE(920)] = 39053, - [SMALL_STATE(921)] = 39075, - [SMALL_STATE(922)] = 39089, - [SMALL_STATE(923)] = 39115, - [SMALL_STATE(924)] = 39129, - [SMALL_STATE(925)] = 39143, - [SMALL_STATE(926)] = 39157, - [SMALL_STATE(927)] = 39183, - [SMALL_STATE(928)] = 39197, - [SMALL_STATE(929)] = 39211, - [SMALL_STATE(930)] = 39225, - [SMALL_STATE(931)] = 39251, - [SMALL_STATE(932)] = 39265, - [SMALL_STATE(933)] = 39279, - [SMALL_STATE(934)] = 39293, - [SMALL_STATE(935)] = 39319, - [SMALL_STATE(936)] = 39333, - [SMALL_STATE(937)] = 39347, - [SMALL_STATE(938)] = 39361, - [SMALL_STATE(939)] = 39375, - [SMALL_STATE(940)] = 39389, - [SMALL_STATE(941)] = 39415, - [SMALL_STATE(942)] = 39429, - [SMALL_STATE(943)] = 39443, - [SMALL_STATE(944)] = 39457, - [SMALL_STATE(945)] = 39471, - [SMALL_STATE(946)] = 39485, - [SMALL_STATE(947)] = 39499, - [SMALL_STATE(948)] = 39517, - [SMALL_STATE(949)] = 39531, - [SMALL_STATE(950)] = 39557, - [SMALL_STATE(951)] = 39571, - [SMALL_STATE(952)] = 39585, - [SMALL_STATE(953)] = 39611, - [SMALL_STATE(954)] = 39637, - [SMALL_STATE(955)] = 39655, - [SMALL_STATE(956)] = 39669, - [SMALL_STATE(957)] = 39683, - [SMALL_STATE(958)] = 39701, - [SMALL_STATE(959)] = 39715, - [SMALL_STATE(960)] = 39733, - [SMALL_STATE(961)] = 39759, - [SMALL_STATE(962)] = 39782, - [SMALL_STATE(963)] = 39805, - [SMALL_STATE(964)] = 39828, - [SMALL_STATE(965)] = 39851, - [SMALL_STATE(966)] = 39874, - [SMALL_STATE(967)] = 39897, - [SMALL_STATE(968)] = 39922, - [SMALL_STATE(969)] = 39947, - [SMALL_STATE(970)] = 39972, - [SMALL_STATE(971)] = 39997, - [SMALL_STATE(972)] = 40018, - [SMALL_STATE(973)] = 40039, - [SMALL_STATE(974)] = 40060, - [SMALL_STATE(975)] = 40079, - [SMALL_STATE(976)] = 40102, - [SMALL_STATE(977)] = 40122, - [SMALL_STATE(978)] = 40142, - [SMALL_STATE(979)] = 40162, - [SMALL_STATE(980)] = 40184, - [SMALL_STATE(981)] = 40206, - [SMALL_STATE(982)] = 40224, - [SMALL_STATE(983)] = 40244, - [SMALL_STATE(984)] = 40256, - [SMALL_STATE(985)] = 40274, - [SMALL_STATE(986)] = 40286, - [SMALL_STATE(987)] = 40298, - [SMALL_STATE(988)] = 40320, - [SMALL_STATE(989)] = 40332, - [SMALL_STATE(990)] = 40352, - [SMALL_STATE(991)] = 40372, - [SMALL_STATE(992)] = 40392, - [SMALL_STATE(993)] = 40412, - [SMALL_STATE(994)] = 40432, - [SMALL_STATE(995)] = 40450, - [SMALL_STATE(996)] = 40466, - [SMALL_STATE(997)] = 40486, - [SMALL_STATE(998)] = 40497, - [SMALL_STATE(999)] = 40516, - [SMALL_STATE(1000)] = 40531, - [SMALL_STATE(1001)] = 40550, - [SMALL_STATE(1002)] = 40569, - [SMALL_STATE(1003)] = 40586, - [SMALL_STATE(1004)] = 40601, - [SMALL_STATE(1005)] = 40612, - [SMALL_STATE(1006)] = 40631, - [SMALL_STATE(1007)] = 40642, - [SMALL_STATE(1008)] = 40653, - [SMALL_STATE(1009)] = 40664, - [SMALL_STATE(1010)] = 40683, - [SMALL_STATE(1011)] = 40694, - [SMALL_STATE(1012)] = 40711, - [SMALL_STATE(1013)] = 40728, - [SMALL_STATE(1014)] = 40745, - [SMALL_STATE(1015)] = 40764, - [SMALL_STATE(1016)] = 40781, - [SMALL_STATE(1017)] = 40792, - [SMALL_STATE(1018)] = 40807, - [SMALL_STATE(1019)] = 40818, - [SMALL_STATE(1020)] = 40829, - [SMALL_STATE(1021)] = 40844, - [SMALL_STATE(1022)] = 40855, - [SMALL_STATE(1023)] = 40874, - [SMALL_STATE(1024)] = 40891, - [SMALL_STATE(1025)] = 40902, - [SMALL_STATE(1026)] = 40913, - [SMALL_STATE(1027)] = 40924, - [SMALL_STATE(1028)] = 40941, - [SMALL_STATE(1029)] = 40960, - [SMALL_STATE(1030)] = 40977, - [SMALL_STATE(1031)] = 40988, - [SMALL_STATE(1032)] = 41005, - [SMALL_STATE(1033)] = 41022, - [SMALL_STATE(1034)] = 41037, - [SMALL_STATE(1035)] = 41052, - [SMALL_STATE(1036)] = 41071, - [SMALL_STATE(1037)] = 41090, - [SMALL_STATE(1038)] = 41109, - [SMALL_STATE(1039)] = 41128, - [SMALL_STATE(1040)] = 41143, - [SMALL_STATE(1041)] = 41162, - [SMALL_STATE(1042)] = 41173, - [SMALL_STATE(1043)] = 41192, - [SMALL_STATE(1044)] = 41203, - [SMALL_STATE(1045)] = 41214, - [SMALL_STATE(1046)] = 41225, - [SMALL_STATE(1047)] = 41236, - [SMALL_STATE(1048)] = 41255, - [SMALL_STATE(1049)] = 41272, - [SMALL_STATE(1050)] = 41288, - [SMALL_STATE(1051)] = 41304, - [SMALL_STATE(1052)] = 41318, - [SMALL_STATE(1053)] = 41334, - [SMALL_STATE(1054)] = 41350, - [SMALL_STATE(1055)] = 41366, - [SMALL_STATE(1056)] = 41382, - [SMALL_STATE(1057)] = 41398, - [SMALL_STATE(1058)] = 41414, - [SMALL_STATE(1059)] = 41430, - [SMALL_STATE(1060)] = 41446, - [SMALL_STATE(1061)] = 41462, - [SMALL_STATE(1062)] = 41478, - [SMALL_STATE(1063)] = 41490, - [SMALL_STATE(1064)] = 41506, - [SMALL_STATE(1065)] = 41522, - [SMALL_STATE(1066)] = 41536, - [SMALL_STATE(1067)] = 41550, - [SMALL_STATE(1068)] = 41566, - [SMALL_STATE(1069)] = 41582, - [SMALL_STATE(1070)] = 41596, - [SMALL_STATE(1071)] = 41612, - [SMALL_STATE(1072)] = 41626, - [SMALL_STATE(1073)] = 41642, - [SMALL_STATE(1074)] = 41658, - [SMALL_STATE(1075)] = 41674, - [SMALL_STATE(1076)] = 41690, - [SMALL_STATE(1077)] = 41706, - [SMALL_STATE(1078)] = 41722, - [SMALL_STATE(1079)] = 41738, - [SMALL_STATE(1080)] = 41754, - [SMALL_STATE(1081)] = 41770, - [SMALL_STATE(1082)] = 41786, - [SMALL_STATE(1083)] = 41802, - [SMALL_STATE(1084)] = 41814, - [SMALL_STATE(1085)] = 41830, - [SMALL_STATE(1086)] = 41846, - [SMALL_STATE(1087)] = 41862, - [SMALL_STATE(1088)] = 41878, - [SMALL_STATE(1089)] = 41894, - [SMALL_STATE(1090)] = 41910, - [SMALL_STATE(1091)] = 41926, - [SMALL_STATE(1092)] = 41942, - [SMALL_STATE(1093)] = 41958, - [SMALL_STATE(1094)] = 41974, - [SMALL_STATE(1095)] = 41988, - [SMALL_STATE(1096)] = 42000, - [SMALL_STATE(1097)] = 42016, - [SMALL_STATE(1098)] = 42032, - [SMALL_STATE(1099)] = 42048, - [SMALL_STATE(1100)] = 42064, - [SMALL_STATE(1101)] = 42080, - [SMALL_STATE(1102)] = 42096, - [SMALL_STATE(1103)] = 42112, - [SMALL_STATE(1104)] = 42128, - [SMALL_STATE(1105)] = 42144, - [SMALL_STATE(1106)] = 42160, - [SMALL_STATE(1107)] = 42176, - [SMALL_STATE(1108)] = 42188, - [SMALL_STATE(1109)] = 42204, - [SMALL_STATE(1110)] = 42218, - [SMALL_STATE(1111)] = 42234, - [SMALL_STATE(1112)] = 42250, - [SMALL_STATE(1113)] = 42264, - [SMALL_STATE(1114)] = 42278, - [SMALL_STATE(1115)] = 42294, - [SMALL_STATE(1116)] = 42310, - [SMALL_STATE(1117)] = 42324, - [SMALL_STATE(1118)] = 42336, - [SMALL_STATE(1119)] = 42350, - [SMALL_STATE(1120)] = 42366, - [SMALL_STATE(1121)] = 42380, - [SMALL_STATE(1122)] = 42396, - [SMALL_STATE(1123)] = 42412, - [SMALL_STATE(1124)] = 42426, - [SMALL_STATE(1125)] = 42442, - [SMALL_STATE(1126)] = 42454, - [SMALL_STATE(1127)] = 42468, - [SMALL_STATE(1128)] = 42482, - [SMALL_STATE(1129)] = 42498, - [SMALL_STATE(1130)] = 42514, - [SMALL_STATE(1131)] = 42530, - [SMALL_STATE(1132)] = 42546, - [SMALL_STATE(1133)] = 42562, - [SMALL_STATE(1134)] = 42576, - [SMALL_STATE(1135)] = 42592, - [SMALL_STATE(1136)] = 42608, - [SMALL_STATE(1137)] = 42624, - [SMALL_STATE(1138)] = 42638, - [SMALL_STATE(1139)] = 42654, - [SMALL_STATE(1140)] = 42670, - [SMALL_STATE(1141)] = 42686, - [SMALL_STATE(1142)] = 42702, - [SMALL_STATE(1143)] = 42718, - [SMALL_STATE(1144)] = 42734, - [SMALL_STATE(1145)] = 42750, - [SMALL_STATE(1146)] = 42764, - [SMALL_STATE(1147)] = 42780, - [SMALL_STATE(1148)] = 42793, - [SMALL_STATE(1149)] = 42806, - [SMALL_STATE(1150)] = 42819, - [SMALL_STATE(1151)] = 42830, - [SMALL_STATE(1152)] = 42841, - [SMALL_STATE(1153)] = 42854, - [SMALL_STATE(1154)] = 42867, - [SMALL_STATE(1155)] = 42880, - [SMALL_STATE(1156)] = 42891, - [SMALL_STATE(1157)] = 42904, - [SMALL_STATE(1158)] = 42917, - [SMALL_STATE(1159)] = 42930, - [SMALL_STATE(1160)] = 42943, - [SMALL_STATE(1161)] = 42956, - [SMALL_STATE(1162)] = 42967, - [SMALL_STATE(1163)] = 42976, - [SMALL_STATE(1164)] = 42985, - [SMALL_STATE(1165)] = 42994, - [SMALL_STATE(1166)] = 43003, - [SMALL_STATE(1167)] = 43012, - [SMALL_STATE(1168)] = 43021, - [SMALL_STATE(1169)] = 43030, - [SMALL_STATE(1170)] = 43043, - [SMALL_STATE(1171)] = 43052, - [SMALL_STATE(1172)] = 43061, - [SMALL_STATE(1173)] = 43074, - [SMALL_STATE(1174)] = 43083, - [SMALL_STATE(1175)] = 43092, - [SMALL_STATE(1176)] = 43101, - [SMALL_STATE(1177)] = 43114, - [SMALL_STATE(1178)] = 43127, - [SMALL_STATE(1179)] = 43136, - [SMALL_STATE(1180)] = 43145, - [SMALL_STATE(1181)] = 43154, - [SMALL_STATE(1182)] = 43167, - [SMALL_STATE(1183)] = 43176, - [SMALL_STATE(1184)] = 43189, - [SMALL_STATE(1185)] = 43200, - [SMALL_STATE(1186)] = 43209, - [SMALL_STATE(1187)] = 43218, - [SMALL_STATE(1188)] = 43229, - [SMALL_STATE(1189)] = 43238, - [SMALL_STATE(1190)] = 43251, - [SMALL_STATE(1191)] = 43260, - [SMALL_STATE(1192)] = 43269, - [SMALL_STATE(1193)] = 43282, - [SMALL_STATE(1194)] = 43291, - [SMALL_STATE(1195)] = 43302, - [SMALL_STATE(1196)] = 43313, - [SMALL_STATE(1197)] = 43326, - [SMALL_STATE(1198)] = 43335, - [SMALL_STATE(1199)] = 43348, - [SMALL_STATE(1200)] = 43361, - [SMALL_STATE(1201)] = 43374, - [SMALL_STATE(1202)] = 43387, - [SMALL_STATE(1203)] = 43400, - [SMALL_STATE(1204)] = 43413, - [SMALL_STATE(1205)] = 43426, - [SMALL_STATE(1206)] = 43435, - [SMALL_STATE(1207)] = 43448, - [SMALL_STATE(1208)] = 43459, - [SMALL_STATE(1209)] = 43472, - [SMALL_STATE(1210)] = 43485, - [SMALL_STATE(1211)] = 43496, - [SMALL_STATE(1212)] = 43509, - [SMALL_STATE(1213)] = 43522, - [SMALL_STATE(1214)] = 43535, - [SMALL_STATE(1215)] = 43548, - [SMALL_STATE(1216)] = 43557, - [SMALL_STATE(1217)] = 43570, - [SMALL_STATE(1218)] = 43579, - [SMALL_STATE(1219)] = 43592, - [SMALL_STATE(1220)] = 43605, - [SMALL_STATE(1221)] = 43616, - [SMALL_STATE(1222)] = 43629, - [SMALL_STATE(1223)] = 43642, - [SMALL_STATE(1224)] = 43653, - [SMALL_STATE(1225)] = 43666, - [SMALL_STATE(1226)] = 43675, - [SMALL_STATE(1227)] = 43688, - [SMALL_STATE(1228)] = 43697, - [SMALL_STATE(1229)] = 43710, - [SMALL_STATE(1230)] = 43719, - [SMALL_STATE(1231)] = 43732, - [SMALL_STATE(1232)] = 43745, - [SMALL_STATE(1233)] = 43758, - [SMALL_STATE(1234)] = 43771, - [SMALL_STATE(1235)] = 43780, - [SMALL_STATE(1236)] = 43789, - [SMALL_STATE(1237)] = 43802, - [SMALL_STATE(1238)] = 43815, - [SMALL_STATE(1239)] = 43828, - [SMALL_STATE(1240)] = 43837, - [SMALL_STATE(1241)] = 43850, - [SMALL_STATE(1242)] = 43861, - [SMALL_STATE(1243)] = 43874, - [SMALL_STATE(1244)] = 43883, - [SMALL_STATE(1245)] = 43896, - [SMALL_STATE(1246)] = 43907, - [SMALL_STATE(1247)] = 43920, - [SMALL_STATE(1248)] = 43929, - [SMALL_STATE(1249)] = 43942, - [SMALL_STATE(1250)] = 43951, - [SMALL_STATE(1251)] = 43964, - [SMALL_STATE(1252)] = 43977, - [SMALL_STATE(1253)] = 43990, - [SMALL_STATE(1254)] = 44003, - [SMALL_STATE(1255)] = 44012, - [SMALL_STATE(1256)] = 44021, - [SMALL_STATE(1257)] = 44034, - [SMALL_STATE(1258)] = 44047, - [SMALL_STATE(1259)] = 44058, - [SMALL_STATE(1260)] = 44071, - [SMALL_STATE(1261)] = 44084, - [SMALL_STATE(1262)] = 44097, - [SMALL_STATE(1263)] = 44110, - [SMALL_STATE(1264)] = 44121, - [SMALL_STATE(1265)] = 44134, - [SMALL_STATE(1266)] = 44147, - [SMALL_STATE(1267)] = 44160, - [SMALL_STATE(1268)] = 44173, - [SMALL_STATE(1269)] = 44186, - [SMALL_STATE(1270)] = 44195, - [SMALL_STATE(1271)] = 44208, - [SMALL_STATE(1272)] = 44221, - [SMALL_STATE(1273)] = 44234, - [SMALL_STATE(1274)] = 44245, - [SMALL_STATE(1275)] = 44256, - [SMALL_STATE(1276)] = 44269, - [SMALL_STATE(1277)] = 44282, - [SMALL_STATE(1278)] = 44295, - [SMALL_STATE(1279)] = 44308, - [SMALL_STATE(1280)] = 44321, - [SMALL_STATE(1281)] = 44334, - [SMALL_STATE(1282)] = 44347, - [SMALL_STATE(1283)] = 44360, - [SMALL_STATE(1284)] = 44373, - [SMALL_STATE(1285)] = 44386, - [SMALL_STATE(1286)] = 44399, - [SMALL_STATE(1287)] = 44408, - [SMALL_STATE(1288)] = 44421, - [SMALL_STATE(1289)] = 44430, - [SMALL_STATE(1290)] = 44443, - [SMALL_STATE(1291)] = 44452, - [SMALL_STATE(1292)] = 44465, - [SMALL_STATE(1293)] = 44478, - [SMALL_STATE(1294)] = 44491, - [SMALL_STATE(1295)] = 44500, - [SMALL_STATE(1296)] = 44513, - [SMALL_STATE(1297)] = 44526, - [SMALL_STATE(1298)] = 44539, - [SMALL_STATE(1299)] = 44552, - [SMALL_STATE(1300)] = 44561, - [SMALL_STATE(1301)] = 44570, - [SMALL_STATE(1302)] = 44583, - [SMALL_STATE(1303)] = 44596, - [SMALL_STATE(1304)] = 44609, - [SMALL_STATE(1305)] = 44622, - [SMALL_STATE(1306)] = 44631, - [SMALL_STATE(1307)] = 44644, - [SMALL_STATE(1308)] = 44657, - [SMALL_STATE(1309)] = 44666, - [SMALL_STATE(1310)] = 44679, - [SMALL_STATE(1311)] = 44692, - [SMALL_STATE(1312)] = 44705, - [SMALL_STATE(1313)] = 44718, - [SMALL_STATE(1314)] = 44731, - [SMALL_STATE(1315)] = 44744, - [SMALL_STATE(1316)] = 44757, - [SMALL_STATE(1317)] = 44770, - [SMALL_STATE(1318)] = 44779, - [SMALL_STATE(1319)] = 44792, - [SMALL_STATE(1320)] = 44801, - [SMALL_STATE(1321)] = 44814, - [SMALL_STATE(1322)] = 44827, - [SMALL_STATE(1323)] = 44840, - [SMALL_STATE(1324)] = 44853, - [SMALL_STATE(1325)] = 44866, - [SMALL_STATE(1326)] = 44879, - [SMALL_STATE(1327)] = 44892, - [SMALL_STATE(1328)] = 44903, - [SMALL_STATE(1329)] = 44916, - [SMALL_STATE(1330)] = 44929, - [SMALL_STATE(1331)] = 44942, - [SMALL_STATE(1332)] = 44955, - [SMALL_STATE(1333)] = 44964, - [SMALL_STATE(1334)] = 44977, - [SMALL_STATE(1335)] = 44990, - [SMALL_STATE(1336)] = 45003, - [SMALL_STATE(1337)] = 45016, - [SMALL_STATE(1338)] = 45029, - [SMALL_STATE(1339)] = 45040, - [SMALL_STATE(1340)] = 45048, - [SMALL_STATE(1341)] = 45056, - [SMALL_STATE(1342)] = 45066, - [SMALL_STATE(1343)] = 45076, - [SMALL_STATE(1344)] = 45086, - [SMALL_STATE(1345)] = 45096, - [SMALL_STATE(1346)] = 45104, - [SMALL_STATE(1347)] = 45114, - [SMALL_STATE(1348)] = 45124, - [SMALL_STATE(1349)] = 45132, - [SMALL_STATE(1350)] = 45142, - [SMALL_STATE(1351)] = 45152, - [SMALL_STATE(1352)] = 45162, - [SMALL_STATE(1353)] = 45170, - [SMALL_STATE(1354)] = 45178, - [SMALL_STATE(1355)] = 45186, - [SMALL_STATE(1356)] = 45196, - [SMALL_STATE(1357)] = 45204, - [SMALL_STATE(1358)] = 45214, - [SMALL_STATE(1359)] = 45224, - [SMALL_STATE(1360)] = 45234, - [SMALL_STATE(1361)] = 45244, - [SMALL_STATE(1362)] = 45254, - [SMALL_STATE(1363)] = 45264, - [SMALL_STATE(1364)] = 45274, - [SMALL_STATE(1365)] = 45282, - [SMALL_STATE(1366)] = 45290, - [SMALL_STATE(1367)] = 45300, - [SMALL_STATE(1368)] = 45308, - [SMALL_STATE(1369)] = 45316, - [SMALL_STATE(1370)] = 45324, - [SMALL_STATE(1371)] = 45334, - [SMALL_STATE(1372)] = 45344, - [SMALL_STATE(1373)] = 45352, - [SMALL_STATE(1374)] = 45360, - [SMALL_STATE(1375)] = 45370, - [SMALL_STATE(1376)] = 45380, - [SMALL_STATE(1377)] = 45388, - [SMALL_STATE(1378)] = 45396, - [SMALL_STATE(1379)] = 45404, - [SMALL_STATE(1380)] = 45414, - [SMALL_STATE(1381)] = 45422, - [SMALL_STATE(1382)] = 45432, - [SMALL_STATE(1383)] = 45440, - [SMALL_STATE(1384)] = 45448, - [SMALL_STATE(1385)] = 45456, - [SMALL_STATE(1386)] = 45464, - [SMALL_STATE(1387)] = 45474, - [SMALL_STATE(1388)] = 45482, - [SMALL_STATE(1389)] = 45492, - [SMALL_STATE(1390)] = 45502, - [SMALL_STATE(1391)] = 45512, - [SMALL_STATE(1392)] = 45520, - [SMALL_STATE(1393)] = 45528, - [SMALL_STATE(1394)] = 45538, - [SMALL_STATE(1395)] = 45546, - [SMALL_STATE(1396)] = 45556, - [SMALL_STATE(1397)] = 45564, - [SMALL_STATE(1398)] = 45574, - [SMALL_STATE(1399)] = 45582, - [SMALL_STATE(1400)] = 45590, - [SMALL_STATE(1401)] = 45600, - [SMALL_STATE(1402)] = 45608, - [SMALL_STATE(1403)] = 45618, - [SMALL_STATE(1404)] = 45626, - [SMALL_STATE(1405)] = 45634, - [SMALL_STATE(1406)] = 45642, - [SMALL_STATE(1407)] = 45650, - [SMALL_STATE(1408)] = 45658, - [SMALL_STATE(1409)] = 45666, - [SMALL_STATE(1410)] = 45676, - [SMALL_STATE(1411)] = 45686, - [SMALL_STATE(1412)] = 45694, - [SMALL_STATE(1413)] = 45704, - [SMALL_STATE(1414)] = 45712, - [SMALL_STATE(1415)] = 45722, - [SMALL_STATE(1416)] = 45732, - [SMALL_STATE(1417)] = 45742, - [SMALL_STATE(1418)] = 45750, - [SMALL_STATE(1419)] = 45760, - [SMALL_STATE(1420)] = 45770, - [SMALL_STATE(1421)] = 45780, - [SMALL_STATE(1422)] = 45790, - [SMALL_STATE(1423)] = 45800, - [SMALL_STATE(1424)] = 45810, - [SMALL_STATE(1425)] = 45820, - [SMALL_STATE(1426)] = 45828, - [SMALL_STATE(1427)] = 45838, - [SMALL_STATE(1428)] = 45848, - [SMALL_STATE(1429)] = 45858, - [SMALL_STATE(1430)] = 45866, - [SMALL_STATE(1431)] = 45876, - [SMALL_STATE(1432)] = 45886, - [SMALL_STATE(1433)] = 45896, - [SMALL_STATE(1434)] = 45904, - [SMALL_STATE(1435)] = 45914, - [SMALL_STATE(1436)] = 45924, - [SMALL_STATE(1437)] = 45934, - [SMALL_STATE(1438)] = 45944, - [SMALL_STATE(1439)] = 45954, - [SMALL_STATE(1440)] = 45964, - [SMALL_STATE(1441)] = 45974, - [SMALL_STATE(1442)] = 45984, - [SMALL_STATE(1443)] = 45994, - [SMALL_STATE(1444)] = 46002, - [SMALL_STATE(1445)] = 46012, - [SMALL_STATE(1446)] = 46022, - [SMALL_STATE(1447)] = 46032, - [SMALL_STATE(1448)] = 46042, - [SMALL_STATE(1449)] = 46052, - [SMALL_STATE(1450)] = 46062, - [SMALL_STATE(1451)] = 46070, - [SMALL_STATE(1452)] = 46080, - [SMALL_STATE(1453)] = 46088, - [SMALL_STATE(1454)] = 46098, - [SMALL_STATE(1455)] = 46108, - [SMALL_STATE(1456)] = 46118, - [SMALL_STATE(1457)] = 46128, - [SMALL_STATE(1458)] = 46138, - [SMALL_STATE(1459)] = 46148, - [SMALL_STATE(1460)] = 46158, - [SMALL_STATE(1461)] = 46168, - [SMALL_STATE(1462)] = 46178, - [SMALL_STATE(1463)] = 46188, - [SMALL_STATE(1464)] = 46198, - [SMALL_STATE(1465)] = 46208, - [SMALL_STATE(1466)] = 46218, - [SMALL_STATE(1467)] = 46228, - [SMALL_STATE(1468)] = 46238, - [SMALL_STATE(1469)] = 46248, - [SMALL_STATE(1470)] = 46258, - [SMALL_STATE(1471)] = 46268, - [SMALL_STATE(1472)] = 46278, - [SMALL_STATE(1473)] = 46288, - [SMALL_STATE(1474)] = 46298, - [SMALL_STATE(1475)] = 46305, - [SMALL_STATE(1476)] = 46312, - [SMALL_STATE(1477)] = 46319, - [SMALL_STATE(1478)] = 46326, - [SMALL_STATE(1479)] = 46333, - [SMALL_STATE(1480)] = 46340, - [SMALL_STATE(1481)] = 46347, - [SMALL_STATE(1482)] = 46354, - [SMALL_STATE(1483)] = 46361, - [SMALL_STATE(1484)] = 46368, - [SMALL_STATE(1485)] = 46375, - [SMALL_STATE(1486)] = 46382, - [SMALL_STATE(1487)] = 46389, - [SMALL_STATE(1488)] = 46396, - [SMALL_STATE(1489)] = 46403, - [SMALL_STATE(1490)] = 46410, - [SMALL_STATE(1491)] = 46417, - [SMALL_STATE(1492)] = 46424, - [SMALL_STATE(1493)] = 46431, - [SMALL_STATE(1494)] = 46438, - [SMALL_STATE(1495)] = 46445, - [SMALL_STATE(1496)] = 46452, - [SMALL_STATE(1497)] = 46459, - [SMALL_STATE(1498)] = 46466, - [SMALL_STATE(1499)] = 46473, - [SMALL_STATE(1500)] = 46480, - [SMALL_STATE(1501)] = 46487, - [SMALL_STATE(1502)] = 46494, - [SMALL_STATE(1503)] = 46501, - [SMALL_STATE(1504)] = 46508, - [SMALL_STATE(1505)] = 46515, - [SMALL_STATE(1506)] = 46522, - [SMALL_STATE(1507)] = 46529, - [SMALL_STATE(1508)] = 46536, - [SMALL_STATE(1509)] = 46543, - [SMALL_STATE(1510)] = 46550, - [SMALL_STATE(1511)] = 46557, - [SMALL_STATE(1512)] = 46564, - [SMALL_STATE(1513)] = 46571, - [SMALL_STATE(1514)] = 46578, - [SMALL_STATE(1515)] = 46585, - [SMALL_STATE(1516)] = 46592, - [SMALL_STATE(1517)] = 46599, - [SMALL_STATE(1518)] = 46606, - [SMALL_STATE(1519)] = 46613, - [SMALL_STATE(1520)] = 46620, - [SMALL_STATE(1521)] = 46627, - [SMALL_STATE(1522)] = 46634, - [SMALL_STATE(1523)] = 46641, - [SMALL_STATE(1524)] = 46648, - [SMALL_STATE(1525)] = 46655, - [SMALL_STATE(1526)] = 46662, - [SMALL_STATE(1527)] = 46669, - [SMALL_STATE(1528)] = 46676, - [SMALL_STATE(1529)] = 46683, - [SMALL_STATE(1530)] = 46690, - [SMALL_STATE(1531)] = 46697, - [SMALL_STATE(1532)] = 46704, - [SMALL_STATE(1533)] = 46711, - [SMALL_STATE(1534)] = 46718, - [SMALL_STATE(1535)] = 46725, - [SMALL_STATE(1536)] = 46732, - [SMALL_STATE(1537)] = 46739, - [SMALL_STATE(1538)] = 46746, - [SMALL_STATE(1539)] = 46753, - [SMALL_STATE(1540)] = 46760, - [SMALL_STATE(1541)] = 46767, - [SMALL_STATE(1542)] = 46774, - [SMALL_STATE(1543)] = 46781, - [SMALL_STATE(1544)] = 46788, - [SMALL_STATE(1545)] = 46795, - [SMALL_STATE(1546)] = 46802, - [SMALL_STATE(1547)] = 46809, - [SMALL_STATE(1548)] = 46816, - [SMALL_STATE(1549)] = 46823, - [SMALL_STATE(1550)] = 46830, - [SMALL_STATE(1551)] = 46837, - [SMALL_STATE(1552)] = 46844, - [SMALL_STATE(1553)] = 46851, - [SMALL_STATE(1554)] = 46858, - [SMALL_STATE(1555)] = 46865, - [SMALL_STATE(1556)] = 46872, - [SMALL_STATE(1557)] = 46879, - [SMALL_STATE(1558)] = 46886, - [SMALL_STATE(1559)] = 46893, - [SMALL_STATE(1560)] = 46900, - [SMALL_STATE(1561)] = 46907, - [SMALL_STATE(1562)] = 46914, - [SMALL_STATE(1563)] = 46921, - [SMALL_STATE(1564)] = 46928, - [SMALL_STATE(1565)] = 46935, - [SMALL_STATE(1566)] = 46942, - [SMALL_STATE(1567)] = 46949, - [SMALL_STATE(1568)] = 46956, - [SMALL_STATE(1569)] = 46963, - [SMALL_STATE(1570)] = 46970, - [SMALL_STATE(1571)] = 46977, - [SMALL_STATE(1572)] = 46984, - [SMALL_STATE(1573)] = 46991, - [SMALL_STATE(1574)] = 46998, - [SMALL_STATE(1575)] = 47005, - [SMALL_STATE(1576)] = 47012, - [SMALL_STATE(1577)] = 47019, - [SMALL_STATE(1578)] = 47026, - [SMALL_STATE(1579)] = 47033, - [SMALL_STATE(1580)] = 47040, - [SMALL_STATE(1581)] = 47047, - [SMALL_STATE(1582)] = 47054, - [SMALL_STATE(1583)] = 47061, - [SMALL_STATE(1584)] = 47068, - [SMALL_STATE(1585)] = 47075, - [SMALL_STATE(1586)] = 47082, - [SMALL_STATE(1587)] = 47089, - [SMALL_STATE(1588)] = 47096, - [SMALL_STATE(1589)] = 47103, - [SMALL_STATE(1590)] = 47110, - [SMALL_STATE(1591)] = 47117, - [SMALL_STATE(1592)] = 47124, - [SMALL_STATE(1593)] = 47131, - [SMALL_STATE(1594)] = 47138, - [SMALL_STATE(1595)] = 47145, - [SMALL_STATE(1596)] = 47152, - [SMALL_STATE(1597)] = 47159, - [SMALL_STATE(1598)] = 47166, - [SMALL_STATE(1599)] = 47173, - [SMALL_STATE(1600)] = 47180, - [SMALL_STATE(1601)] = 47187, - [SMALL_STATE(1602)] = 47194, - [SMALL_STATE(1603)] = 47201, - [SMALL_STATE(1604)] = 47208, - [SMALL_STATE(1605)] = 47215, - [SMALL_STATE(1606)] = 47222, - [SMALL_STATE(1607)] = 47229, - [SMALL_STATE(1608)] = 47236, - [SMALL_STATE(1609)] = 47243, - [SMALL_STATE(1610)] = 47250, - [SMALL_STATE(1611)] = 47257, - [SMALL_STATE(1612)] = 47264, - [SMALL_STATE(1613)] = 47271, - [SMALL_STATE(1614)] = 47278, - [SMALL_STATE(1615)] = 47285, - [SMALL_STATE(1616)] = 47292, - [SMALL_STATE(1617)] = 47299, - [SMALL_STATE(1618)] = 47306, - [SMALL_STATE(1619)] = 47313, - [SMALL_STATE(1620)] = 47320, - [SMALL_STATE(1621)] = 47327, - [SMALL_STATE(1622)] = 47334, - [SMALL_STATE(1623)] = 47341, - [SMALL_STATE(1624)] = 47348, - [SMALL_STATE(1625)] = 47355, - [SMALL_STATE(1626)] = 47362, - [SMALL_STATE(1627)] = 47369, - [SMALL_STATE(1628)] = 47376, - [SMALL_STATE(1629)] = 47383, - [SMALL_STATE(1630)] = 47390, - [SMALL_STATE(1631)] = 47397, - [SMALL_STATE(1632)] = 47404, - [SMALL_STATE(1633)] = 47411, - [SMALL_STATE(1634)] = 47418, - [SMALL_STATE(1635)] = 47425, - [SMALL_STATE(1636)] = 47432, - [SMALL_STATE(1637)] = 47439, - [SMALL_STATE(1638)] = 47446, + [SMALL_STATE(225)] = 0, + [SMALL_STATE(226)] = 70, + [SMALL_STATE(227)] = 140, + [SMALL_STATE(228)] = 210, + [SMALL_STATE(229)] = 280, + [SMALL_STATE(230)] = 350, + [SMALL_STATE(231)] = 420, + [SMALL_STATE(232)] = 490, + [SMALL_STATE(233)] = 604, + [SMALL_STATE(234)] = 718, + [SMALL_STATE(235)] = 784, + [SMALL_STATE(236)] = 898, + [SMALL_STATE(237)] = 964, + [SMALL_STATE(238)] = 1092, + [SMALL_STATE(239)] = 1158, + [SMALL_STATE(240)] = 1272, + [SMALL_STATE(241)] = 1386, + [SMALL_STATE(242)] = 1456, + [SMALL_STATE(243)] = 1521, + [SMALL_STATE(244)] = 1586, + [SMALL_STATE(245)] = 1651, + [SMALL_STATE(246)] = 1776, + [SMALL_STATE(247)] = 1901, + [SMALL_STATE(248)] = 2026, + [SMALL_STATE(249)] = 2090, + [SMALL_STATE(250)] = 2154, + [SMALL_STATE(251)] = 2218, + [SMALL_STATE(252)] = 2282, + [SMALL_STATE(253)] = 2346, + [SMALL_STATE(254)] = 2410, + [SMALL_STATE(255)] = 2474, + [SMALL_STATE(256)] = 2538, + [SMALL_STATE(257)] = 2602, + [SMALL_STATE(258)] = 2666, + [SMALL_STATE(259)] = 2730, + [SMALL_STATE(260)] = 2794, + [SMALL_STATE(261)] = 2858, + [SMALL_STATE(262)] = 2922, + [SMALL_STATE(263)] = 2986, + [SMALL_STATE(264)] = 3050, + [SMALL_STATE(265)] = 3114, + [SMALL_STATE(266)] = 3178, + [SMALL_STATE(267)] = 3242, + [SMALL_STATE(268)] = 3306, + [SMALL_STATE(269)] = 3370, + [SMALL_STATE(270)] = 3434, + [SMALL_STATE(271)] = 3498, + [SMALL_STATE(272)] = 3562, + [SMALL_STATE(273)] = 3626, + [SMALL_STATE(274)] = 3690, + [SMALL_STATE(275)] = 3754, + [SMALL_STATE(276)] = 3818, + [SMALL_STATE(277)] = 3882, + [SMALL_STATE(278)] = 3946, + [SMALL_STATE(279)] = 4010, + [SMALL_STATE(280)] = 4074, + [SMALL_STATE(281)] = 4138, + [SMALL_STATE(282)] = 4202, + [SMALL_STATE(283)] = 4266, + [SMALL_STATE(284)] = 4330, + [SMALL_STATE(285)] = 4394, + [SMALL_STATE(286)] = 4458, + [SMALL_STATE(287)] = 4522, + [SMALL_STATE(288)] = 4586, + [SMALL_STATE(289)] = 4650, + [SMALL_STATE(290)] = 4714, + [SMALL_STATE(291)] = 4778, + [SMALL_STATE(292)] = 4842, + [SMALL_STATE(293)] = 4906, + [SMALL_STATE(294)] = 4970, + [SMALL_STATE(295)] = 5034, + [SMALL_STATE(296)] = 5098, + [SMALL_STATE(297)] = 5162, + [SMALL_STATE(298)] = 5226, + [SMALL_STATE(299)] = 5290, + [SMALL_STATE(300)] = 5354, + [SMALL_STATE(301)] = 5418, + [SMALL_STATE(302)] = 5482, + [SMALL_STATE(303)] = 5546, + [SMALL_STATE(304)] = 5610, + [SMALL_STATE(305)] = 5674, + [SMALL_STATE(306)] = 5738, + [SMALL_STATE(307)] = 5802, + [SMALL_STATE(308)] = 5866, + [SMALL_STATE(309)] = 5930, + [SMALL_STATE(310)] = 5994, + [SMALL_STATE(311)] = 6058, + [SMALL_STATE(312)] = 6122, + [SMALL_STATE(313)] = 6186, + [SMALL_STATE(314)] = 6250, + [SMALL_STATE(315)] = 6314, + [SMALL_STATE(316)] = 6378, + [SMALL_STATE(317)] = 6446, + [SMALL_STATE(318)] = 6510, + [SMALL_STATE(319)] = 6574, + [SMALL_STATE(320)] = 6638, + [SMALL_STATE(321)] = 6760, + [SMALL_STATE(322)] = 6824, + [SMALL_STATE(323)] = 6888, + [SMALL_STATE(324)] = 6952, + [SMALL_STATE(325)] = 7016, + [SMALL_STATE(326)] = 7080, + [SMALL_STATE(327)] = 7144, + [SMALL_STATE(328)] = 7208, + [SMALL_STATE(329)] = 7272, + [SMALL_STATE(330)] = 7336, + [SMALL_STATE(331)] = 7400, + [SMALL_STATE(332)] = 7464, + [SMALL_STATE(333)] = 7528, + [SMALL_STATE(334)] = 7592, + [SMALL_STATE(335)] = 7656, + [SMALL_STATE(336)] = 7720, + [SMALL_STATE(337)] = 7784, + [SMALL_STATE(338)] = 7848, + [SMALL_STATE(339)] = 7912, + [SMALL_STATE(340)] = 7980, + [SMALL_STATE(341)] = 8044, + [SMALL_STATE(342)] = 8108, + [SMALL_STATE(343)] = 8172, + [SMALL_STATE(344)] = 8288, + [SMALL_STATE(345)] = 8404, + [SMALL_STATE(346)] = 8520, + [SMALL_STATE(347)] = 8636, + [SMALL_STATE(348)] = 8752, + [SMALL_STATE(349)] = 8865, + [SMALL_STATE(350)] = 8980, + [SMALL_STATE(351)] = 9095, + [SMALL_STATE(352)] = 9208, + [SMALL_STATE(353)] = 9321, + [SMALL_STATE(354)] = 9436, + [SMALL_STATE(355)] = 9551, + [SMALL_STATE(356)] = 9661, + [SMALL_STATE(357)] = 9767, + [SMALL_STATE(358)] = 9873, + [SMALL_STATE(359)] = 9974, + [SMALL_STATE(360)] = 10075, + [SMALL_STATE(361)] = 10176, + [SMALL_STATE(362)] = 10277, + [SMALL_STATE(363)] = 10378, + [SMALL_STATE(364)] = 10479, + [SMALL_STATE(365)] = 10580, + [SMALL_STATE(366)] = 10681, + [SMALL_STATE(367)] = 10779, + [SMALL_STATE(368)] = 10877, + [SMALL_STATE(369)] = 10975, + [SMALL_STATE(370)] = 11073, + [SMALL_STATE(371)] = 11171, + [SMALL_STATE(372)] = 11269, + [SMALL_STATE(373)] = 11367, + [SMALL_STATE(374)] = 11425, + [SMALL_STATE(375)] = 11523, + [SMALL_STATE(376)] = 11621, + [SMALL_STATE(377)] = 11719, + [SMALL_STATE(378)] = 11817, + [SMALL_STATE(379)] = 11915, + [SMALL_STATE(380)] = 12013, + [SMALL_STATE(381)] = 12111, + [SMALL_STATE(382)] = 12209, + [SMALL_STATE(383)] = 12307, + [SMALL_STATE(384)] = 12402, + [SMALL_STATE(385)] = 12497, + [SMALL_STATE(386)] = 12592, + [SMALL_STATE(387)] = 12687, + [SMALL_STATE(388)] = 12782, + [SMALL_STATE(389)] = 12877, + [SMALL_STATE(390)] = 12972, + [SMALL_STATE(391)] = 13067, + [SMALL_STATE(392)] = 13162, + [SMALL_STATE(393)] = 13257, + [SMALL_STATE(394)] = 13352, + [SMALL_STATE(395)] = 13447, + [SMALL_STATE(396)] = 13542, + [SMALL_STATE(397)] = 13637, + [SMALL_STATE(398)] = 13732, + [SMALL_STATE(399)] = 13827, + [SMALL_STATE(400)] = 13922, + [SMALL_STATE(401)] = 14017, + [SMALL_STATE(402)] = 14112, + [SMALL_STATE(403)] = 14207, + [SMALL_STATE(404)] = 14299, + [SMALL_STATE(405)] = 14391, + [SMALL_STATE(406)] = 14483, + [SMALL_STATE(407)] = 14575, + [SMALL_STATE(408)] = 14667, + [SMALL_STATE(409)] = 14759, + [SMALL_STATE(410)] = 14811, + [SMALL_STATE(411)] = 14900, + [SMALL_STATE(412)] = 14989, + [SMALL_STATE(413)] = 15078, + [SMALL_STATE(414)] = 15167, + [SMALL_STATE(415)] = 15216, + [SMALL_STATE(416)] = 15261, + [SMALL_STATE(417)] = 15306, + [SMALL_STATE(418)] = 15351, + [SMALL_STATE(419)] = 15396, + [SMALL_STATE(420)] = 15441, + [SMALL_STATE(421)] = 15494, + [SMALL_STATE(422)] = 15539, + [SMALL_STATE(423)] = 15584, + [SMALL_STATE(424)] = 15632, + [SMALL_STATE(425)] = 15678, + [SMALL_STATE(426)] = 15724, + [SMALL_STATE(427)] = 15770, + [SMALL_STATE(428)] = 15816, + [SMALL_STATE(429)] = 15889, + [SMALL_STATE(430)] = 15934, + [SMALL_STATE(431)] = 16007, + [SMALL_STATE(432)] = 16050, + [SMALL_STATE(433)] = 16103, + [SMALL_STATE(434)] = 16148, + [SMALL_STATE(435)] = 16195, + [SMALL_STATE(436)] = 16248, + [SMALL_STATE(437)] = 16301, + [SMALL_STATE(438)] = 16344, + [SMALL_STATE(439)] = 16417, + [SMALL_STATE(440)] = 16460, + [SMALL_STATE(441)] = 16533, + [SMALL_STATE(442)] = 16578, + [SMALL_STATE(443)] = 16625, + [SMALL_STATE(444)] = 16668, + [SMALL_STATE(445)] = 16721, + [SMALL_STATE(446)] = 16764, + [SMALL_STATE(447)] = 16817, + [SMALL_STATE(448)] = 16859, + [SMALL_STATE(449)] = 16901, + [SMALL_STATE(450)] = 16943, + [SMALL_STATE(451)] = 16985, + [SMALL_STATE(452)] = 17027, + [SMALL_STATE(453)] = 17069, + [SMALL_STATE(454)] = 17141, + [SMALL_STATE(455)] = 17183, + [SMALL_STATE(456)] = 17225, + [SMALL_STATE(457)] = 17267, + [SMALL_STATE(458)] = 17309, + [SMALL_STATE(459)] = 17351, + [SMALL_STATE(460)] = 17393, + [SMALL_STATE(461)] = 17435, + [SMALL_STATE(462)] = 17479, + [SMALL_STATE(463)] = 17551, + [SMALL_STATE(464)] = 17593, + [SMALL_STATE(465)] = 17635, + [SMALL_STATE(466)] = 17677, + [SMALL_STATE(467)] = 17719, + [SMALL_STATE(468)] = 17761, + [SMALL_STATE(469)] = 17803, + [SMALL_STATE(470)] = 17845, + [SMALL_STATE(471)] = 17887, + [SMALL_STATE(472)] = 17943, + [SMALL_STATE(473)] = 18015, + [SMALL_STATE(474)] = 18057, + [SMALL_STATE(475)] = 18099, + [SMALL_STATE(476)] = 18169, + [SMALL_STATE(477)] = 18211, + [SMALL_STATE(478)] = 18279, + [SMALL_STATE(479)] = 18341, + [SMALL_STATE(480)] = 18399, + [SMALL_STATE(481)] = 18459, + [SMALL_STATE(482)] = 18513, + [SMALL_STATE(483)] = 18577, + [SMALL_STATE(484)] = 18619, + [SMALL_STATE(485)] = 18661, + [SMALL_STATE(486)] = 18703, + [SMALL_STATE(487)] = 18745, + [SMALL_STATE(488)] = 18787, + [SMALL_STATE(489)] = 18829, + [SMALL_STATE(490)] = 18871, + [SMALL_STATE(491)] = 18913, + [SMALL_STATE(492)] = 18955, + [SMALL_STATE(493)] = 19027, + [SMALL_STATE(494)] = 19069, + [SMALL_STATE(495)] = 19111, + [SMALL_STATE(496)] = 19153, + [SMALL_STATE(497)] = 19194, + [SMALL_STATE(498)] = 19235, + [SMALL_STATE(499)] = 19276, + [SMALL_STATE(500)] = 19355, + [SMALL_STATE(501)] = 19396, + [SMALL_STATE(502)] = 19437, + [SMALL_STATE(503)] = 19478, + [SMALL_STATE(504)] = 19519, + [SMALL_STATE(505)] = 19560, + [SMALL_STATE(506)] = 19601, + [SMALL_STATE(507)] = 19642, + [SMALL_STATE(508)] = 19683, + [SMALL_STATE(509)] = 19724, + [SMALL_STATE(510)] = 19765, + [SMALL_STATE(511)] = 19806, + [SMALL_STATE(512)] = 19847, + [SMALL_STATE(513)] = 19888, + [SMALL_STATE(514)] = 19929, + [SMALL_STATE(515)] = 19970, + [SMALL_STATE(516)] = 20019, + [SMALL_STATE(517)] = 20060, + [SMALL_STATE(518)] = 20101, + [SMALL_STATE(519)] = 20142, + [SMALL_STATE(520)] = 20183, + [SMALL_STATE(521)] = 20224, + [SMALL_STATE(522)] = 20265, + [SMALL_STATE(523)] = 20306, + [SMALL_STATE(524)] = 20347, + [SMALL_STATE(525)] = 20388, + [SMALL_STATE(526)] = 20429, + [SMALL_STATE(527)] = 20470, + [SMALL_STATE(528)] = 20511, + [SMALL_STATE(529)] = 20552, + [SMALL_STATE(530)] = 20593, + [SMALL_STATE(531)] = 20634, + [SMALL_STATE(532)] = 20675, + [SMALL_STATE(533)] = 20716, + [SMALL_STATE(534)] = 20757, + [SMALL_STATE(535)] = 20798, + [SMALL_STATE(536)] = 20839, + [SMALL_STATE(537)] = 20880, + [SMALL_STATE(538)] = 20921, + [SMALL_STATE(539)] = 20962, + [SMALL_STATE(540)] = 21003, + [SMALL_STATE(541)] = 21044, + [SMALL_STATE(542)] = 21085, + [SMALL_STATE(543)] = 21164, + [SMALL_STATE(544)] = 21205, + [SMALL_STATE(545)] = 21284, + [SMALL_STATE(546)] = 21325, + [SMALL_STATE(547)] = 21366, + [SMALL_STATE(548)] = 21407, + [SMALL_STATE(549)] = 21448, + [SMALL_STATE(550)] = 21489, + [SMALL_STATE(551)] = 21530, + [SMALL_STATE(552)] = 21609, + [SMALL_STATE(553)] = 21650, + [SMALL_STATE(554)] = 21691, + [SMALL_STATE(555)] = 21732, + [SMALL_STATE(556)] = 21773, + [SMALL_STATE(557)] = 21814, + [SMALL_STATE(558)] = 21855, + [SMALL_STATE(559)] = 21896, + [SMALL_STATE(560)] = 21937, + [SMALL_STATE(561)] = 21978, + [SMALL_STATE(562)] = 22019, + [SMALL_STATE(563)] = 22060, + [SMALL_STATE(564)] = 22101, + [SMALL_STATE(565)] = 22142, + [SMALL_STATE(566)] = 22183, + [SMALL_STATE(567)] = 22224, + [SMALL_STATE(568)] = 22265, + [SMALL_STATE(569)] = 22306, + [SMALL_STATE(570)] = 22347, + [SMALL_STATE(571)] = 22388, + [SMALL_STATE(572)] = 22429, + [SMALL_STATE(573)] = 22470, + [SMALL_STATE(574)] = 22511, + [SMALL_STATE(575)] = 22552, + [SMALL_STATE(576)] = 22593, + [SMALL_STATE(577)] = 22634, + [SMALL_STATE(578)] = 22675, + [SMALL_STATE(579)] = 22720, + [SMALL_STATE(580)] = 22761, + [SMALL_STATE(581)] = 22802, + [SMALL_STATE(582)] = 22868, + [SMALL_STATE(583)] = 22934, + [SMALL_STATE(584)] = 23000, + [SMALL_STATE(585)] = 23042, + [SMALL_STATE(586)] = 23108, + [SMALL_STATE(587)] = 23174, + [SMALL_STATE(588)] = 23250, + [SMALL_STATE(589)] = 23316, + [SMALL_STATE(590)] = 23362, + [SMALL_STATE(591)] = 23428, + [SMALL_STATE(592)] = 23504, + [SMALL_STATE(593)] = 23580, + [SMALL_STATE(594)] = 23622, + [SMALL_STATE(595)] = 23664, + [SMALL_STATE(596)] = 23730, + [SMALL_STATE(597)] = 23796, + [SMALL_STATE(598)] = 23872, + [SMALL_STATE(599)] = 23948, + [SMALL_STATE(600)] = 23990, + [SMALL_STATE(601)] = 24066, + [SMALL_STATE(602)] = 24132, + [SMALL_STATE(603)] = 24175, + [SMALL_STATE(604)] = 24238, + [SMALL_STATE(605)] = 24311, + [SMALL_STATE(606)] = 24374, + [SMALL_STATE(607)] = 24437, + [SMALL_STATE(608)] = 24500, + [SMALL_STATE(609)] = 24573, + [SMALL_STATE(610)] = 24636, + [SMALL_STATE(611)] = 24709, + [SMALL_STATE(612)] = 24782, + [SMALL_STATE(613)] = 24845, + [SMALL_STATE(614)] = 24908, + [SMALL_STATE(615)] = 24971, + [SMALL_STATE(616)] = 25044, + [SMALL_STATE(617)] = 25117, + [SMALL_STATE(618)] = 25180, + [SMALL_STATE(619)] = 25253, + [SMALL_STATE(620)] = 25326, + [SMALL_STATE(621)] = 25399, + [SMALL_STATE(622)] = 25462, + [SMALL_STATE(623)] = 25525, + [SMALL_STATE(624)] = 25598, + [SMALL_STATE(625)] = 25661, + [SMALL_STATE(626)] = 25724, + [SMALL_STATE(627)] = 25797, + [SMALL_STATE(628)] = 25860, + [SMALL_STATE(629)] = 25923, + [SMALL_STATE(630)] = 25994, + [SMALL_STATE(631)] = 26065, + [SMALL_STATE(632)] = 26136, + [SMALL_STATE(633)] = 26199, + [SMALL_STATE(634)] = 26238, + [SMALL_STATE(635)] = 26301, + [SMALL_STATE(636)] = 26374, + [SMALL_STATE(637)] = 26437, + [SMALL_STATE(638)] = 26508, + [SMALL_STATE(639)] = 26547, + [SMALL_STATE(640)] = 26618, + [SMALL_STATE(641)] = 26681, + [SMALL_STATE(642)] = 26754, + [SMALL_STATE(643)] = 26827, + [SMALL_STATE(644)] = 26866, + [SMALL_STATE(645)] = 26929, + [SMALL_STATE(646)] = 26968, + [SMALL_STATE(647)] = 27009, + [SMALL_STATE(648)] = 27072, + [SMALL_STATE(649)] = 27135, + [SMALL_STATE(650)] = 27198, + [SMALL_STATE(651)] = 27261, + [SMALL_STATE(652)] = 27324, + [SMALL_STATE(653)] = 27387, + [SMALL_STATE(654)] = 27450, + [SMALL_STATE(655)] = 27523, + [SMALL_STATE(656)] = 27586, + [SMALL_STATE(657)] = 27649, + [SMALL_STATE(658)] = 27722, + [SMALL_STATE(659)] = 27795, + [SMALL_STATE(660)] = 27866, + [SMALL_STATE(661)] = 27929, + [SMALL_STATE(662)] = 28000, + [SMALL_STATE(663)] = 28073, + [SMALL_STATE(664)] = 28136, + [SMALL_STATE(665)] = 28199, + [SMALL_STATE(666)] = 28270, + [SMALL_STATE(667)] = 28333, + [SMALL_STATE(668)] = 28406, + [SMALL_STATE(669)] = 28447, + [SMALL_STATE(670)] = 28520, + [SMALL_STATE(671)] = 28583, + [SMALL_STATE(672)] = 28656, + [SMALL_STATE(673)] = 28695, + [SMALL_STATE(674)] = 28734, + [SMALL_STATE(675)] = 28805, + [SMALL_STATE(676)] = 28844, + [SMALL_STATE(677)] = 28907, + [SMALL_STATE(678)] = 28980, + [SMALL_STATE(679)] = 29053, + [SMALL_STATE(680)] = 29116, + [SMALL_STATE(681)] = 29155, + [SMALL_STATE(682)] = 29228, + [SMALL_STATE(683)] = 29269, + [SMALL_STATE(684)] = 29342, + [SMALL_STATE(685)] = 29415, + [SMALL_STATE(686)] = 29478, + [SMALL_STATE(687)] = 29517, + [SMALL_STATE(688)] = 29590, + [SMALL_STATE(689)] = 29663, + [SMALL_STATE(690)] = 29726, + [SMALL_STATE(691)] = 29789, + [SMALL_STATE(692)] = 29862, + [SMALL_STATE(693)] = 29925, + [SMALL_STATE(694)] = 29968, + [SMALL_STATE(695)] = 30041, + [SMALL_STATE(696)] = 30112, + [SMALL_STATE(697)] = 30153, + [SMALL_STATE(698)] = 30216, + [SMALL_STATE(699)] = 30287, + [SMALL_STATE(700)] = 30360, + [SMALL_STATE(701)] = 30399, + [SMALL_STATE(702)] = 30442, + [SMALL_STATE(703)] = 30505, + [SMALL_STATE(704)] = 30568, + [SMALL_STATE(705)] = 30611, + [SMALL_STATE(706)] = 30650, + [SMALL_STATE(707)] = 30713, + [SMALL_STATE(708)] = 30752, + [SMALL_STATE(709)] = 30795, + [SMALL_STATE(710)] = 30868, + [SMALL_STATE(711)] = 30938, + [SMALL_STATE(712)] = 31006, + [SMALL_STATE(713)] = 31046, + [SMALL_STATE(714)] = 31098, + [SMALL_STATE(715)] = 31164, + [SMALL_STATE(716)] = 31228, + [SMALL_STATE(717)] = 31286, + [SMALL_STATE(718)] = 31340, + [SMALL_STATE(719)] = 31396, + [SMALL_STATE(720)] = 31446, + [SMALL_STATE(721)] = 31506, + [SMALL_STATE(722)] = 31546, + [SMALL_STATE(723)] = 31594, + [SMALL_STATE(724)] = 31662, + [SMALL_STATE(725)] = 31702, + [SMALL_STATE(726)] = 31742, + [SMALL_STATE(727)] = 31812, + [SMALL_STATE(728)] = 31860, + [SMALL_STATE(729)] = 31898, + [SMALL_STATE(730)] = 31946, + [SMALL_STATE(731)] = 32016, + [SMALL_STATE(732)] = 32054, + [SMALL_STATE(733)] = 32094, + [SMALL_STATE(734)] = 32164, + [SMALL_STATE(735)] = 32234, + [SMALL_STATE(736)] = 32272, + [SMALL_STATE(737)] = 32310, + [SMALL_STATE(738)] = 32380, + [SMALL_STATE(739)] = 32450, + [SMALL_STATE(740)] = 32520, + [SMALL_STATE(741)] = 32590, + [SMALL_STATE(742)] = 32658, + [SMALL_STATE(743)] = 32728, + [SMALL_STATE(744)] = 32798, + [SMALL_STATE(745)] = 32836, + [SMALL_STATE(746)] = 32874, + [SMALL_STATE(747)] = 32912, + [SMALL_STATE(748)] = 32950, + [SMALL_STATE(749)] = 33020, + [SMALL_STATE(750)] = 33090, + [SMALL_STATE(751)] = 33160, + [SMALL_STATE(752)] = 33230, + [SMALL_STATE(753)] = 33298, + [SMALL_STATE(754)] = 33350, + [SMALL_STATE(755)] = 33420, + [SMALL_STATE(756)] = 33488, + [SMALL_STATE(757)] = 33558, + [SMALL_STATE(758)] = 33626, + [SMALL_STATE(759)] = 33694, + [SMALL_STATE(760)] = 33760, + [SMALL_STATE(761)] = 33828, + [SMALL_STATE(762)] = 33898, + [SMALL_STATE(763)] = 33962, + [SMALL_STATE(764)] = 34020, + [SMALL_STATE(765)] = 34068, + [SMALL_STATE(766)] = 34138, + [SMALL_STATE(767)] = 34198, + [SMALL_STATE(768)] = 34268, + [SMALL_STATE(769)] = 34322, + [SMALL_STATE(770)] = 34392, + [SMALL_STATE(771)] = 34462, + [SMALL_STATE(772)] = 34532, + [SMALL_STATE(773)] = 34602, + [SMALL_STATE(774)] = 34672, + [SMALL_STATE(775)] = 34728, + [SMALL_STATE(776)] = 34766, + [SMALL_STATE(777)] = 34816, + [SMALL_STATE(778)] = 34886, + [SMALL_STATE(779)] = 34956, + [SMALL_STATE(780)] = 35026, + [SMALL_STATE(781)] = 35096, + [SMALL_STATE(782)] = 35166, + [SMALL_STATE(783)] = 35236, + [SMALL_STATE(784)] = 35273, + [SMALL_STATE(785)] = 35310, + [SMALL_STATE(786)] = 35347, + [SMALL_STATE(787)] = 35384, + [SMALL_STATE(788)] = 35421, + [SMALL_STATE(789)] = 35458, + [SMALL_STATE(790)] = 35495, + [SMALL_STATE(791)] = 35532, + [SMALL_STATE(792)] = 35569, + [SMALL_STATE(793)] = 35606, + [SMALL_STATE(794)] = 35643, + [SMALL_STATE(795)] = 35680, + [SMALL_STATE(796)] = 35717, + [SMALL_STATE(797)] = 35754, + [SMALL_STATE(798)] = 35791, + [SMALL_STATE(799)] = 35828, + [SMALL_STATE(800)] = 35865, + [SMALL_STATE(801)] = 35902, + [SMALL_STATE(802)] = 35939, + [SMALL_STATE(803)] = 35976, + [SMALL_STATE(804)] = 36013, + [SMALL_STATE(805)] = 36050, + [SMALL_STATE(806)] = 36087, + [SMALL_STATE(807)] = 36124, + [SMALL_STATE(808)] = 36161, + [SMALL_STATE(809)] = 36198, + [SMALL_STATE(810)] = 36253, + [SMALL_STATE(811)] = 36290, + [SMALL_STATE(812)] = 36327, + [SMALL_STATE(813)] = 36364, + [SMALL_STATE(814)] = 36401, + [SMALL_STATE(815)] = 36438, + [SMALL_STATE(816)] = 36475, + [SMALL_STATE(817)] = 36512, + [SMALL_STATE(818)] = 36549, + [SMALL_STATE(819)] = 36586, + [SMALL_STATE(820)] = 36623, + [SMALL_STATE(821)] = 36660, + [SMALL_STATE(822)] = 36697, + [SMALL_STATE(823)] = 36734, + [SMALL_STATE(824)] = 36771, + [SMALL_STATE(825)] = 36808, + [SMALL_STATE(826)] = 36845, + [SMALL_STATE(827)] = 36882, + [SMALL_STATE(828)] = 36919, + [SMALL_STATE(829)] = 36956, + [SMALL_STATE(830)] = 36993, + [SMALL_STATE(831)] = 37045, + [SMALL_STATE(832)] = 37097, + [SMALL_STATE(833)] = 37146, + [SMALL_STATE(834)] = 37195, + [SMALL_STATE(835)] = 37244, + [SMALL_STATE(836)] = 37293, + [SMALL_STATE(837)] = 37342, + [SMALL_STATE(838)] = 37379, + [SMALL_STATE(839)] = 37410, + [SMALL_STATE(840)] = 37452, + [SMALL_STATE(841)] = 37491, + [SMALL_STATE(842)] = 37530, + [SMALL_STATE(843)] = 37569, + [SMALL_STATE(844)] = 37608, + [SMALL_STATE(845)] = 37647, + [SMALL_STATE(846)] = 37686, + [SMALL_STATE(847)] = 37725, + [SMALL_STATE(848)] = 37764, + [SMALL_STATE(849)] = 37803, + [SMALL_STATE(850)] = 37842, + [SMALL_STATE(851)] = 37881, + [SMALL_STATE(852)] = 37917, + [SMALL_STATE(853)] = 37953, + [SMALL_STATE(854)] = 37979, + [SMALL_STATE(855)] = 38005, + [SMALL_STATE(856)] = 38031, + [SMALL_STATE(857)] = 38057, + [SMALL_STATE(858)] = 38092, + [SMALL_STATE(859)] = 38116, + [SMALL_STATE(860)] = 38138, + [SMALL_STATE(861)] = 38162, + [SMALL_STATE(862)] = 38186, + [SMALL_STATE(863)] = 38210, + [SMALL_STATE(864)] = 38232, + [SMALL_STATE(865)] = 38254, + [SMALL_STATE(866)] = 38276, + [SMALL_STATE(867)] = 38295, + [SMALL_STATE(868)] = 38314, + [SMALL_STATE(869)] = 38333, + [SMALL_STATE(870)] = 38352, + [SMALL_STATE(871)] = 38381, + [SMALL_STATE(872)] = 38399, + [SMALL_STATE(873)] = 38417, + [SMALL_STATE(874)] = 38435, + [SMALL_STATE(875)] = 38461, + [SMALL_STATE(876)] = 38501, + [SMALL_STATE(877)] = 38541, + [SMALL_STATE(878)] = 38560, + [SMALL_STATE(879)] = 38579, + [SMALL_STATE(880)] = 38596, + [SMALL_STATE(881)] = 38617, + [SMALL_STATE(882)] = 38636, + [SMALL_STATE(883)] = 38655, + [SMALL_STATE(884)] = 38686, + [SMALL_STATE(885)] = 38703, + [SMALL_STATE(886)] = 38720, + [SMALL_STATE(887)] = 38741, + [SMALL_STATE(888)] = 38758, + [SMALL_STATE(889)] = 38779, + [SMALL_STATE(890)] = 38800, + [SMALL_STATE(891)] = 38831, + [SMALL_STATE(892)] = 38847, + [SMALL_STATE(893)] = 38863, + [SMALL_STATE(894)] = 38891, + [SMALL_STATE(895)] = 38923, + [SMALL_STATE(896)] = 38955, + [SMALL_STATE(897)] = 38987, + [SMALL_STATE(898)] = 39007, + [SMALL_STATE(899)] = 39023, + [SMALL_STATE(900)] = 39039, + [SMALL_STATE(901)] = 39063, + [SMALL_STATE(902)] = 39079, + [SMALL_STATE(903)] = 39099, + [SMALL_STATE(904)] = 39115, + [SMALL_STATE(905)] = 39143, + [SMALL_STATE(906)] = 39159, + [SMALL_STATE(907)] = 39175, + [SMALL_STATE(908)] = 39191, + [SMALL_STATE(909)] = 39207, + [SMALL_STATE(910)] = 39223, + [SMALL_STATE(911)] = 39239, + [SMALL_STATE(912)] = 39255, + [SMALL_STATE(913)] = 39287, + [SMALL_STATE(914)] = 39315, + [SMALL_STATE(915)] = 39343, + [SMALL_STATE(916)] = 39359, + [SMALL_STATE(917)] = 39374, + [SMALL_STATE(918)] = 39401, + [SMALL_STATE(919)] = 39430, + [SMALL_STATE(920)] = 39459, + [SMALL_STATE(921)] = 39474, + [SMALL_STATE(922)] = 39489, + [SMALL_STATE(923)] = 39518, + [SMALL_STATE(924)] = 39533, + [SMALL_STATE(925)] = 39548, + [SMALL_STATE(926)] = 39563, + [SMALL_STATE(927)] = 39578, + [SMALL_STATE(928)] = 39593, + [SMALL_STATE(929)] = 39622, + [SMALL_STATE(930)] = 39637, + [SMALL_STATE(931)] = 39652, + [SMALL_STATE(932)] = 39667, + [SMALL_STATE(933)] = 39682, + [SMALL_STATE(934)] = 39711, + [SMALL_STATE(935)] = 39736, + [SMALL_STATE(936)] = 39751, + [SMALL_STATE(937)] = 39780, + [SMALL_STATE(938)] = 39795, + [SMALL_STATE(939)] = 39810, + [SMALL_STATE(940)] = 39825, + [SMALL_STATE(941)] = 39840, + [SMALL_STATE(942)] = 39855, + [SMALL_STATE(943)] = 39870, + [SMALL_STATE(944)] = 39885, + [SMALL_STATE(945)] = 39908, + [SMALL_STATE(946)] = 39937, + [SMALL_STATE(947)] = 39952, + [SMALL_STATE(948)] = 39967, + [SMALL_STATE(949)] = 39982, + [SMALL_STATE(950)] = 40011, + [SMALL_STATE(951)] = 40040, + [SMALL_STATE(952)] = 40055, + [SMALL_STATE(953)] = 40070, + [SMALL_STATE(954)] = 40085, + [SMALL_STATE(955)] = 40100, + [SMALL_STATE(956)] = 40115, + [SMALL_STATE(957)] = 40130, + [SMALL_STATE(958)] = 40145, + [SMALL_STATE(959)] = 40171, + [SMALL_STATE(960)] = 40189, + [SMALL_STATE(961)] = 40215, + [SMALL_STATE(962)] = 40241, + [SMALL_STATE(963)] = 40267, + [SMALL_STATE(964)] = 40293, + [SMALL_STATE(965)] = 40315, + [SMALL_STATE(966)] = 40333, + [SMALL_STATE(967)] = 40359, + [SMALL_STATE(968)] = 40377, + [SMALL_STATE(969)] = 40403, + [SMALL_STATE(970)] = 40429, + [SMALL_STATE(971)] = 40447, + [SMALL_STATE(972)] = 40473, + [SMALL_STATE(973)] = 40499, + [SMALL_STATE(974)] = 40518, + [SMALL_STATE(975)] = 40539, + [SMALL_STATE(976)] = 40564, + [SMALL_STATE(977)] = 40587, + [SMALL_STATE(978)] = 40612, + [SMALL_STATE(979)] = 40635, + [SMALL_STATE(980)] = 40658, + [SMALL_STATE(981)] = 40681, + [SMALL_STATE(982)] = 40706, + [SMALL_STATE(983)] = 40727, + [SMALL_STATE(984)] = 40750, + [SMALL_STATE(985)] = 40775, + [SMALL_STATE(986)] = 40796, + [SMALL_STATE(987)] = 40819, + [SMALL_STATE(988)] = 40842, + [SMALL_STATE(989)] = 40860, + [SMALL_STATE(990)] = 40872, + [SMALL_STATE(991)] = 40892, + [SMALL_STATE(992)] = 40914, + [SMALL_STATE(993)] = 40932, + [SMALL_STATE(994)] = 40954, + [SMALL_STATE(995)] = 40974, + [SMALL_STATE(996)] = 40994, + [SMALL_STATE(997)] = 41010, + [SMALL_STATE(998)] = 41030, + [SMALL_STATE(999)] = 41050, + [SMALL_STATE(1000)] = 41070, + [SMALL_STATE(1001)] = 41090, + [SMALL_STATE(1002)] = 41112, + [SMALL_STATE(1003)] = 41124, + [SMALL_STATE(1004)] = 41144, + [SMALL_STATE(1005)] = 41162, + [SMALL_STATE(1006)] = 41182, + [SMALL_STATE(1007)] = 41202, + [SMALL_STATE(1008)] = 41214, + [SMALL_STATE(1009)] = 41226, + [SMALL_STATE(1010)] = 41243, + [SMALL_STATE(1011)] = 41258, + [SMALL_STATE(1012)] = 41277, + [SMALL_STATE(1013)] = 41288, + [SMALL_STATE(1014)] = 41299, + [SMALL_STATE(1015)] = 41318, + [SMALL_STATE(1016)] = 41329, + [SMALL_STATE(1017)] = 41340, + [SMALL_STATE(1018)] = 41351, + [SMALL_STATE(1019)] = 41370, + [SMALL_STATE(1020)] = 41389, + [SMALL_STATE(1021)] = 41406, + [SMALL_STATE(1022)] = 41421, + [SMALL_STATE(1023)] = 41432, + [SMALL_STATE(1024)] = 41443, + [SMALL_STATE(1025)] = 41454, + [SMALL_STATE(1026)] = 41469, + [SMALL_STATE(1027)] = 41488, + [SMALL_STATE(1028)] = 41507, + [SMALL_STATE(1029)] = 41526, + [SMALL_STATE(1030)] = 41543, + [SMALL_STATE(1031)] = 41554, + [SMALL_STATE(1032)] = 41565, + [SMALL_STATE(1033)] = 41576, + [SMALL_STATE(1034)] = 41593, + [SMALL_STATE(1035)] = 41604, + [SMALL_STATE(1036)] = 41619, + [SMALL_STATE(1037)] = 41638, + [SMALL_STATE(1038)] = 41653, + [SMALL_STATE(1039)] = 41672, + [SMALL_STATE(1040)] = 41691, + [SMALL_STATE(1041)] = 41702, + [SMALL_STATE(1042)] = 41719, + [SMALL_STATE(1043)] = 41734, + [SMALL_STATE(1044)] = 41745, + [SMALL_STATE(1045)] = 41756, + [SMALL_STATE(1046)] = 41771, + [SMALL_STATE(1047)] = 41782, + [SMALL_STATE(1048)] = 41799, + [SMALL_STATE(1049)] = 41818, + [SMALL_STATE(1050)] = 41835, + [SMALL_STATE(1051)] = 41852, + [SMALL_STATE(1052)] = 41869, + [SMALL_STATE(1053)] = 41880, + [SMALL_STATE(1054)] = 41897, + [SMALL_STATE(1055)] = 41916, + [SMALL_STATE(1056)] = 41927, + [SMALL_STATE(1057)] = 41946, + [SMALL_STATE(1058)] = 41963, + [SMALL_STATE(1059)] = 41974, + [SMALL_STATE(1060)] = 41993, + [SMALL_STATE(1061)] = 42012, + [SMALL_STATE(1062)] = 42028, + [SMALL_STATE(1063)] = 42044, + [SMALL_STATE(1064)] = 42056, + [SMALL_STATE(1065)] = 42072, + [SMALL_STATE(1066)] = 42088, + [SMALL_STATE(1067)] = 42104, + [SMALL_STATE(1068)] = 42120, + [SMALL_STATE(1069)] = 42136, + [SMALL_STATE(1070)] = 42150, + [SMALL_STATE(1071)] = 42166, + [SMALL_STATE(1072)] = 42182, + [SMALL_STATE(1073)] = 42198, + [SMALL_STATE(1074)] = 42210, + [SMALL_STATE(1075)] = 42226, + [SMALL_STATE(1076)] = 42240, + [SMALL_STATE(1077)] = 42256, + [SMALL_STATE(1078)] = 42272, + [SMALL_STATE(1079)] = 42288, + [SMALL_STATE(1080)] = 42304, + [SMALL_STATE(1081)] = 42318, + [SMALL_STATE(1082)] = 42334, + [SMALL_STATE(1083)] = 42350, + [SMALL_STATE(1084)] = 42366, + [SMALL_STATE(1085)] = 42382, + [SMALL_STATE(1086)] = 42398, + [SMALL_STATE(1087)] = 42412, + [SMALL_STATE(1088)] = 42428, + [SMALL_STATE(1089)] = 42444, + [SMALL_STATE(1090)] = 42460, + [SMALL_STATE(1091)] = 42476, + [SMALL_STATE(1092)] = 42492, + [SMALL_STATE(1093)] = 42508, + [SMALL_STATE(1094)] = 42524, + [SMALL_STATE(1095)] = 42540, + [SMALL_STATE(1096)] = 42556, + [SMALL_STATE(1097)] = 42572, + [SMALL_STATE(1098)] = 42588, + [SMALL_STATE(1099)] = 42604, + [SMALL_STATE(1100)] = 42620, + [SMALL_STATE(1101)] = 42636, + [SMALL_STATE(1102)] = 42652, + [SMALL_STATE(1103)] = 42668, + [SMALL_STATE(1104)] = 42684, + [SMALL_STATE(1105)] = 42700, + [SMALL_STATE(1106)] = 42716, + [SMALL_STATE(1107)] = 42732, + [SMALL_STATE(1108)] = 42748, + [SMALL_STATE(1109)] = 42764, + [SMALL_STATE(1110)] = 42780, + [SMALL_STATE(1111)] = 42796, + [SMALL_STATE(1112)] = 42812, + [SMALL_STATE(1113)] = 42826, + [SMALL_STATE(1114)] = 42842, + [SMALL_STATE(1115)] = 42856, + [SMALL_STATE(1116)] = 42872, + [SMALL_STATE(1117)] = 42888, + [SMALL_STATE(1118)] = 42902, + [SMALL_STATE(1119)] = 42916, + [SMALL_STATE(1120)] = 42930, + [SMALL_STATE(1121)] = 42944, + [SMALL_STATE(1122)] = 42958, + [SMALL_STATE(1123)] = 42972, + [SMALL_STATE(1124)] = 42988, + [SMALL_STATE(1125)] = 43004, + [SMALL_STATE(1126)] = 43018, + [SMALL_STATE(1127)] = 43034, + [SMALL_STATE(1128)] = 43046, + [SMALL_STATE(1129)] = 43062, + [SMALL_STATE(1130)] = 43078, + [SMALL_STATE(1131)] = 43094, + [SMALL_STATE(1132)] = 43110, + [SMALL_STATE(1133)] = 43126, + [SMALL_STATE(1134)] = 43142, + [SMALL_STATE(1135)] = 43158, + [SMALL_STATE(1136)] = 43174, + [SMALL_STATE(1137)] = 43190, + [SMALL_STATE(1138)] = 43206, + [SMALL_STATE(1139)] = 43220, + [SMALL_STATE(1140)] = 43236, + [SMALL_STATE(1141)] = 43252, + [SMALL_STATE(1142)] = 43268, + [SMALL_STATE(1143)] = 43284, + [SMALL_STATE(1144)] = 43300, + [SMALL_STATE(1145)] = 43314, + [SMALL_STATE(1146)] = 43330, + [SMALL_STATE(1147)] = 43346, + [SMALL_STATE(1148)] = 43360, + [SMALL_STATE(1149)] = 43372, + [SMALL_STATE(1150)] = 43388, + [SMALL_STATE(1151)] = 43402, + [SMALL_STATE(1152)] = 43418, + [SMALL_STATE(1153)] = 43432, + [SMALL_STATE(1154)] = 43444, + [SMALL_STATE(1155)] = 43460, + [SMALL_STATE(1156)] = 43476, + [SMALL_STATE(1157)] = 43492, + [SMALL_STATE(1158)] = 43504, + [SMALL_STATE(1159)] = 43520, + [SMALL_STATE(1160)] = 43533, + [SMALL_STATE(1161)] = 43542, + [SMALL_STATE(1162)] = 43553, + [SMALL_STATE(1163)] = 43564, + [SMALL_STATE(1164)] = 43577, + [SMALL_STATE(1165)] = 43586, + [SMALL_STATE(1166)] = 43599, + [SMALL_STATE(1167)] = 43612, + [SMALL_STATE(1168)] = 43625, + [SMALL_STATE(1169)] = 43638, + [SMALL_STATE(1170)] = 43651, + [SMALL_STATE(1171)] = 43660, + [SMALL_STATE(1172)] = 43669, + [SMALL_STATE(1173)] = 43682, + [SMALL_STATE(1174)] = 43695, + [SMALL_STATE(1175)] = 43704, + [SMALL_STATE(1176)] = 43713, + [SMALL_STATE(1177)] = 43724, + [SMALL_STATE(1178)] = 43733, + [SMALL_STATE(1179)] = 43742, + [SMALL_STATE(1180)] = 43751, + [SMALL_STATE(1181)] = 43760, + [SMALL_STATE(1182)] = 43769, + [SMALL_STATE(1183)] = 43778, + [SMALL_STATE(1184)] = 43791, + [SMALL_STATE(1185)] = 43802, + [SMALL_STATE(1186)] = 43811, + [SMALL_STATE(1187)] = 43820, + [SMALL_STATE(1188)] = 43833, + [SMALL_STATE(1189)] = 43844, + [SMALL_STATE(1190)] = 43853, + [SMALL_STATE(1191)] = 43866, + [SMALL_STATE(1192)] = 43879, + [SMALL_STATE(1193)] = 43892, + [SMALL_STATE(1194)] = 43901, + [SMALL_STATE(1195)] = 43914, + [SMALL_STATE(1196)] = 43925, + [SMALL_STATE(1197)] = 43938, + [SMALL_STATE(1198)] = 43947, + [SMALL_STATE(1199)] = 43956, + [SMALL_STATE(1200)] = 43967, + [SMALL_STATE(1201)] = 43978, + [SMALL_STATE(1202)] = 43991, + [SMALL_STATE(1203)] = 44002, + [SMALL_STATE(1204)] = 44015, + [SMALL_STATE(1205)] = 44028, + [SMALL_STATE(1206)] = 44037, + [SMALL_STATE(1207)] = 44050, + [SMALL_STATE(1208)] = 44063, + [SMALL_STATE(1209)] = 44076, + [SMALL_STATE(1210)] = 44089, + [SMALL_STATE(1211)] = 44098, + [SMALL_STATE(1212)] = 44107, + [SMALL_STATE(1213)] = 44120, + [SMALL_STATE(1214)] = 44129, + [SMALL_STATE(1215)] = 44140, + [SMALL_STATE(1216)] = 44153, + [SMALL_STATE(1217)] = 44162, + [SMALL_STATE(1218)] = 44175, + [SMALL_STATE(1219)] = 44188, + [SMALL_STATE(1220)] = 44201, + [SMALL_STATE(1221)] = 44214, + [SMALL_STATE(1222)] = 44223, + [SMALL_STATE(1223)] = 44236, + [SMALL_STATE(1224)] = 44247, + [SMALL_STATE(1225)] = 44258, + [SMALL_STATE(1226)] = 44271, + [SMALL_STATE(1227)] = 44284, + [SMALL_STATE(1228)] = 44297, + [SMALL_STATE(1229)] = 44310, + [SMALL_STATE(1230)] = 44323, + [SMALL_STATE(1231)] = 44336, + [SMALL_STATE(1232)] = 44349, + [SMALL_STATE(1233)] = 44362, + [SMALL_STATE(1234)] = 44375, + [SMALL_STATE(1235)] = 44388, + [SMALL_STATE(1236)] = 44399, + [SMALL_STATE(1237)] = 44412, + [SMALL_STATE(1238)] = 44425, + [SMALL_STATE(1239)] = 44438, + [SMALL_STATE(1240)] = 44451, + [SMALL_STATE(1241)] = 44464, + [SMALL_STATE(1242)] = 44477, + [SMALL_STATE(1243)] = 44490, + [SMALL_STATE(1244)] = 44503, + [SMALL_STATE(1245)] = 44516, + [SMALL_STATE(1246)] = 44529, + [SMALL_STATE(1247)] = 44538, + [SMALL_STATE(1248)] = 44551, + [SMALL_STATE(1249)] = 44564, + [SMALL_STATE(1250)] = 44577, + [SMALL_STATE(1251)] = 44588, + [SMALL_STATE(1252)] = 44601, + [SMALL_STATE(1253)] = 44610, + [SMALL_STATE(1254)] = 44619, + [SMALL_STATE(1255)] = 44632, + [SMALL_STATE(1256)] = 44645, + [SMALL_STATE(1257)] = 44656, + [SMALL_STATE(1258)] = 44669, + [SMALL_STATE(1259)] = 44678, + [SMALL_STATE(1260)] = 44687, + [SMALL_STATE(1261)] = 44700, + [SMALL_STATE(1262)] = 44709, + [SMALL_STATE(1263)] = 44722, + [SMALL_STATE(1264)] = 44735, + [SMALL_STATE(1265)] = 44748, + [SMALL_STATE(1266)] = 44761, + [SMALL_STATE(1267)] = 44774, + [SMALL_STATE(1268)] = 44785, + [SMALL_STATE(1269)] = 44798, + [SMALL_STATE(1270)] = 44811, + [SMALL_STATE(1271)] = 44824, + [SMALL_STATE(1272)] = 44833, + [SMALL_STATE(1273)] = 44846, + [SMALL_STATE(1274)] = 44859, + [SMALL_STATE(1275)] = 44872, + [SMALL_STATE(1276)] = 44881, + [SMALL_STATE(1277)] = 44890, + [SMALL_STATE(1278)] = 44901, + [SMALL_STATE(1279)] = 44912, + [SMALL_STATE(1280)] = 44921, + [SMALL_STATE(1281)] = 44934, + [SMALL_STATE(1282)] = 44947, + [SMALL_STATE(1283)] = 44960, + [SMALL_STATE(1284)] = 44969, + [SMALL_STATE(1285)] = 44978, + [SMALL_STATE(1286)] = 44987, + [SMALL_STATE(1287)] = 44996, + [SMALL_STATE(1288)] = 45005, + [SMALL_STATE(1289)] = 45018, + [SMALL_STATE(1290)] = 45031, + [SMALL_STATE(1291)] = 45044, + [SMALL_STATE(1292)] = 45057, + [SMALL_STATE(1293)] = 45066, + [SMALL_STATE(1294)] = 45075, + [SMALL_STATE(1295)] = 45088, + [SMALL_STATE(1296)] = 45101, + [SMALL_STATE(1297)] = 45114, + [SMALL_STATE(1298)] = 45127, + [SMALL_STATE(1299)] = 45140, + [SMALL_STATE(1300)] = 45153, + [SMALL_STATE(1301)] = 45166, + [SMALL_STATE(1302)] = 45179, + [SMALL_STATE(1303)] = 45192, + [SMALL_STATE(1304)] = 45201, + [SMALL_STATE(1305)] = 45214, + [SMALL_STATE(1306)] = 45227, + [SMALL_STATE(1307)] = 45240, + [SMALL_STATE(1308)] = 45249, + [SMALL_STATE(1309)] = 45262, + [SMALL_STATE(1310)] = 45275, + [SMALL_STATE(1311)] = 45288, + [SMALL_STATE(1312)] = 45297, + [SMALL_STATE(1313)] = 45310, + [SMALL_STATE(1314)] = 45323, + [SMALL_STATE(1315)] = 45336, + [SMALL_STATE(1316)] = 45349, + [SMALL_STATE(1317)] = 45362, + [SMALL_STATE(1318)] = 45375, + [SMALL_STATE(1319)] = 45388, + [SMALL_STATE(1320)] = 45401, + [SMALL_STATE(1321)] = 45414, + [SMALL_STATE(1322)] = 45427, + [SMALL_STATE(1323)] = 45440, + [SMALL_STATE(1324)] = 45449, + [SMALL_STATE(1325)] = 45462, + [SMALL_STATE(1326)] = 45475, + [SMALL_STATE(1327)] = 45488, + [SMALL_STATE(1328)] = 45501, + [SMALL_STATE(1329)] = 45514, + [SMALL_STATE(1330)] = 45527, + [SMALL_STATE(1331)] = 45540, + [SMALL_STATE(1332)] = 45553, + [SMALL_STATE(1333)] = 45564, + [SMALL_STATE(1334)] = 45577, + [SMALL_STATE(1335)] = 45586, + [SMALL_STATE(1336)] = 45599, + [SMALL_STATE(1337)] = 45612, + [SMALL_STATE(1338)] = 45625, + [SMALL_STATE(1339)] = 45638, + [SMALL_STATE(1340)] = 45651, + [SMALL_STATE(1341)] = 45660, + [SMALL_STATE(1342)] = 45669, + [SMALL_STATE(1343)] = 45682, + [SMALL_STATE(1344)] = 45695, + [SMALL_STATE(1345)] = 45704, + [SMALL_STATE(1346)] = 45717, + [SMALL_STATE(1347)] = 45730, + [SMALL_STATE(1348)] = 45743, + [SMALL_STATE(1349)] = 45754, + [SMALL_STATE(1350)] = 45767, + [SMALL_STATE(1351)] = 45780, + [SMALL_STATE(1352)] = 45790, + [SMALL_STATE(1353)] = 45798, + [SMALL_STATE(1354)] = 45808, + [SMALL_STATE(1355)] = 45818, + [SMALL_STATE(1356)] = 45828, + [SMALL_STATE(1357)] = 45838, + [SMALL_STATE(1358)] = 45848, + [SMALL_STATE(1359)] = 45858, + [SMALL_STATE(1360)] = 45866, + [SMALL_STATE(1361)] = 45876, + [SMALL_STATE(1362)] = 45886, + [SMALL_STATE(1363)] = 45896, + [SMALL_STATE(1364)] = 45906, + [SMALL_STATE(1365)] = 45914, + [SMALL_STATE(1366)] = 45924, + [SMALL_STATE(1367)] = 45934, + [SMALL_STATE(1368)] = 45942, + [SMALL_STATE(1369)] = 45952, + [SMALL_STATE(1370)] = 45960, + [SMALL_STATE(1371)] = 45970, + [SMALL_STATE(1372)] = 45978, + [SMALL_STATE(1373)] = 45986, + [SMALL_STATE(1374)] = 45994, + [SMALL_STATE(1375)] = 46002, + [SMALL_STATE(1376)] = 46012, + [SMALL_STATE(1377)] = 46022, + [SMALL_STATE(1378)] = 46030, + [SMALL_STATE(1379)] = 46040, + [SMALL_STATE(1380)] = 46048, + [SMALL_STATE(1381)] = 46056, + [SMALL_STATE(1382)] = 46066, + [SMALL_STATE(1383)] = 46076, + [SMALL_STATE(1384)] = 46084, + [SMALL_STATE(1385)] = 46094, + [SMALL_STATE(1386)] = 46104, + [SMALL_STATE(1387)] = 46114, + [SMALL_STATE(1388)] = 46122, + [SMALL_STATE(1389)] = 46132, + [SMALL_STATE(1390)] = 46140, + [SMALL_STATE(1391)] = 46150, + [SMALL_STATE(1392)] = 46158, + [SMALL_STATE(1393)] = 46166, + [SMALL_STATE(1394)] = 46174, + [SMALL_STATE(1395)] = 46182, + [SMALL_STATE(1396)] = 46190, + [SMALL_STATE(1397)] = 46200, + [SMALL_STATE(1398)] = 46208, + [SMALL_STATE(1399)] = 46218, + [SMALL_STATE(1400)] = 46226, + [SMALL_STATE(1401)] = 46234, + [SMALL_STATE(1402)] = 46244, + [SMALL_STATE(1403)] = 46252, + [SMALL_STATE(1404)] = 46262, + [SMALL_STATE(1405)] = 46272, + [SMALL_STATE(1406)] = 46280, + [SMALL_STATE(1407)] = 46290, + [SMALL_STATE(1408)] = 46298, + [SMALL_STATE(1409)] = 46306, + [SMALL_STATE(1410)] = 46316, + [SMALL_STATE(1411)] = 46326, + [SMALL_STATE(1412)] = 46334, + [SMALL_STATE(1413)] = 46344, + [SMALL_STATE(1414)] = 46352, + [SMALL_STATE(1415)] = 46362, + [SMALL_STATE(1416)] = 46372, + [SMALL_STATE(1417)] = 46382, + [SMALL_STATE(1418)] = 46390, + [SMALL_STATE(1419)] = 46398, + [SMALL_STATE(1420)] = 46408, + [SMALL_STATE(1421)] = 46418, + [SMALL_STATE(1422)] = 46428, + [SMALL_STATE(1423)] = 46438, + [SMALL_STATE(1424)] = 46448, + [SMALL_STATE(1425)] = 46456, + [SMALL_STATE(1426)] = 46464, + [SMALL_STATE(1427)] = 46474, + [SMALL_STATE(1428)] = 46484, + [SMALL_STATE(1429)] = 46494, + [SMALL_STATE(1430)] = 46504, + [SMALL_STATE(1431)] = 46514, + [SMALL_STATE(1432)] = 46524, + [SMALL_STATE(1433)] = 46534, + [SMALL_STATE(1434)] = 46544, + [SMALL_STATE(1435)] = 46554, + [SMALL_STATE(1436)] = 46564, + [SMALL_STATE(1437)] = 46574, + [SMALL_STATE(1438)] = 46582, + [SMALL_STATE(1439)] = 46592, + [SMALL_STATE(1440)] = 46602, + [SMALL_STATE(1441)] = 46612, + [SMALL_STATE(1442)] = 46622, + [SMALL_STATE(1443)] = 46632, + [SMALL_STATE(1444)] = 46642, + [SMALL_STATE(1445)] = 46652, + [SMALL_STATE(1446)] = 46662, + [SMALL_STATE(1447)] = 46672, + [SMALL_STATE(1448)] = 46680, + [SMALL_STATE(1449)] = 46690, + [SMALL_STATE(1450)] = 46698, + [SMALL_STATE(1451)] = 46706, + [SMALL_STATE(1452)] = 46716, + [SMALL_STATE(1453)] = 46726, + [SMALL_STATE(1454)] = 46736, + [SMALL_STATE(1455)] = 46744, + [SMALL_STATE(1456)] = 46754, + [SMALL_STATE(1457)] = 46764, + [SMALL_STATE(1458)] = 46774, + [SMALL_STATE(1459)] = 46784, + [SMALL_STATE(1460)] = 46792, + [SMALL_STATE(1461)] = 46802, + [SMALL_STATE(1462)] = 46810, + [SMALL_STATE(1463)] = 46820, + [SMALL_STATE(1464)] = 46830, + [SMALL_STATE(1465)] = 46840, + [SMALL_STATE(1466)] = 46850, + [SMALL_STATE(1467)] = 46860, + [SMALL_STATE(1468)] = 46870, + [SMALL_STATE(1469)] = 46880, + [SMALL_STATE(1470)] = 46890, + [SMALL_STATE(1471)] = 46898, + [SMALL_STATE(1472)] = 46908, + [SMALL_STATE(1473)] = 46918, + [SMALL_STATE(1474)] = 46926, + [SMALL_STATE(1475)] = 46934, + [SMALL_STATE(1476)] = 46944, + [SMALL_STATE(1477)] = 46954, + [SMALL_STATE(1478)] = 46964, + [SMALL_STATE(1479)] = 46974, + [SMALL_STATE(1480)] = 46984, + [SMALL_STATE(1481)] = 46994, + [SMALL_STATE(1482)] = 47002, + [SMALL_STATE(1483)] = 47010, + [SMALL_STATE(1484)] = 47020, + [SMALL_STATE(1485)] = 47028, + [SMALL_STATE(1486)] = 47038, + [SMALL_STATE(1487)] = 47048, + [SMALL_STATE(1488)] = 47058, + [SMALL_STATE(1489)] = 47068, + [SMALL_STATE(1490)] = 47075, + [SMALL_STATE(1491)] = 47082, + [SMALL_STATE(1492)] = 47089, + [SMALL_STATE(1493)] = 47096, + [SMALL_STATE(1494)] = 47103, + [SMALL_STATE(1495)] = 47110, + [SMALL_STATE(1496)] = 47117, + [SMALL_STATE(1497)] = 47124, + [SMALL_STATE(1498)] = 47131, + [SMALL_STATE(1499)] = 47138, + [SMALL_STATE(1500)] = 47145, + [SMALL_STATE(1501)] = 47152, + [SMALL_STATE(1502)] = 47159, + [SMALL_STATE(1503)] = 47166, + [SMALL_STATE(1504)] = 47173, + [SMALL_STATE(1505)] = 47180, + [SMALL_STATE(1506)] = 47187, + [SMALL_STATE(1507)] = 47194, + [SMALL_STATE(1508)] = 47201, + [SMALL_STATE(1509)] = 47208, + [SMALL_STATE(1510)] = 47215, + [SMALL_STATE(1511)] = 47222, + [SMALL_STATE(1512)] = 47229, + [SMALL_STATE(1513)] = 47236, + [SMALL_STATE(1514)] = 47243, + [SMALL_STATE(1515)] = 47250, + [SMALL_STATE(1516)] = 47257, + [SMALL_STATE(1517)] = 47264, + [SMALL_STATE(1518)] = 47271, + [SMALL_STATE(1519)] = 47278, + [SMALL_STATE(1520)] = 47285, + [SMALL_STATE(1521)] = 47292, + [SMALL_STATE(1522)] = 47299, + [SMALL_STATE(1523)] = 47306, + [SMALL_STATE(1524)] = 47313, + [SMALL_STATE(1525)] = 47320, + [SMALL_STATE(1526)] = 47327, + [SMALL_STATE(1527)] = 47334, + [SMALL_STATE(1528)] = 47341, + [SMALL_STATE(1529)] = 47348, + [SMALL_STATE(1530)] = 47355, + [SMALL_STATE(1531)] = 47362, + [SMALL_STATE(1532)] = 47369, + [SMALL_STATE(1533)] = 47376, + [SMALL_STATE(1534)] = 47383, + [SMALL_STATE(1535)] = 47390, + [SMALL_STATE(1536)] = 47397, + [SMALL_STATE(1537)] = 47404, + [SMALL_STATE(1538)] = 47411, + [SMALL_STATE(1539)] = 47418, + [SMALL_STATE(1540)] = 47425, + [SMALL_STATE(1541)] = 47432, + [SMALL_STATE(1542)] = 47439, + [SMALL_STATE(1543)] = 47446, + [SMALL_STATE(1544)] = 47453, + [SMALL_STATE(1545)] = 47460, + [SMALL_STATE(1546)] = 47467, + [SMALL_STATE(1547)] = 47474, + [SMALL_STATE(1548)] = 47481, + [SMALL_STATE(1549)] = 47488, + [SMALL_STATE(1550)] = 47495, + [SMALL_STATE(1551)] = 47502, + [SMALL_STATE(1552)] = 47509, + [SMALL_STATE(1553)] = 47516, + [SMALL_STATE(1554)] = 47523, + [SMALL_STATE(1555)] = 47530, + [SMALL_STATE(1556)] = 47537, + [SMALL_STATE(1557)] = 47544, + [SMALL_STATE(1558)] = 47551, + [SMALL_STATE(1559)] = 47558, + [SMALL_STATE(1560)] = 47565, + [SMALL_STATE(1561)] = 47572, + [SMALL_STATE(1562)] = 47579, + [SMALL_STATE(1563)] = 47586, + [SMALL_STATE(1564)] = 47593, + [SMALL_STATE(1565)] = 47600, + [SMALL_STATE(1566)] = 47607, + [SMALL_STATE(1567)] = 47614, + [SMALL_STATE(1568)] = 47621, + [SMALL_STATE(1569)] = 47628, + [SMALL_STATE(1570)] = 47635, + [SMALL_STATE(1571)] = 47642, + [SMALL_STATE(1572)] = 47649, + [SMALL_STATE(1573)] = 47656, + [SMALL_STATE(1574)] = 47663, + [SMALL_STATE(1575)] = 47670, + [SMALL_STATE(1576)] = 47677, + [SMALL_STATE(1577)] = 47684, + [SMALL_STATE(1578)] = 47691, + [SMALL_STATE(1579)] = 47698, + [SMALL_STATE(1580)] = 47705, + [SMALL_STATE(1581)] = 47712, + [SMALL_STATE(1582)] = 47719, + [SMALL_STATE(1583)] = 47726, + [SMALL_STATE(1584)] = 47733, + [SMALL_STATE(1585)] = 47740, + [SMALL_STATE(1586)] = 47747, + [SMALL_STATE(1587)] = 47754, + [SMALL_STATE(1588)] = 47761, + [SMALL_STATE(1589)] = 47768, + [SMALL_STATE(1590)] = 47775, + [SMALL_STATE(1591)] = 47782, + [SMALL_STATE(1592)] = 47789, + [SMALL_STATE(1593)] = 47796, + [SMALL_STATE(1594)] = 47803, + [SMALL_STATE(1595)] = 47810, + [SMALL_STATE(1596)] = 47817, + [SMALL_STATE(1597)] = 47824, + [SMALL_STATE(1598)] = 47831, + [SMALL_STATE(1599)] = 47838, + [SMALL_STATE(1600)] = 47845, + [SMALL_STATE(1601)] = 47852, + [SMALL_STATE(1602)] = 47859, + [SMALL_STATE(1603)] = 47866, + [SMALL_STATE(1604)] = 47873, + [SMALL_STATE(1605)] = 47880, + [SMALL_STATE(1606)] = 47887, + [SMALL_STATE(1607)] = 47894, + [SMALL_STATE(1608)] = 47901, + [SMALL_STATE(1609)] = 47908, + [SMALL_STATE(1610)] = 47915, + [SMALL_STATE(1611)] = 47922, + [SMALL_STATE(1612)] = 47929, + [SMALL_STATE(1613)] = 47936, + [SMALL_STATE(1614)] = 47943, + [SMALL_STATE(1615)] = 47950, + [SMALL_STATE(1616)] = 47957, + [SMALL_STATE(1617)] = 47964, + [SMALL_STATE(1618)] = 47971, + [SMALL_STATE(1619)] = 47978, + [SMALL_STATE(1620)] = 47985, + [SMALL_STATE(1621)] = 47992, + [SMALL_STATE(1622)] = 47999, + [SMALL_STATE(1623)] = 48006, + [SMALL_STATE(1624)] = 48013, + [SMALL_STATE(1625)] = 48020, + [SMALL_STATE(1626)] = 48027, + [SMALL_STATE(1627)] = 48034, + [SMALL_STATE(1628)] = 48041, + [SMALL_STATE(1629)] = 48048, + [SMALL_STATE(1630)] = 48055, + [SMALL_STATE(1631)] = 48062, + [SMALL_STATE(1632)] = 48069, + [SMALL_STATE(1633)] = 48076, + [SMALL_STATE(1634)] = 48083, + [SMALL_STATE(1635)] = 48090, + [SMALL_STATE(1636)] = 48097, + [SMALL_STATE(1637)] = 48104, + [SMALL_STATE(1638)] = 48111, + [SMALL_STATE(1639)] = 48118, + [SMALL_STATE(1640)] = 48125, + [SMALL_STATE(1641)] = 48132, + [SMALL_STATE(1642)] = 48139, + [SMALL_STATE(1643)] = 48146, + [SMALL_STATE(1644)] = 48153, + [SMALL_STATE(1645)] = 48160, + [SMALL_STATE(1646)] = 48167, + [SMALL_STATE(1647)] = 48174, + [SMALL_STATE(1648)] = 48181, + [SMALL_STATE(1649)] = 48188, + [SMALL_STATE(1650)] = 48195, + [SMALL_STATE(1651)] = 48202, + [SMALL_STATE(1652)] = 48209, + [SMALL_STATE(1653)] = 48216, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -68410,1749 +69826,1760 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(14), - [86] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(336), - [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1350), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1606), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(389), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(429), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(63), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 39), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 39), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1370), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 39), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 39), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 57), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 57), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 26), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 26), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 25), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 25), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 20), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 20), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 24), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 24), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(14), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(217), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(99), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1355), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(114), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(439), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(164), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(21), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(485), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(429), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(128), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1357), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(160), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(22), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(126), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(441), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1595), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(441), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(442), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(139), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(411), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1592), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(14), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(429), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(22), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(126), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1634), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1514), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1635), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(390), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1340), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1356), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 76), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 76), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 99), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 99), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 9), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 9), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 9), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 9), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 113), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 113), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 75), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 75), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 76), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 76), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 65), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 65), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_impl, 5, 0, 2), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_impl, 5, 0, 2), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 0), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 0), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 58), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 58), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 62), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 62), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 59), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 59), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 51), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 51), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 59), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 59), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 58), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 58), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 42), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 42), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 61), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 61), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 60), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 60), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 67), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 67), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 59), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 59), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 58), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 58), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 10), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 10), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 87), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 87), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 17), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 17), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 114), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 114), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 42), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 42), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 41), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 41), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 9), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 9), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 115), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 115), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 38), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 38), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 116), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 116), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 107), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 107), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 80), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 80), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 86), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 86), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 85), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 85), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 81), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 81), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 120), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 120), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 6, 0, 105), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 105), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 121), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 121), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 104), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 104), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 103), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 103), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 80), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 80), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 102), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 102), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 82), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 82), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 81), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 81), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 96), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 96), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 41), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 41), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 42), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 42), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 14), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 14), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 41), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 41), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 97), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 97), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(355), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(356), - [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), - [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1062), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), - [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(388), - [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 21), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 31), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 18), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 19), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 32), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 22), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 33), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 30), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 30), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 27), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 27), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 46), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 110), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 29), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 91), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 73), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 36), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 69), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 69), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 88), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 88), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 34), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 34), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), SHIFT(61), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 26), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 26), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 78), + [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 78), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 25), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 25), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 20), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 4), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 4), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 57), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 57), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 24), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 24), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(7), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(152), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(107), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1370), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(115), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(461), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(176), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(22), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(495), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(442), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(121), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1376), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(180), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(21), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(123), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(390), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(494), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1610), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(494), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(493), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(142), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(420), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1609), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1370), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1492), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 121), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 121), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 81), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 81), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 51), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 51), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 17), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 17), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 5, 0, 83), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 5, 0, 83), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 6, 0, 106), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 6, 0, 106), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 82), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 82), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 82), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 82), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 82), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 82), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 67), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 67), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 108), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 108), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 65), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 65), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_impl, 5, 0, 2), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_impl, 5, 0, 2), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 0), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 0), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 42), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 42), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_type, 4, 0, 58), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_type, 4, 0, 58), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 4, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 4, 0, 0), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 104), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 104), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 81), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 81), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 86), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 86), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 62), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 62), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 87), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 87), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 59), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 59), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 3), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 3), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 59), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 59), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 58), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 58), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 61), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 61), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 60), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 60), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 59), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 59), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 58), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 58), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 75), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 75), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 14), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 14), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 42), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 42), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 41), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 41), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 76), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 76), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 103), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 103), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 3, 0, 0), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 3, 0, 38), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 3, 0, 38), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 0), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 9), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 9), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 122), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 122), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_item, 3, 0, 0), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 88), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 88), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 100), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 100), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 105), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 105), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 3), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 3), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 2, 0, 4), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 2, 0, 4), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 98), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 98), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 2, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 97), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 97), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 117), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 117), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 2), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 2), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 41), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 41), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 114), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 114), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 42), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 42), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 41), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 41), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 9), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 9), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 10), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 10), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 116), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 116), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 115), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 115), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 76), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 76), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 1, 0, 0), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 1, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 9), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 9), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 3), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 3), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1465), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), + [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1171), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1619), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 2), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 18), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 21), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 31), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 19), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 3), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 22), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 32), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 46), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 111), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 33), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 30), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 30), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 92), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 73), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 29), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 1), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 1), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 27), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 27), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 36), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 5), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 89), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 89), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 6), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 7), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 35), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_negative_literal, 2, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 69), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 69), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 34), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 76), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 76), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 76), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 101), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 100), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 78), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 79), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 99), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 99), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 99), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 99), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 76), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 27), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 76), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 68), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1631), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 32), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 22), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 23), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), REDUCE(sym_scoped_type_identifier, 3, 0, 22), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), - [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), REDUCE(sym_scoped_type_identifier, 3, 0, 32), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 15), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 12), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), REDUCE(sym_scoped_type_identifier, 3, 0, 19), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), REDUCE(sym_scoped_type_identifier, 2, 0, 3), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 63), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 117), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 83), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 77), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 50), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 48), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 48), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 50), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 48), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 50), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 50), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 48), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 111), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 11), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 47), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 72), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 92), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 94), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 109), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 118), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 119), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 122), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 66), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 84), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 79), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 80), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 3, 0, 0), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 100), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 100), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 100), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 102), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 101), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 76), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 3, 0, 0), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 100), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_argument, 2, 0, 0), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 76), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 76), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 76), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 76), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 27), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 68), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_specifier, 1, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 32), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 22), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 23), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 12), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 2), REDUCE(sym_scoped_type_identifier, 2, 0, 3), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 13), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 18), REDUCE(sym_scoped_type_identifier, 3, 0, 19), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 15), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 21), REDUCE(sym_scoped_type_identifier, 3, 0, 22), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 31), REDUCE(sym_scoped_type_identifier, 3, 0, 32), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 40), REDUCE(sym__pattern, 1, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 77), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 118), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_snapshot_type, 2, 0, 63), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 84), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 50), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 50), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 48), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 52), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 48), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 6, 0, 52), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 4, 0, 50), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 50), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 52), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 5, 0, 50), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 48), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 50), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 48), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_enum_pattern, 3, 0, 52), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 50), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 50), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 93), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 95), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 72), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 112), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, 0, 11), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 119), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 110), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 120), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 47), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 123), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), REDUCE(sym__pattern, 1, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 66), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 39), REDUCE(sym__pattern, 1, 0, 0), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 93), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 66), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 84), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 71), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 84), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1621), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 66), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 84), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 66), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 66), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 66), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), + [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 85), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 66), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 66), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 66), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 85), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 85), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 85), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 71), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 94), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_unit_type, 2, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 49), [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 95), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 54), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 53), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 49), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 45), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 70), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(960), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(964), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 16), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 112), - [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(660), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 74), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(913), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 47), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 122), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 119), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 118), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 111), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 110), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 109), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 94), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 93), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 92), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 91), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 75), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 108), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 67), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 106), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 73), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 72), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 71), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 90), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 89), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 46), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 11), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 44), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 43), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 98), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3581] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 55), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 56), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 54), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 113), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 53), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 45), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2, 0, 0), SHIFT_REPEAT(605), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 96), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(962), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(934), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 74), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [3087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 16), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 70), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 110), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 111), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, 0, 112), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 119), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 46), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern, 1, 0, 0), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, 0, 120), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, 0, 47), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 10, 0, 123), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, 0, 11), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nopanic, 1, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 95), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 94), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 93), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, 0, 92), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 75), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 109), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 67), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 4, 0, 107), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 73), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 72), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 91), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, 0, 71), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 90), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 99), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 43), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 44), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3608] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), }; #ifdef __cplusplus